diff --git a/.editorconfig b/.editorconfig index d3a8b5b..f363cc5 100644 --- a/.editorconfig +++ b/.editorconfig @@ -2,9 +2,6 @@ root = true [*] charset = utf-8 -end_of_line = lf -insert_final_newline = true -trim_trailing_whitespace = true [*.{json,toml,yml,gyp}] indent_style = space @@ -14,11 +11,11 @@ indent_size = 2 indent_style = space indent_size = 2 -[*.rs] +[*.{c,cc,h}] indent_style = space indent_size = 4 -[*.{c,cc,h}] +[*.rs] indent_style = space indent_size = 4 @@ -37,3 +34,6 @@ indent_size = 8 [Makefile] indent_style = tab indent_size = 8 + +[parser.c] +indent_size = 2 diff --git a/.gitattributes b/.gitattributes index ffb52ab..4cb1058 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,4 @@ -* text eol=lf +* text=auto eol=lf src/*.json linguist-generated src/parser.c linguist-generated diff --git a/.gitignore b/.gitignore index 27fc43f..2fd9dac 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,4 @@ # Rust artifacts -Cargo.lock target/ # Node artifacts @@ -10,9 +9,9 @@ node_modules/ # Swift artifacts .build/ +Package.resolved # Go artifacts -go.sum _obj/ # Python artifacts diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..6e76095 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,89 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "aho-corasick" +version = "1.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916" +dependencies = [ + "memchr", +] + +[[package]] +name = "cc" +version = "1.1.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6" +dependencies = [ + "shlex", +] + +[[package]] +name = "memchr" +version = "2.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3" + +[[package]] +name = "regex" +version = "1.10.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b" + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "tree-sitter" +version = "0.23.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20f4cd3642c47a85052a887d86704f4eac272969f61b686bdd3f772122aabaff" +dependencies = [ + "cc", + "regex", + "regex-syntax", + "tree-sitter-language", +] + +[[package]] +name = "tree-sitter-language" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2545046bd1473dac6c626659cc2567c6c0ff302fc8b84a56c4243378276f7f57" + +[[package]] +name = "tree-sitter-rust" +version = "0.21.2" +dependencies = [ + "cc", + "tree-sitter", + "tree-sitter-language", +] diff --git a/Cargo.toml b/Cargo.toml index cca48d5..5bbe093 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,10 @@ include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = ">=0.21.0" +tree-sitter-language = "0.1.0" [build-dependencies] -cc = "1.0.90" +cc = "1.1.15" + +[dev-dependencies] +tree-sitter = "0.23" diff --git a/Makefile b/Makefile index a9e13f3..2e3dc7c 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,7 @@ +ifeq ($(OS),Windows_NT) +$(error Windows is not supported) +endif + VERSION := 0.21.2 LANGUAGE_NAME := tree-sitter-rust @@ -17,44 +21,44 @@ 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)) +# source/object files +PARSER := $(SRC_DIR)/parser.c +EXTRAS := $(filter-out $(PARSER),$(wildcard $(SRC_DIR)/*.c)) +OBJS := $(patsubst %.c,%.o,$(PARSER) $(EXTRAS)) # flags -ARFLAGS := rcs +ARFLAGS ?= rcs override CFLAGS += -I$(SRC_DIR) -std=c11 -fPIC +# ABI versioning +SONAME_MAJOR := $(word 1,$(subst ., ,$(VERSION))) +SONAME_MINOR := $(shell sed -n 's/#define LANGUAGE_VERSION //p' $(PARSER)) + # OS-specific bits -ifeq ($(OS),Windows_NT) - $(error "Windows is not supported") -else ifeq ($(shell uname),Darwin) +ifeq ($(shell uname),Darwin) SOEXT = dylib - SOEXTVER_MAJOR = $(SONAME_MAJOR).dylib - SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).dylib + SOEXTVER_MAJOR = $(SONAME_MAJOR).$(SOEXT) + SOEXTVER = $(SONAME_MAJOR).$(SONAME_MINOR).$(SOEXT) 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 + LINKSHARED := $(LINKSHARED)-install_name,$(LIBDIR)/lib$(LANGUAGE_NAME).$(SOEXTVER),-rpath,@executable_path/../Frameworks else SOEXT = so - SOEXTVER_MAJOR = so.$(SONAME_MAJOR) - SOEXTVER = so.$(SONAME_MAJOR).$(SONAME_MINOR) + SOEXTVER_MAJOR = $(SOEXT).$(SONAME_MAJOR) + SOEXTVER = $(SOEXT).$(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) + LINKSHARED := $(LINKSHARED)-soname,lib$(LANGUAGE_NAME).$(SOEXTVER) endif ifneq ($(filter $(shell uname),FreeBSD NetBSD DragonFly),) PCLIBDIR := $(PREFIX)/libdata/pkgconfig @@ -81,8 +85,8 @@ $(LANGUAGE_NAME).pc: bindings/c/$(LANGUAGE_NAME).pc.in -e 's|=$(PREFIX)|=$${prefix}|' \ -e 's|@PREFIX@|$(PREFIX)|' $< > $@ -$(SRC_DIR)/parser.c: grammar.js - $(TS) generate --no-bindings +$(PARSER): $(SRC_DIR)/grammar.json + $(TS) generate --no-bindings $^ install: all install -d '$(DESTDIR)$(INCLUDEDIR)'/tree_sitter '$(DESTDIR)$(PCLIBDIR)' '$(DESTDIR)$(LIBDIR)' @@ -106,6 +110,5 @@ clean: test: $(TS) test - $(TS) parse examples/* --quiet --time .PHONY: all install uninstall clean test diff --git a/Package.swift b/Package.swift index 509cae5..c8d1ae9 100644 --- a/Package.swift +++ b/Package.swift @@ -6,42 +6,55 @@ let package = Package( products: [ .library(name: "TreeSitterRust", targets: ["TreeSitterRust"]), ], - dependencies: [], + dependencies: [ + .package(url: "https://github.com/ChimeHQ/SwiftTreeSitter", from: "0.8.0"), + ], targets: [ - .target(name: "TreeSitterRust", - path: ".", - exclude: [ - "Cargo.toml", - "Makefile", - "binding.gyp", - "bindings/c", - "bindings/go", - "bindings/node", - "bindings/python", - "bindings/rust", - "prebuilds", - "grammar.js", - "package.json", - "package-lock.json", - "pyproject.toml", - "setup.py", - "test", - "examples", - ".editorconfig", - ".github", - ".gitignore", - ".gitattributes", - ".gitmodules", - ], - sources: [ - "src/parser.c", - "src/scanner.c", - ], - resources: [ - .copy("queries") - ], - publicHeadersPath: "bindings/swift", - cSettings: [.headerSearchPath("src")]) + .target( + name: "TreeSitterRust", + dependencies: [], + path: ".", + exclude: [ + "Cargo.toml", + "Makefile", + "binding.gyp", + "bindings/c", + "bindings/go", + "bindings/node", + "bindings/python", + "bindings/rust", + "prebuilds", + "grammar.js", + "package.json", + "package-lock.json", + "pyproject.toml", + "setup.py", + "test", + "examples", + ".editorconfig", + ".github", + ".gitignore", + ".gitattributes", + ".gitmodules", + ], + sources: [ + "src/parser.c", + "src/scanner.c", + ], + resources: [ + .copy("queries") + ], + publicHeadersPath: "bindings/swift", + cSettings: [.headerSearchPath("src")] + ), + .testTarget( + name: "TreeSitterRustTests", + dependencies: [ + "SwiftTreeSitter", + "TreeSitterRust", + ], + path: "bindings/swift/TreeSitterRustTests" + ) ], cLanguageStandard: .c11 ) diff --git a/binding.gyp b/binding.gyp index 31ddf94..0084055 100644 --- a/binding.gyp +++ b/binding.gyp @@ -13,8 +13,17 @@ "src/parser.c", "src/scanner.c", ], - "cflags_c": [ - "-std=c11", + "conditions": [ + ["OS!='win'", { + "cflags_c": [ + "-std=c11", + ], + }, { # OS == "win" + "cflags_c": [ + "/std:c11", + "/utf-8", + ], + }], ], } ] diff --git a/bindings/go/binding_test.go b/bindings/go/binding_test.go index 7222a6a..53db1c4 100644 --- a/bindings/go/binding_test.go +++ b/bindings/go/binding_test.go @@ -3,7 +3,7 @@ package tree_sitter_rust_test import ( "testing" - tree_sitter "github.com/smacker/go-tree-sitter" + tree_sitter "github.com/tree-sitter/go-tree-sitter" tree_sitter_rust "github.com/tree-sitter/tree-sitter-rust/bindings/go" ) diff --git a/bindings/node/binding.cc b/bindings/node/binding.cc index 2c4ea6a..9ede175 100644 --- a/bindings/node/binding.cc +++ b/bindings/node/binding.cc @@ -6,7 +6,7 @@ extern "C" TSLanguage *tree_sitter_rust(); // "tree-sitter", "language" hashed with BLAKE2 const napi_type_tag LANGUAGE_TYPE_TAG = { - 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 + 0x8AF2E5212AD58ABF, 0xD5006CAD83ABBA16 }; Napi::Object Init(Napi::Env env, Napi::Object exports) { diff --git a/bindings/node/binding_test.js b/bindings/node/binding_test.js new file mode 100644 index 0000000..afede30 --- /dev/null +++ b/bindings/node/binding_test.js @@ -0,0 +1,9 @@ +/// + +const assert = require("node:assert"); +const { test } = require("node:test"); + +test("can load grammar", () => { + const parser = new (require("tree-sitter"))(); + assert.doesNotThrow(() => parser.setLanguage(require("."))); +}); diff --git a/bindings/python/tests/test_binding.py b/bindings/python/tests/test_binding.py new file mode 100644 index 0000000..54668c6 --- /dev/null +++ b/bindings/python/tests/test_binding.py @@ -0,0 +1,11 @@ +from unittest import TestCase + +import tree_sitter, tree_sitter_rust + + +class TestLanguage(TestCase): + def test_can_load_grammar(self): + try: + tree_sitter.Language(tree_sitter_rust.language()) + except Exception: + self.fail("Error loading Rust grammar") diff --git a/bindings/python/tree_sitter_rust/__init__.py b/bindings/python/tree_sitter_rust/__init__.py index c8d8ef0..24d62b2 100644 --- a/bindings/python/tree_sitter_rust/__init__.py +++ b/bindings/python/tree_sitter_rust/__init__.py @@ -1,5 +1,37 @@ -"Rust grammar for tree-sitter" +"""Rust grammar for tree-sitter""" + +from importlib.resources import files as _files from ._binding import language -__all__ = ["language"] + +def _get_query(name, file): + query = _files(f"{__package__}.queries") / file + globals()[name] = query.read_text() + return globals()[name] + + +def __getattr__(name): + if name == "HIGHLIGHTS_QUERY": + return _get_query("HIGHLIGHTS_QUERY", "highlights.scm") + if name == "INJECTIONS_QUERY": + return _get_query("INJECTIONS_QUERY", "injections.scm") + if name == "TAGS_QUERY": + return _get_query("TAGS_QUERY", "tags.scm") + + raise AttributeError(f"module {__name__!r} has no attribute {name!r}") + + +__all__ = [ + "language", + "HIGHLIGHTS_QUERY", + "INJECTIONS_QUERY", + "TAGS_QUERY", +] + + +def __dir__(): + return sorted(__all__ + [ + "__all__", "__builtins__", "__cached__", "__doc__", "__file__", + "__loader__", "__name__", "__package__", "__path__", "__spec__", + ]) diff --git a/bindings/python/tree_sitter_rust/__init__.pyi b/bindings/python/tree_sitter_rust/__init__.pyi index 5416666..043c23f 100644 --- a/bindings/python/tree_sitter_rust/__init__.pyi +++ b/bindings/python/tree_sitter_rust/__init__.pyi @@ -1 +1,7 @@ -def language() -> int: ... +from typing import Final + +HIGHLIGHTS_QUERY: Final[str] +INJECTIONS_QUERY: Final[str] +TAGS_QUERY: Final[str] + +def language() -> object: ... diff --git a/bindings/python/tree_sitter_rust/binding.c b/bindings/python/tree_sitter_rust/binding.c index 5b89feb..a286458 100644 --- a/bindings/python/tree_sitter_rust/binding.c +++ b/bindings/python/tree_sitter_rust/binding.c @@ -4,8 +4,8 @@ typedef struct TSLanguage TSLanguage; TSLanguage *tree_sitter_rust(void); -static PyObject* _binding_language(PyObject *self, PyObject *args) { - return PyLong_FromVoidPtr(tree_sitter_rust()); +static PyObject* _binding_language(PyObject *Py_UNUSED(self), PyObject *Py_UNUSED(args)) { + return PyCapsule_New(tree_sitter_rust(), "tree_sitter.Language", NULL); } static PyMethodDef methods[] = { diff --git a/bindings/rust/build.rs b/bindings/rust/build.rs index d8007e7..cd444e3 100644 --- a/bindings/rust/build.rs +++ b/bindings/rust/build.rs @@ -2,8 +2,10 @@ fn main() { let src_dir = std::path::Path::new("src"); let mut c_config = cc::Build::new(); - c_config.flag_if_supported("-Wno-unused-parameter"); - c_config.std("c11").include(src_dir); + c_config + .std("c11") + .include(src_dir) + .flag_if_supported("-Wno-unused-parameter"); #[cfg(target_env = "msvc")] c_config.flag("-utf-8"); diff --git a/bindings/rust/lib.rs b/bindings/rust/lib.rs index e09f983..e605228 100644 --- a/bindings/rust/lib.rs +++ b/bindings/rust/lib.rs @@ -1,6 +1,6 @@ -//! This crate provides a Rust grammar for the [tree-sitter][] parsing library. +//! This crate provides Rust language support for the [tree-sitter][] parsing library. //! -//! Typically, you will use the [language][language func] function to add this grammar to a +//! Typically, you will use the [language][language func] function to add this language to a //! tree-sitter [Parser][], and then use the parser to parse some code: //! //! ``` @@ -12,7 +12,10 @@ //! } //! "#; //! let mut parser = Parser::new(); -//! parser.set_language(&tree_sitter_rust::language()).expect("Error loading Rust grammar"); +//! let language = tree_sitter_rust::LANGUAGE; +//! parser +//! .set_language(&language.into()) +//! .expect("Error loading Rust parser"); //! let tree = parser.parse(code, None).unwrap(); //! assert!(!tree.root_node().has_error()); //! ``` @@ -22,18 +25,14 @@ //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html //! [tree-sitter]: https://tree-sitter.github.io/ -use tree_sitter::Language; +use tree_sitter_language::LanguageFn; extern "C" { - fn tree_sitter_rust() -> Language; + fn tree_sitter_rust() -> *const (); } -/// Returns the tree-sitter [Language][] for this grammar. -/// -/// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html -pub fn language() -> Language { - unsafe { tree_sitter_rust() } -} +/// The tree-sitter [`LanguageFn`] for this grammar. +pub const LANGUAGE: LanguageFn = unsafe { LanguageFn::from_raw(tree_sitter_rust) }; /// The content of the [`node-types.json`][] file for this grammar. /// @@ -52,10 +51,10 @@ pub const TAGS_QUERY: &str = include_str!("../../queries/tags.scm"); #[cfg(test)] mod tests { #[test] - fn can_load_grammar() { + fn test_can_load_grammar() { let mut parser = tree_sitter::Parser::new(); parser - .set_language(&super::language()) - .expect("Error loading Rust grammar"); + .set_language(&super::LANGUAGE.into()) + .expect("Error loading Rust parser"); } } diff --git a/bindings/swift/TreeSitterRustTests/TreeSitterRustTests.swift b/bindings/swift/TreeSitterRustTests/TreeSitterRustTests.swift new file mode 100644 index 0000000..4ddc5b0 --- /dev/null +++ b/bindings/swift/TreeSitterRustTests/TreeSitterRustTests.swift @@ -0,0 +1,12 @@ +import XCTest +import SwiftTreeSitter +import TreeSitterRust + +final class TreeSitterRustTests: XCTestCase { + func testCanLoadGrammar() throws { + let parser = Parser() + let language = Language(language: tree_sitter_rust()) + XCTAssertNoThrow(try parser.setLanguage(language), + "Error loading Rust grammar") + } +} diff --git a/go.mod b/go.mod index a29cd83..f22ab90 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,9 @@ module github.com/tree-sitter/tree-sitter-rust -go 1.22 +go 1.23 -require github.com/smacker/go-tree-sitter v0.0.0-20230720070738-0d0a9f78d8f8 +toolchain go1.23.0 + +require github.com/tree-sitter/go-tree-sitter v0.23.1 + +require github.com/mattn/go-pointer v0.0.1 // indirect diff --git a/go.sum b/go.sum new file mode 100644 index 0000000..e05ae25 --- /dev/null +++ b/go.sum @@ -0,0 +1,34 @@ +github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= +github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/mattn/go-pointer v0.0.1 h1:n+XhsuGeVO6MEAp7xyEukFINEa+Quek5psIR/ylA6o0= +github.com/mattn/go-pointer v0.0.1/go.mod h1:2zXcozF6qYGgmsG+SeTZz3oAbFLdD3OWqnUbNvJZAlc= +github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM= +github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4= +github.com/stretchr/testify v1.9.0 h1:HtqpIVDClZ4nwg75+f6Lvsy/wHu+3BoSGCbBAcpTsTg= +github.com/stretchr/testify v1.9.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY= +github.com/tree-sitter/go-tree-sitter v0.23.1 h1:HCfaE19sKfG7q190xfM1loUZf6wEHa4TDqDEW46s9Lg= +github.com/tree-sitter/go-tree-sitter v0.23.1/go.mod h1:EvIVhMvvPNvhu9x+ddSPxSnUEU5AnsSwi1LMqXIVE3A= +github.com/tree-sitter/tree-sitter-c v0.21.5-0.20240818205408-927da1f210eb h1:A8425heRM8mylnv4H58FPUiH+aYivyitre0PzxrfmWs= +github.com/tree-sitter/tree-sitter-c v0.21.5-0.20240818205408-927da1f210eb/go.mod h1:dOF6gtQiF9UwNh995T5OphYmtIypkjsp3ap7r9AN/iA= +github.com/tree-sitter/tree-sitter-cpp v0.22.4-0.20240818224355-b1a4e2b25148 h1:AfFPZwtwGN01BW1jDdqBVqscTwetvMpydqYZz57RSlc= +github.com/tree-sitter/tree-sitter-cpp v0.22.4-0.20240818224355-b1a4e2b25148/go.mod h1:Bh6U3viD57rFXRYIQ+kmiYtr+1Bx0AceypDLJJSyi9s= +github.com/tree-sitter/tree-sitter-embedded-template v0.21.1-0.20240819044651-ffbf64942c33 h1:TwqSV3qLp3tKSqirGLRHnjFk9Tc2oy57LIl+FQ4GjI4= +github.com/tree-sitter/tree-sitter-embedded-template v0.21.1-0.20240819044651-ffbf64942c33/go.mod h1:CvCKCt3v04Ufos1zZnNCelBDeCGRpPucaN8QczoUsN4= +github.com/tree-sitter/tree-sitter-go v0.21.3-0.20240818010209-8c0f0e7a6012 h1:Xvxck3tE5FW7F7bTS97iNM2ADMyCMJztVqn5HYKdJGo= +github.com/tree-sitter/tree-sitter-go v0.21.3-0.20240818010209-8c0f0e7a6012/go.mod h1:T40D0O1cPvUU/+AmiXVXy1cncYQT6wem4Z0g4SfAYvY= +github.com/tree-sitter/tree-sitter-html v0.20.5-0.20240818004741-d11201a263d0 h1:c46K6uh5Dz00zJeU9BfjXdb8I+E4RkUdfnWJpQADXFo= +github.com/tree-sitter/tree-sitter-html v0.20.5-0.20240818004741-d11201a263d0/go.mod h1:hcNt/kOJHcIcuMvouE7LJcYdeFUFbVpBJ6d4wmOA+tU= +github.com/tree-sitter/tree-sitter-java v0.21.1-0.20240824015150-576d8097e495 h1:jrt4qbJVEFs4H93/ITxygHc6u0TGqAkkate7TQ4wFSA= +github.com/tree-sitter/tree-sitter-java v0.21.1-0.20240824015150-576d8097e495/go.mod h1:oyaR7fLnRV0hT9z6qwE9GkaeTom/hTDwK3H2idcOJFc= +github.com/tree-sitter/tree-sitter-javascript v0.21.5-0.20240818005344-15887341e5b5 h1:om4X9AVg3asL8gxNJDcz4e/Wp+VpQj1PY3uJXKr6EOg= +github.com/tree-sitter/tree-sitter-javascript v0.21.5-0.20240818005344-15887341e5b5/go.mod h1:nNqgPoV/h9uYWk6kYEFdEAhNVOacpfpRW5SFmdaP4tU= +github.com/tree-sitter/tree-sitter-json v0.21.1-0.20240818005659-bdd69eb8c8a5 h1:pfV3G3k7NCKqKk8THBmyuh2zA33lgYHS3GVrzRR8ry4= +github.com/tree-sitter/tree-sitter-json v0.21.1-0.20240818005659-bdd69eb8c8a5/go.mod h1:GbMKRjLfk0H+PI7nLi1Sx5lHf5wCpLz9al8tQYSxpEk= +github.com/tree-sitter/tree-sitter-php v0.22.9-0.20240819002312-a552625b56c1 h1:ZXZMDwE+IhUtGug4Brv6NjJWUU3rfkZBKpemf6RY8/g= +github.com/tree-sitter/tree-sitter-php v0.22.9-0.20240819002312-a552625b56c1/go.mod h1:UKCLuYnJ312Mei+3cyTmGOHzn0YAnaPRECgJmHtzrqs= +github.com/tree-sitter/tree-sitter-python v0.21.1-0.20240818005537-55a9b8a4fbfb h1:EXEM82lFM7JjJb6qiKZXkpIDaCcbV2obNn82ghwj9lw= +github.com/tree-sitter/tree-sitter-python v0.21.1-0.20240818005537-55a9b8a4fbfb/go.mod h1:lXCF1nGG5Dr4J3BTS0ObN4xJCCICiSu/b+Xe/VqMV7g= +github.com/tree-sitter/tree-sitter-ruby v0.21.1-0.20240818211811-7dbc1e2d0e2d h1:fcYCvoXdcP1uRQYXqJHRy6Hec+uKScQdKVtMwK9JeCI= +github.com/tree-sitter/tree-sitter-ruby v0.21.1-0.20240818211811-7dbc1e2d0e2d/go.mod h1:T1nShQ4v5AJtozZ8YyAS4uzUtDAJj/iv4YfwXSbUHzg= +gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= +gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/package-lock.json b/package-lock.json index 33a302c..2007115 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,33 +10,24 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { - "node-addon-api": "^8.0.0", - "node-gyp-build": "^4.8.0" + "node-addon-api": "^8.1.0", + "node-gyp-build": "^4.8.2" }, "devDependencies": { "eslint": "^8.57.0", "eslint-config-google": "^0.14.0", "prebuildify": "^6.0.1", - "tree-sitter-cli": "^0.22.5" + "tree-sitter-cli": "^0.23.0" }, "peerDependencies": { "tree-sitter": "^0.21.1" }, "peerDependenciesMeta": { - "tree_sitter": { + "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", @@ -53,9 +44,9 @@ } }, "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==", + "version": "4.11.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.11.0.tgz", + "integrity": "sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A==", "dev": true, "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" @@ -97,6 +88,7 @@ "version": "0.11.14", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.14.tgz", "integrity": "sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==", + "deprecated": "Use @eslint/config-array instead", "dev": true, "dependencies": { "@humanwhocodes/object-schema": "^2.0.2", @@ -124,6 +116,7 @@ "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==", + "deprecated": "Use @eslint/object-schema instead", "dev": true }, "node_modules/@nodelib/fs.scandir": { @@ -168,9 +161,9 @@ "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==", + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.12.1.tgz", + "integrity": "sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==", "dev": true, "bin": { "acorn": "bin/acorn" @@ -375,9 +368,9 @@ } }, "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.6.tgz", + "integrity": "sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==", "dev": true, "dependencies": { "ms": "2.1.2" @@ -543,9 +536,9 @@ } }, "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", + "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "dependencies": { "estraverse": "^5.1.0" @@ -675,6 +668,7 @@ "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "dependencies": { "fs.realpath": "^1.0.0", @@ -754,9 +748,9 @@ ] }, "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", + "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "engines": { "node": ">= 4" @@ -791,6 +785,7 @@ "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, "dependencies": { "once": "^1.3.0", @@ -912,18 +907,6 @@ "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", @@ -964,9 +947,9 @@ "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==", + "version": "3.67.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.67.0.tgz", + "integrity": "sha512-bLn/fU/ALVBE9wj+p4Y21ZJWYFjUXLXPi/IewyLZkx3ApxKDNBWCKdReeKOtD8dWpOdDCeMyLh6ZewzcLsG2Nw==", "dev": true, "dependencies": { "semver": "^7.3.5" @@ -976,17 +959,17 @@ } }, "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==", + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.1.0.tgz", + "integrity": "sha512-yBY+qqWSv3dWKGODD6OGE6GnTX7Q2r+4+DfpqxHSHh8x0B4EKP9+wVGLS6U/AM1vxSNNmUEuIV5EGhYwPpfOwQ==", "engines": { "node": "^18 || ^20 || >= 21" } }, "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==", + "version": "4.8.2", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.8.2.tgz", + "integrity": "sha512-IRUxE4BVsHWXkV/SFOut4qTlagw2aM8T5/vnTsmrHJvVoKueJHRc/JaFND7QDDc61kLYUJ6qlZM3sqTSyx2dTw==", "bin": { "node-gyp-build": "bin.js", "node-gyp-build-optional": "optional.js", @@ -1015,17 +998,17 @@ } }, "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "version": "0.9.4", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", + "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "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" + "type-check": "^0.4.0", + "word-wrap": "^1.2.5" }, "engines": { "node": ">= 0.8.0" @@ -1202,6 +1185,7 @@ "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "dependencies": { "glob": "^7.1.3" @@ -1257,13 +1241,10 @@ ] }, "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==", + "version": "7.6.3", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", + "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, - "dependencies": { - "lru-cache": "^6.0.0" - }, "bin": { "semver": "bin/semver.js" }, @@ -1371,25 +1352,17 @@ "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.5", - "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.22.5.tgz", - "integrity": "sha512-c3VT46Bc3a6pEd0JAwufbqEw9Q2FRLDp5E230hGvnr+Hivw+Y6jyeP+3T89KDptvn48MOPVmbgaLm69xYgLVTw==", + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/tree-sitter-cli/-/tree-sitter-cli-0.23.0.tgz", + "integrity": "sha512-/DdQaPCCOrOYGp9FxGdhFUnHIrjhfbYatQXgNIcmaAOpPunpnDj2vsO/H+svsfQLaFsQ1C+BjgPhpbV28zka1w==", "dev": true, "hasInstallScript": true, "bin": { "tree-sitter": "cli.js" + }, + "engines": { + "node": ">=12.0.0" } }, "node_modules/type-check": { @@ -1446,18 +1419,21 @@ "node": ">= 8" } }, + "node_modules/word-wrap": { + "version": "1.2.5", + "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", + "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true }, - "node_modules/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", diff --git a/package.json b/package.json index ad61a96..14a2c4e 100644 --- a/package.json +++ b/package.json @@ -29,31 +29,29 @@ "src/**" ], "dependencies": { - "node-addon-api": "^8.0.0", - "node-gyp-build": "^4.8.0" + "node-addon-api": "^8.1.0", + "node-gyp-build": "^4.8.2" }, "peerDependencies": { "tree-sitter": "^0.21.1" }, "peerDependenciesMeta": { - "tree_sitter": { + "tree-sitter": { "optional": true } }, "devDependencies": { "eslint": "^8.57.0", "eslint-config-google": "^0.14.0", - "tree-sitter-cli": "^0.22.5", + "tree-sitter-cli": "^0.23.0", "prebuildify": "^6.0.1" }, "scripts": { "install": "node-gyp-build", - "prebuildify": "prebuildify --napi --strip", - "build": "tree-sitter generate --no-bindings", - "build-wasm": "tree-sitter build --wasm", - "lint": "eslint grammar.js", - "parse": "tree-sitter parse", - "test": "tree-sitter test" + "lint": "grammar.js", + "prestart": "tree-sitter build --wasm", + "start": "tree-sitter playground", + "test": "node --test bindings/node/*_test.js" }, "tree-sitter": [ { diff --git a/pyproject.toml b/pyproject.toml index 404d425..8092f28 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ authors = [ { name = "Max Brunsfeld", email = "maxbrunsfeld@gmail.com" }, { name = "Amaan Qureshi", email = "amaanq12@gmail.com" }, ] -requires-python = ">=3.8" +requires-python = ">=3.9" license.text = "MIT" readme = "README.md" @@ -29,5 +29,5 @@ Homepage = "https://github.com/tree-sitter/tree-sitter-rust" core = ["tree-sitter~=0.21"] [tool.cibuildwheel] -build = "cp38-*" +build = "cp39-*" build-frontend = "build" diff --git a/setup.py b/setup.py index 5e6f959..0b36d03 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ class BdistWheel(bdist_wheel): def get_tag(self): python, abi, platform = super().get_tag() if python.startswith("cp"): - python, abi = "cp38", "abi3" + python, abi = "cp39", "abi3" return python, abi, platform @@ -38,12 +38,17 @@ def get_tag(self): "src/parser.c", "src/scanner.c", ], - extra_compile_args=( - ["-std=c11"] if system() != 'Windows' else [] - ), + extra_compile_args=[ + "-std=c11", + "-fvisibility=hidden", + ] if system() != "Windows" else [ + "/std:c11", + "/utf-8", + ], define_macros=[ - ("Py_LIMITED_API", "0x03080000"), - ("PY_SSIZE_T_CLEAN", None) + ("Py_LIMITED_API", "0x03090000"), + ("PY_SSIZE_T_CLEAN", None), + ("TREE_SITTER_HIDE_SYMBOLS", None), ], include_dirs=["src"], py_limited_api=True, diff --git a/src/node-types.json b/src/node-types.json index 38ca711..93c3644 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -2479,6 +2479,11 @@ ] } }, + { + "type": "inner_doc_comment_marker", + "named": true, + "fields": {} + }, { "type": "label", "named": true, @@ -3023,6 +3028,11 @@ ] } }, + { + "type": "outer_doc_comment_marker", + "named": true, + "fields": {} + }, { "type": "parameter", "named": true, @@ -5201,10 +5211,6 @@ "type": "in", "named": false }, - { - "type": "inner_doc_comment_marker", - "named": true - }, { "type": "integer_literal", "named": true @@ -5257,10 +5263,6 @@ "type": "mutable_specifier", "named": true }, - { - "type": "outer_doc_comment_marker", - "named": true - }, { "type": "pat", "named": false diff --git a/src/parser.c b/src/parser.c index 86352eb..58e98a9 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,9 +5,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 3618 +#define STATE_COUNT 3620 #define LARGE_STATE_COUNT 1004 -#define SYMBOL_COUNT 341 +#define SYMBOL_COUNT 343 #define ALIAS_COUNT 4 #define TOKEN_COUNT 153 #define EXTERNAL_TOKEN_COUNT 10 @@ -149,8 +149,8 @@ enum ts_symbol_identifiers { aux_sym_line_comment_token1 = 131, aux_sym_line_comment_token2 = 132, aux_sym_line_comment_token3 = 133, - sym__inner_line_doc_comment_marker = 134, - sym__outer_line_doc_comment_marker = 135, + anon_sym_BANG2 = 134, + anon_sym_SLASH2 = 135, anon_sym_SLASH_STAR = 136, anon_sym_STAR_SLASH = 137, sym_shebang = 138, @@ -324,42 +324,44 @@ enum ts_symbol_identifiers { sym_boolean_literal = 306, sym_line_comment = 307, sym__line_doc_comment_marker = 308, - sym_block_comment = 309, - sym__block_doc_comment_marker = 310, - aux_sym_source_file_repeat1 = 311, - aux_sym_macro_definition_repeat1 = 312, - aux_sym_token_tree_pattern_repeat1 = 313, - aux_sym_token_tree_repeat1 = 314, - aux_sym__non_special_token_repeat1 = 315, - aux_sym_declaration_list_repeat1 = 316, - aux_sym_enum_variant_list_repeat1 = 317, - aux_sym_enum_variant_list_repeat2 = 318, - aux_sym_field_declaration_list_repeat1 = 319, - aux_sym_ordered_field_declaration_list_repeat1 = 320, - aux_sym_function_modifiers_repeat1 = 321, - aux_sym_where_clause_repeat1 = 322, - aux_sym_trait_bounds_repeat1 = 323, - aux_sym_type_parameters_repeat1 = 324, - aux_sym_use_list_repeat1 = 325, - aux_sym_parameters_repeat1 = 326, - aux_sym_for_lifetimes_repeat1 = 327, - aux_sym_tuple_type_repeat1 = 328, - aux_sym_type_arguments_repeat1 = 329, - aux_sym_delim_token_tree_repeat1 = 330, - aux_sym_arguments_repeat1 = 331, - aux_sym_tuple_expression_repeat1 = 332, - aux_sym_field_initializer_list_repeat1 = 333, - aux_sym_match_block_repeat1 = 334, - aux_sym_match_arm_repeat1 = 335, - aux_sym_closure_parameters_repeat1 = 336, - aux_sym_tuple_pattern_repeat1 = 337, - aux_sym_slice_pattern_repeat1 = 338, - aux_sym_struct_pattern_repeat1 = 339, - aux_sym_string_literal_repeat1 = 340, - alias_sym_field_identifier = 341, - alias_sym_let_chain = 342, - alias_sym_shorthand_field_identifier = 343, - alias_sym_type_identifier = 344, + sym__inner_line_doc_comment_marker = 309, + sym__outer_line_doc_comment_marker = 310, + sym_block_comment = 311, + sym__block_doc_comment_marker = 312, + aux_sym_source_file_repeat1 = 313, + aux_sym_macro_definition_repeat1 = 314, + aux_sym_token_tree_pattern_repeat1 = 315, + aux_sym_token_tree_repeat1 = 316, + aux_sym__non_special_token_repeat1 = 317, + aux_sym_declaration_list_repeat1 = 318, + aux_sym_enum_variant_list_repeat1 = 319, + aux_sym_enum_variant_list_repeat2 = 320, + aux_sym_field_declaration_list_repeat1 = 321, + aux_sym_ordered_field_declaration_list_repeat1 = 322, + aux_sym_function_modifiers_repeat1 = 323, + aux_sym_where_clause_repeat1 = 324, + aux_sym_trait_bounds_repeat1 = 325, + aux_sym_type_parameters_repeat1 = 326, + aux_sym_use_list_repeat1 = 327, + aux_sym_parameters_repeat1 = 328, + aux_sym_for_lifetimes_repeat1 = 329, + aux_sym_tuple_type_repeat1 = 330, + aux_sym_type_arguments_repeat1 = 331, + aux_sym_delim_token_tree_repeat1 = 332, + aux_sym_arguments_repeat1 = 333, + aux_sym_tuple_expression_repeat1 = 334, + aux_sym_field_initializer_list_repeat1 = 335, + aux_sym_match_block_repeat1 = 336, + aux_sym_match_arm_repeat1 = 337, + aux_sym_closure_parameters_repeat1 = 338, + aux_sym_tuple_pattern_repeat1 = 339, + aux_sym_slice_pattern_repeat1 = 340, + aux_sym_struct_pattern_repeat1 = 341, + aux_sym_string_literal_repeat1 = 342, + alias_sym_field_identifier = 343, + alias_sym_let_chain = 344, + alias_sym_shorthand_field_identifier = 345, + alias_sym_type_identifier = 346, }; static const char * const ts_symbol_names[] = { @@ -497,8 +499,8 @@ static const char * const ts_symbol_names[] = { [aux_sym_line_comment_token1] = "line_comment_token1", [aux_sym_line_comment_token2] = "line_comment_token2", [aux_sym_line_comment_token3] = "line_comment_token3", - [sym__inner_line_doc_comment_marker] = "inner_doc_comment_marker", - [sym__outer_line_doc_comment_marker] = "outer_doc_comment_marker", + [anon_sym_BANG2] = "!", + [anon_sym_SLASH2] = "/", [anon_sym_SLASH_STAR] = "/*", [anon_sym_STAR_SLASH] = "*/", [sym_shebang] = "shebang", @@ -672,6 +674,8 @@ static const char * const ts_symbol_names[] = { [sym_boolean_literal] = "boolean_literal", [sym_line_comment] = "line_comment", [sym__line_doc_comment_marker] = "_line_doc_comment_marker", + [sym__inner_line_doc_comment_marker] = "inner_doc_comment_marker", + [sym__outer_line_doc_comment_marker] = "outer_doc_comment_marker", [sym_block_comment] = "block_comment", [sym__block_doc_comment_marker] = "_block_doc_comment_marker", [aux_sym_source_file_repeat1] = "source_file_repeat1", @@ -845,8 +849,8 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_line_comment_token1] = aux_sym_line_comment_token1, [aux_sym_line_comment_token2] = aux_sym_line_comment_token2, [aux_sym_line_comment_token3] = aux_sym_line_comment_token3, - [sym__inner_line_doc_comment_marker] = sym__inner_block_doc_comment_marker, - [sym__outer_line_doc_comment_marker] = sym__outer_block_doc_comment_marker, + [anon_sym_BANG2] = anon_sym_BANG, + [anon_sym_SLASH2] = anon_sym_SLASH, [anon_sym_SLASH_STAR] = anon_sym_SLASH_STAR, [anon_sym_STAR_SLASH] = anon_sym_STAR_SLASH, [sym_shebang] = sym_shebang, @@ -1020,6 +1024,8 @@ static const TSSymbol ts_symbol_map[] = { [sym_boolean_literal] = sym_boolean_literal, [sym_line_comment] = sym_line_comment, [sym__line_doc_comment_marker] = sym__line_doc_comment_marker, + [sym__inner_line_doc_comment_marker] = sym__inner_block_doc_comment_marker, + [sym__outer_line_doc_comment_marker] = sym__outer_block_doc_comment_marker, [sym_block_comment] = sym_block_comment, [sym__block_doc_comment_marker] = sym__block_doc_comment_marker, [aux_sym_source_file_repeat1] = aux_sym_source_file_repeat1, @@ -1595,13 +1601,13 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [sym__inner_line_doc_comment_marker] = { + [anon_sym_BANG2] = { .visible = true, - .named = true, + .named = false, }, - [sym__outer_line_doc_comment_marker] = { + [anon_sym_SLASH2] = { .visible = true, - .named = true, + .named = false, }, [anon_sym_SLASH_STAR] = { .visible = true, @@ -2300,6 +2306,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = true, }, + [sym__inner_line_doc_comment_marker] = { + .visible = true, + .named = true, + }, + [sym__outer_line_doc_comment_marker] = { + .visible = true, + .named = true, + }, [sym_block_comment] = { .visible = true, .named = true, @@ -3857,134 +3871,134 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3] = 3, [4] = 4, [5] = 5, - [6] = 2, - [7] = 3, - [8] = 3, - [9] = 4, + [6] = 6, + [7] = 7, + [8] = 8, + [9] = 3, [10] = 2, - [11] = 4, - [12] = 12, - [13] = 3, - [14] = 2, - [15] = 12, - [16] = 2, - [17] = 12, - [18] = 12, - [19] = 19, - [20] = 20, - [21] = 4, - [22] = 2, - [23] = 23, - [24] = 20, - [25] = 4, - [26] = 4, - [27] = 3, - [28] = 12, - [29] = 2, + [11] = 5, + [12] = 6, + [13] = 8, + [14] = 3, + [15] = 2, + [16] = 5, + [17] = 6, + [18] = 3, + [19] = 2, + [20] = 5, + [21] = 6, + [22] = 3, + [23] = 2, + [24] = 5, + [25] = 6, + [26] = 3, + [27] = 2, + [28] = 5, + [29] = 6, [30] = 3, - [31] = 3, - [32] = 12, - [33] = 4, - [34] = 12, + [31] = 2, + [32] = 5, + [33] = 6, + [34] = 34, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 37, - [40] = 40, - [41] = 38, + [39] = 38, + [40] = 36, + [41] = 41, [42] = 42, [43] = 35, - [44] = 40, - [45] = 38, + [44] = 35, + [45] = 42, [46] = 37, - [47] = 38, - [48] = 35, - [49] = 37, - [50] = 36, - [51] = 42, + [47] = 41, + [48] = 38, + [49] = 36, + [50] = 38, + [51] = 36, [52] = 35, [53] = 42, - [54] = 40, + [54] = 37, [55] = 36, - [56] = 40, - [57] = 37, - [58] = 37, - [59] = 38, - [60] = 37, - [61] = 38, + [56] = 36, + [57] = 38, + [58] = 36, + [59] = 37, + [60] = 38, + [61] = 36, [62] = 38, [63] = 38, - [64] = 37, - [65] = 36, + [64] = 41, + [65] = 41, [66] = 42, [67] = 67, [68] = 68, [69] = 69, - [70] = 70, - [71] = 71, + [70] = 68, + [71] = 69, [72] = 72, [73] = 73, [74] = 74, - [75] = 72, - [76] = 71, - [77] = 77, - [78] = 78, - [79] = 79, - [80] = 70, - [81] = 74, - [82] = 69, - [83] = 78, + [75] = 75, + [76] = 75, + [77] = 72, + [78] = 73, + [79] = 74, + [80] = 80, + [81] = 81, + [82] = 82, + [83] = 83, [84] = 84, [85] = 85, [86] = 86, [87] = 87, [88] = 88, [89] = 89, - [90] = 86, + [90] = 90, [91] = 91, - [92] = 85, + [92] = 92, [93] = 93, - [94] = 89, - [95] = 88, - [96] = 91, - [97] = 85, - [98] = 98, - [99] = 91, + [94] = 84, + [95] = 89, + [96] = 96, + [97] = 96, + [98] = 93, + [99] = 99, [100] = 100, - [101] = 86, - [102] = 88, - [103] = 88, - [104] = 85, - [105] = 105, - [106] = 105, - [107] = 85, - [108] = 100, - [109] = 109, - [110] = 110, - [111] = 105, - [112] = 112, - [113] = 84, - [114] = 98, - [115] = 86, - [116] = 91, - [117] = 93, - [118] = 88, - [119] = 86, - [120] = 112, - [121] = 91, - [122] = 100, - [123] = 85, - [124] = 86, - [125] = 100, - [126] = 105, - [127] = 87, - [128] = 105, - [129] = 88, - [130] = 100, + [101] = 101, + [102] = 85, + [103] = 86, + [104] = 87, + [105] = 91, + [106] = 92, + [107] = 84, + [108] = 84, + [109] = 89, + [110] = 96, + [111] = 91, + [112] = 92, + [113] = 93, + [114] = 84, + [115] = 89, + [116] = 96, + [117] = 91, + [118] = 92, + [119] = 93, + [120] = 84, + [121] = 89, + [122] = 96, + [123] = 91, + [124] = 92, + [125] = 91, + [126] = 92, + [127] = 93, + [128] = 89, + [129] = 96, + [130] = 99, [131] = 100, - [132] = 105, - [133] = 91, + [132] = 101, + [133] = 93, [134] = 134, [135] = 135, [136] = 136, @@ -3992,111 +4006,111 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [138] = 138, [139] = 139, [140] = 140, - [141] = 137, + [141] = 141, [142] = 142, [143] = 143, [144] = 144, - [145] = 145, + [145] = 140, [146] = 146, [147] = 147, [148] = 148, - [149] = 140, - [150] = 150, + [149] = 149, + [150] = 134, [151] = 151, [152] = 152, [153] = 153, [154] = 154, [155] = 155, - [156] = 136, + [156] = 156, [157] = 157, - [158] = 158, + [158] = 155, [159] = 159, [160] = 160, - [161] = 161, + [161] = 146, [162] = 162, - [163] = 163, + [163] = 151, [164] = 164, - [165] = 160, - [166] = 138, + [165] = 165, + [166] = 166, [167] = 167, [168] = 168, [169] = 169, [170] = 170, - [171] = 170, - [172] = 169, - [173] = 173, - [174] = 157, - [175] = 145, - [176] = 176, - [177] = 177, - [178] = 176, - [179] = 177, + [171] = 171, + [172] = 170, + [173] = 156, + [174] = 174, + [175] = 167, + [176] = 138, + [177] = 141, + [178] = 142, + [179] = 179, [180] = 180, - [181] = 170, - [182] = 182, + [181] = 181, + [182] = 174, [183] = 183, [184] = 184, [185] = 185, - [186] = 186, - [187] = 150, + [186] = 171, + [187] = 187, [188] = 188, - [189] = 188, - [190] = 190, - [191] = 182, + [189] = 169, + [190] = 179, + [191] = 188, [192] = 192, - [193] = 147, - [194] = 173, - [195] = 182, + [193] = 193, + [194] = 192, + [195] = 195, [196] = 196, [197] = 197, - [198] = 196, - [199] = 164, - [200] = 170, - [201] = 155, - [202] = 176, - [203] = 184, - [204] = 204, - [205] = 182, - [206] = 190, - [207] = 186, - [208] = 176, + [198] = 193, + [199] = 195, + [200] = 196, + [201] = 169, + [202] = 170, + [203] = 187, + [204] = 174, + [205] = 170, + [206] = 174, + [207] = 169, + [208] = 137, [209] = 209, [210] = 210, - [211] = 210, + [211] = 211, [212] = 212, [213] = 209, - [214] = 214, + [214] = 212, [215] = 215, [216] = 216, [217] = 217, - [218] = 216, + [218] = 218, [219] = 219, - [220] = 216, - [221] = 219, - [222] = 216, + [220] = 220, + [221] = 218, + [222] = 222, [223] = 223, - [224] = 224, - [225] = 217, + [224] = 217, + [225] = 225, [226] = 223, - [227] = 227, - [228] = 227, - [229] = 224, - [230] = 230, - [231] = 219, - [232] = 219, - [233] = 233, - [234] = 224, - [235] = 235, - [236] = 233, - [237] = 230, - [238] = 219, - [239] = 216, - [240] = 224, - [241] = 224, - [242] = 215, + [227] = 219, + [228] = 217, + [229] = 229, + [230] = 220, + [231] = 217, + [232] = 225, + [233] = 220, + [234] = 220, + [235] = 225, + [236] = 225, + [237] = 220, + [238] = 215, + [239] = 217, + [240] = 216, + [241] = 225, + [242] = 229, [243] = 243, - [244] = 243, - [245] = 245, + [244] = 244, + [245] = 243, [246] = 243, [247] = 243, [248] = 248, @@ -4116,216 +4130,216 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [262] = 262, [263] = 263, [264] = 264, - [265] = 265, + [265] = 264, [266] = 266, [267] = 267, [268] = 268, - [269] = 269, - [270] = 259, - [271] = 271, - [272] = 272, - [273] = 260, - [274] = 274, - [275] = 275, - [276] = 253, - [277] = 277, + [269] = 249, + [270] = 250, + [271] = 251, + [272] = 252, + [273] = 253, + [274] = 254, + [275] = 255, + [276] = 256, + [277] = 258, [278] = 278, - [279] = 253, - [280] = 275, - [281] = 281, - [282] = 282, - [283] = 283, - [284] = 284, - [285] = 285, - [286] = 286, - [287] = 287, - [288] = 286, - [289] = 261, - [290] = 262, - [291] = 291, - [292] = 264, - [293] = 265, - [294] = 294, - [295] = 255, - [296] = 266, - [297] = 297, - [298] = 267, - [299] = 275, - [300] = 284, - [301] = 257, + [279] = 279, + [280] = 266, + [281] = 267, + [282] = 268, + [283] = 258, + [284] = 249, + [285] = 250, + [286] = 258, + [287] = 251, + [288] = 252, + [289] = 258, + [290] = 258, + [291] = 253, + [292] = 254, + [293] = 257, + [294] = 255, + [295] = 295, + [296] = 296, + [297] = 256, + [298] = 298, + [299] = 299, + [300] = 258, + [301] = 301, [302] = 302, - [303] = 248, - [304] = 268, - [305] = 305, - [306] = 282, - [307] = 285, + [303] = 266, + [304] = 267, + [305] = 268, + [306] = 249, + [307] = 295, [308] = 308, - [309] = 268, - [310] = 310, - [311] = 261, - [312] = 269, + [309] = 309, + [310] = 257, + [311] = 311, + [312] = 268, [313] = 313, - [314] = 271, - [315] = 253, - [316] = 285, - [317] = 272, - [318] = 262, - [319] = 308, - [320] = 275, - [321] = 264, - [322] = 255, + [314] = 250, + [315] = 251, + [316] = 316, + [317] = 317, + [318] = 318, + [319] = 264, + [320] = 320, + [321] = 321, + [322] = 322, [323] = 323, - [324] = 257, - [325] = 275, - [326] = 326, - [327] = 277, - [328] = 278, - [329] = 297, - [330] = 265, - [331] = 266, - [332] = 294, - [333] = 310, - [334] = 310, + [324] = 324, + [325] = 252, + [326] = 253, + [327] = 254, + [328] = 255, + [329] = 256, + [330] = 330, + [331] = 331, + [332] = 332, + [333] = 333, + [334] = 334, [335] = 335, [336] = 336, - [337] = 337, + [337] = 258, [338] = 338, - [339] = 267, - [340] = 310, - [341] = 287, - [342] = 305, - [343] = 261, - [344] = 275, + [339] = 257, + [340] = 340, + [341] = 264, + [342] = 342, + [343] = 302, + [344] = 340, [345] = 345, - [346] = 275, - [347] = 262, - [348] = 264, - [349] = 265, - [350] = 257, - [351] = 266, - [352] = 267, - [353] = 353, - [354] = 268, - [355] = 345, - [356] = 283, - [357] = 269, - [358] = 259, - [359] = 271, - [360] = 360, - [361] = 258, - [362] = 272, - [363] = 255, - [364] = 275, - [365] = 272, - [366] = 271, - [367] = 259, - [368] = 269, - [369] = 285, - [370] = 282, + [346] = 248, + [347] = 347, + [348] = 260, + [349] = 262, + [350] = 296, + [351] = 313, + [352] = 317, + [353] = 320, + [354] = 324, + [355] = 332, + [356] = 334, + [357] = 335, + [358] = 301, + [359] = 311, + [360] = 342, + [361] = 345, + [362] = 262, + [363] = 324, + [364] = 345, + [365] = 342, + [366] = 266, + [367] = 345, + [368] = 267, + [369] = 324, + [370] = 342, [371] = 371, [372] = 372, [373] = 373, - [374] = 374, - [375] = 375, + [374] = 181, + [375] = 180, [376] = 376, [377] = 377, - [378] = 378, - [379] = 185, + [378] = 371, + [379] = 379, [380] = 380, [381] = 381, - [382] = 375, - [383] = 372, + [382] = 382, + [383] = 383, [384] = 384, [385] = 385, [386] = 386, - [387] = 180, - [388] = 375, + [387] = 387, + [388] = 388, [389] = 389, - [390] = 390, + [390] = 373, [391] = 391, [392] = 392, [393] = 393, [394] = 394, [395] = 395, - [396] = 372, + [396] = 373, [397] = 397, - [398] = 398, + [398] = 371, [399] = 399, [400] = 400, - [401] = 392, + [401] = 400, [402] = 402, - [403] = 400, - [404] = 404, - [405] = 402, - [406] = 404, - [407] = 404, - [408] = 400, + [403] = 402, + [404] = 395, + [405] = 405, + [406] = 405, + [407] = 400, + [408] = 405, [409] = 402, [410] = 410, [411] = 411, - [412] = 411, - [413] = 411, + [412] = 410, + [413] = 410, [414] = 414, [415] = 415, - [416] = 415, - [417] = 415, + [416] = 414, + [417] = 414, [418] = 418, [419] = 419, [420] = 420, - [421] = 419, + [421] = 421, [422] = 422, - [423] = 422, - [424] = 424, + [423] = 421, + [424] = 422, [425] = 419, - [426] = 420, + [426] = 421, [427] = 420, - [428] = 424, + [428] = 420, [429] = 429, [430] = 429, [431] = 431, [432] = 432, [433] = 433, [434] = 434, - [435] = 433, + [435] = 435, [436] = 433, [437] = 434, - [438] = 438, - [439] = 434, - [440] = 438, - [441] = 438, + [438] = 434, + [439] = 433, + [440] = 435, + [441] = 435, [442] = 442, [443] = 443, [444] = 443, [445] = 443, - [446] = 245, - [447] = 249, - [448] = 326, - [449] = 353, - [450] = 335, - [451] = 360, - [452] = 389, - [453] = 453, - [454] = 398, + [446] = 244, + [447] = 338, + [448] = 347, + [449] = 261, + [450] = 323, + [451] = 336, + [452] = 379, + [453] = 394, + [454] = 381, [455] = 385, [456] = 456, - [457] = 371, - [458] = 376, - [459] = 397, - [460] = 377, - [461] = 386, - [462] = 381, - [463] = 463, - [464] = 393, - [465] = 391, - [466] = 453, - [467] = 373, - [468] = 453, - [469] = 399, - [470] = 380, - [471] = 394, - [472] = 395, - [473] = 453, - [474] = 378, + [457] = 377, + [458] = 458, + [459] = 456, + [460] = 388, + [461] = 456, + [462] = 380, + [463] = 389, + [464] = 464, + [465] = 384, + [466] = 392, + [467] = 399, + [468] = 383, + [469] = 376, + [470] = 386, + [471] = 387, + [472] = 456, + [473] = 382, + [474] = 393, [475] = 475, [476] = 475, [477] = 475, @@ -4427,7 +4441,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [573] = 573, [574] = 574, [575] = 575, - [576] = 353, + [576] = 576, [577] = 577, [578] = 578, [579] = 579, @@ -4472,7 +4486,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [618] = 618, [619] = 619, [620] = 620, - [621] = 360, + [621] = 621, [622] = 622, [623] = 623, [624] = 624, @@ -4480,7 +4494,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [626] = 626, [627] = 627, [628] = 628, - [629] = 531, + [629] = 629, [630] = 630, [631] = 631, [632] = 632, @@ -4491,12 +4505,12 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [637] = 637, [638] = 638, [639] = 639, - [640] = 335, + [640] = 640, [641] = 641, [642] = 642, [643] = 643, [644] = 644, - [645] = 249, + [645] = 645, [646] = 646, [647] = 647, [648] = 648, @@ -4514,16 +4528,16 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [660] = 660, [661] = 661, [662] = 662, - [663] = 663, + [663] = 347, [664] = 664, [665] = 665, [666] = 666, [667] = 667, [668] = 668, - [669] = 669, - [670] = 670, - [671] = 671, - [672] = 672, + [669] = 338, + [670] = 261, + [671] = 323, + [672] = 336, [673] = 673, [674] = 674, [675] = 675, @@ -4541,7 +4555,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [687] = 687, [688] = 688, [689] = 689, - [690] = 690, + [690] = 654, [691] = 691, [692] = 692, [693] = 693, @@ -4549,7 +4563,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [695] = 695, [696] = 696, [697] = 697, - [698] = 698, + [698] = 646, [699] = 699, [700] = 700, [701] = 701, @@ -4560,7 +4574,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [706] = 706, [707] = 707, [708] = 708, - [709] = 668, + [709] = 709, [710] = 710, [711] = 711, [712] = 712, @@ -4582,7 +4596,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [728] = 728, [729] = 729, [730] = 730, - [731] = 326, + [731] = 731, [732] = 732, [733] = 733, [734] = 734, @@ -4608,11 +4622,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [754] = 754, [755] = 754, [756] = 756, - [757] = 757, + [757] = 756, [758] = 758, [759] = 759, - [760] = 756, - [761] = 758, + [760] = 760, + [761] = 760, [762] = 762, [763] = 763, [764] = 764, @@ -4626,27 +4640,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [772] = 772, [773] = 773, [774] = 774, - [775] = 772, - [776] = 773, + [775] = 771, + [776] = 776, [777] = 777, - [778] = 777, - [779] = 779, + [778] = 776, + [779] = 773, [780] = 780, [781] = 781, [782] = 782, [783] = 783, [784] = 784, - [785] = 785, - [786] = 781, + [785] = 782, + [786] = 786, [787] = 787, - [788] = 784, - [789] = 785, - [790] = 790, - [791] = 787, - [792] = 790, - [793] = 793, - [794] = 794, - [795] = 780, + [788] = 788, + [789] = 789, + [790] = 784, + [791] = 786, + [792] = 787, + [793] = 788, + [794] = 789, + [795] = 795, [796] = 796, [797] = 797, [798] = 798, @@ -4655,60 +4669,60 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [801] = 801, [802] = 802, [803] = 803, - [804] = 800, + [804] = 796, [805] = 805, [806] = 806, [807] = 807, [808] = 808, - [809] = 809, + [809] = 801, [810] = 810, - [811] = 801, + [811] = 811, [812] = 812, - [813] = 801, - [814] = 812, - [815] = 800, - [816] = 816, - [817] = 796, - [818] = 797, - [819] = 808, - [820] = 806, - [821] = 801, + [813] = 802, + [814] = 814, + [815] = 815, + [816] = 805, + [817] = 807, + [818] = 799, + [819] = 800, + [820] = 814, + [821] = 812, [822] = 798, - [823] = 823, - [824] = 800, - [825] = 803, - [826] = 816, - [827] = 802, - [828] = 805, + [823] = 810, + [824] = 815, + [825] = 796, + [826] = 798, + [827] = 796, + [828] = 798, [829] = 829, [830] = 830, - [831] = 829, - [832] = 829, - [833] = 829, + [831] = 830, + [832] = 830, + [833] = 830, [834] = 834, [835] = 835, - [836] = 835, + [836] = 836, [837] = 837, - [838] = 838, - [839] = 839, - [840] = 838, + [838] = 837, + [839] = 834, + [840] = 840, [841] = 841, [842] = 842, [843] = 843, [844] = 844, - [845] = 845, - [846] = 839, - [847] = 835, - [848] = 843, - [849] = 843, - [850] = 850, - [851] = 851, - [852] = 842, - [853] = 843, - [854] = 854, - [855] = 834, - [856] = 839, - [857] = 842, + [845] = 841, + [846] = 846, + [847] = 837, + [848] = 848, + [849] = 849, + [850] = 837, + [851] = 834, + [852] = 836, + [853] = 848, + [854] = 835, + [855] = 835, + [856] = 856, + [857] = 836, [858] = 858, [859] = 859, [860] = 860, @@ -4716,9 +4730,9 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [862] = 862, [863] = 863, [864] = 864, - [865] = 865, - [866] = 866, - [867] = 867, + [865] = 859, + [866] = 860, + [867] = 861, [868] = 868, [869] = 869, [870] = 870, @@ -4731,134 +4745,134 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [877] = 877, [878] = 878, [879] = 879, - [880] = 877, - [881] = 867, + [880] = 880, + [881] = 881, [882] = 882, [883] = 883, - [884] = 862, - [885] = 873, + [884] = 884, + [885] = 885, [886] = 886, [887] = 887, [888] = 888, [889] = 889, [890] = 890, - [891] = 886, + [891] = 891, [892] = 892, - [893] = 893, + [893] = 863, [894] = 894, - [895] = 895, + [895] = 864, [896] = 896, - [897] = 897, + [897] = 859, [898] = 898, [899] = 899, - [900] = 872, + [900] = 860, [901] = 901, - [902] = 866, - [903] = 889, - [904] = 904, - [905] = 879, + [902] = 890, + [903] = 903, + [904] = 886, + [905] = 889, [906] = 906, - [907] = 883, - [908] = 888, - [909] = 874, + [907] = 861, + [908] = 656, + [909] = 909, [910] = 910, - [911] = 865, + [911] = 863, [912] = 859, - [913] = 906, + [913] = 898, [914] = 914, [915] = 915, [916] = 916, - [917] = 866, - [918] = 918, - [919] = 919, - [920] = 920, - [921] = 871, - [922] = 922, + [917] = 868, + [918] = 869, + [919] = 880, + [920] = 870, + [921] = 921, + [922] = 871, [923] = 923, - [924] = 878, - [925] = 925, - [926] = 926, - [927] = 886, - [928] = 928, - [929] = 915, - [930] = 930, - [931] = 920, + [924] = 896, + [925] = 886, + [926] = 868, + [927] = 869, + [928] = 870, + [929] = 929, + [930] = 896, + [931] = 931, [932] = 932, - [933] = 928, + [933] = 933, [934] = 934, [935] = 935, - [936] = 932, - [937] = 915, + [936] = 936, + [937] = 937, [938] = 938, - [939] = 876, - [940] = 904, - [941] = 923, - [942] = 875, + [939] = 939, + [940] = 871, + [941] = 941, + [942] = 942, [943] = 943, [944] = 944, - [945] = 890, - [946] = 860, - [947] = 947, - [948] = 948, - [949] = 910, - [950] = 894, - [951] = 916, + [945] = 901, + [946] = 946, + [947] = 890, + [948] = 929, + [949] = 949, + [950] = 935, + [951] = 914, [952] = 952, - [953] = 868, - [954] = 893, - [955] = 952, - [956] = 898, - [957] = 918, - [958] = 859, - [959] = 863, + [953] = 953, + [954] = 939, + [955] = 946, + [956] = 903, + [957] = 862, + [958] = 932, + [959] = 938, [960] = 960, - [961] = 896, - [962] = 962, - [963] = 899, - [964] = 898, - [965] = 965, - [966] = 897, - [967] = 896, - [968] = 968, - [969] = 706, - [970] = 869, - [971] = 882, - [972] = 919, - [973] = 875, - [974] = 887, - [975] = 915, - [976] = 976, - [977] = 920, - [978] = 978, - [979] = 979, - [980] = 980, - [981] = 859, - [982] = 901, - [983] = 930, - [984] = 920, - [985] = 858, - [986] = 864, - [987] = 947, - [988] = 899, - [989] = 892, - [990] = 948, - [991] = 882, - [992] = 926, - [993] = 895, - [994] = 925, - [995] = 898, - [996] = 923, - [997] = 893, - [998] = 894, - [999] = 904, - [1000] = 922, - [1001] = 897, + [961] = 961, + [962] = 858, + [963] = 872, + [964] = 873, + [965] = 874, + [966] = 877, + [967] = 879, + [968] = 881, + [969] = 883, + [970] = 884, + [971] = 891, + [972] = 899, + [973] = 909, + [974] = 974, + [975] = 931, + [976] = 936, + [977] = 937, + [978] = 941, + [979] = 863, + [980] = 960, + [981] = 961, + [982] = 974, + [983] = 983, + [984] = 984, + [985] = 887, + [986] = 888, + [987] = 892, + [988] = 915, + [989] = 933, + [990] = 990, + [991] = 944, + [992] = 983, + [993] = 929, + [994] = 984, + [995] = 901, + [996] = 952, + [997] = 864, + [998] = 901, + [999] = 890, + [1000] = 880, + [1001] = 953, [1002] = 1002, [1003] = 1003, [1004] = 1004, [1005] = 1005, [1006] = 1006, - [1007] = 706, + [1007] = 656, [1008] = 1008, [1009] = 1009, [1010] = 1010, @@ -4866,42 +4880,42 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1012] = 1012, [1013] = 1013, [1014] = 1014, - [1015] = 326, - [1016] = 335, + [1015] = 336, + [1016] = 1016, [1017] = 1017, - [1018] = 1018, - [1019] = 360, - [1020] = 1020, + [1018] = 261, + [1019] = 180, + [1020] = 323, [1021] = 1021, - [1022] = 180, - [1023] = 1023, - [1024] = 374, - [1025] = 185, - [1026] = 1026, - [1027] = 249, + [1022] = 1022, + [1023] = 181, + [1024] = 1024, + [1025] = 397, + [1026] = 372, + [1027] = 347, [1028] = 1028, - [1029] = 353, - [1030] = 1030, - [1031] = 390, + [1029] = 1029, + [1030] = 338, + [1031] = 1031, [1032] = 1032, [1033] = 1033, - [1034] = 569, - [1035] = 1035, + [1034] = 1034, + [1035] = 723, [1036] = 1036, - [1037] = 1037, - [1038] = 497, - [1039] = 620, - [1040] = 619, + [1037] = 504, + [1038] = 673, + [1039] = 562, + [1040] = 1040, [1041] = 1041, [1042] = 1042, - [1043] = 626, + [1043] = 600, [1044] = 1044, [1045] = 1045, [1046] = 1046, [1047] = 1047, [1048] = 1048, [1049] = 1049, - [1050] = 1050, + [1050] = 244, [1051] = 1051, [1052] = 1052, [1053] = 1053, @@ -4909,433 +4923,433 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1055] = 1055, [1056] = 1056, [1057] = 1057, - [1058] = 245, + [1058] = 1058, [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1062, - [1063] = 1063, + [1062] = 1054, + [1063] = 429, [1064] = 1064, - [1065] = 1008, + [1065] = 1002, [1066] = 1066, [1067] = 1067, [1068] = 1068, - [1069] = 1002, + [1069] = 1069, [1070] = 1070, [1071] = 1071, [1072] = 1072, [1073] = 1073, - [1074] = 1074, + [1074] = 1068, [1075] = 1075, - [1076] = 429, + [1076] = 1076, [1077] = 1077, [1078] = 1078, - [1079] = 1079, - [1080] = 1080, - [1081] = 1071, + [1079] = 1054, + [1080] = 1008, + [1081] = 1081, [1082] = 1082, [1083] = 1083, - [1084] = 1084, + [1084] = 1068, [1085] = 1085, [1086] = 1086, [1087] = 1087, - [1088] = 1080, - [1089] = 1071, - [1090] = 1080, - [1091] = 722, - [1092] = 1092, - [1093] = 1093, - [1094] = 537, - [1095] = 623, - [1096] = 490, - [1097] = 386, - [1098] = 335, - [1099] = 675, - [1100] = 685, - [1101] = 687, - [1102] = 753, - [1103] = 744, - [1104] = 742, - [1105] = 741, - [1106] = 1106, - [1107] = 735, - [1108] = 730, - [1109] = 729, - [1110] = 725, - [1111] = 723, - [1112] = 718, - [1113] = 701, - [1114] = 684, - [1115] = 683, - [1116] = 682, - [1117] = 676, - [1118] = 664, - [1119] = 658, - [1120] = 656, - [1121] = 647, - [1122] = 646, - [1123] = 644, - [1124] = 479, - [1125] = 617, - [1126] = 1126, - [1127] = 611, - [1128] = 1128, - [1129] = 602, - [1130] = 594, - [1131] = 1131, - [1132] = 589, - [1133] = 564, - [1134] = 572, - [1135] = 632, - [1136] = 1136, - [1137] = 394, - [1138] = 1138, - [1139] = 551, - [1140] = 545, - [1141] = 533, - [1142] = 521, - [1143] = 519, - [1144] = 1144, - [1145] = 515, - [1146] = 509, - [1147] = 496, - [1148] = 495, - [1149] = 1149, - [1150] = 484, - [1151] = 376, - [1152] = 378, - [1153] = 748, - [1154] = 752, - [1155] = 528, - [1156] = 499, - [1157] = 489, - [1158] = 512, - [1159] = 624, - [1160] = 180, - [1161] = 747, - [1162] = 483, - [1163] = 485, - [1164] = 1164, - [1165] = 1165, - [1166] = 1166, - [1167] = 1167, - [1168] = 1168, - [1169] = 1169, - [1170] = 1170, - [1171] = 1171, - [1172] = 1172, - [1173] = 1173, - [1174] = 1174, - [1175] = 1175, - [1176] = 724, - [1177] = 721, - [1178] = 486, - [1179] = 704, - [1180] = 702, - [1181] = 628, - [1182] = 686, - [1183] = 371, - [1184] = 669, - [1185] = 681, - [1186] = 639, - [1187] = 690, - [1188] = 706, - [1189] = 691, - [1190] = 699, - [1191] = 703, - [1192] = 713, - [1193] = 638, - [1194] = 726, - [1195] = 749, - [1196] = 750, - [1197] = 650, - [1198] = 480, - [1199] = 751, - [1200] = 1200, - [1201] = 649, - [1202] = 643, - [1203] = 641, - [1204] = 627, - [1205] = 625, - [1206] = 607, - [1207] = 593, - [1208] = 566, - [1209] = 728, - [1210] = 565, - [1211] = 540, - [1212] = 539, - [1213] = 536, - [1214] = 164, - [1215] = 507, - [1216] = 395, - [1217] = 570, - [1218] = 575, - [1219] = 579, + [1088] = 1088, + [1089] = 1089, + [1090] = 1090, + [1091] = 380, + [1092] = 553, + [1093] = 554, + [1094] = 555, + [1095] = 556, + [1096] = 557, + [1097] = 558, + [1098] = 559, + [1099] = 560, + [1100] = 561, + [1101] = 532, + [1102] = 563, + [1103] = 564, + [1104] = 565, + [1105] = 566, + [1106] = 567, + [1107] = 568, + [1108] = 569, + [1109] = 570, + [1110] = 571, + [1111] = 572, + [1112] = 573, + [1113] = 574, + [1114] = 575, + [1115] = 576, + [1116] = 577, + [1117] = 578, + [1118] = 579, + [1119] = 580, + [1120] = 581, + [1121] = 582, + [1122] = 583, + [1123] = 584, + [1124] = 585, + [1125] = 586, + [1126] = 587, + [1127] = 394, + [1128] = 533, + [1129] = 534, + [1130] = 388, + [1131] = 589, + [1132] = 590, + [1133] = 591, + [1134] = 592, + [1135] = 593, + [1136] = 594, + [1137] = 595, + [1138] = 596, + [1139] = 597, + [1140] = 598, + [1141] = 599, + [1142] = 537, + [1143] = 601, + [1144] = 602, + [1145] = 603, + [1146] = 604, + [1147] = 605, + [1148] = 606, + [1149] = 607, + [1150] = 608, + [1151] = 609, + [1152] = 610, + [1153] = 611, + [1154] = 612, + [1155] = 613, + [1156] = 614, + [1157] = 615, + [1158] = 616, + [1159] = 617, + [1160] = 618, + [1161] = 619, + [1162] = 620, + [1163] = 621, + [1164] = 622, + [1165] = 623, + [1166] = 624, + [1167] = 626, + [1168] = 627, + [1169] = 628, + [1170] = 629, + [1171] = 630, + [1172] = 753, + [1173] = 632, + [1174] = 633, + [1175] = 634, + [1176] = 635, + [1177] = 636, + [1178] = 637, + [1179] = 639, + [1180] = 640, + [1181] = 641, + [1182] = 642, + [1183] = 1183, + [1184] = 540, + [1185] = 588, + [1186] = 1186, + [1187] = 479, + [1188] = 625, + [1189] = 1189, + [1190] = 638, + [1191] = 643, + [1192] = 1192, + [1193] = 1193, + [1194] = 644, + [1195] = 399, + [1196] = 372, + [1197] = 645, + [1198] = 138, + [1199] = 1199, + [1200] = 647, + [1201] = 648, + [1202] = 1202, + [1203] = 649, + [1204] = 650, + [1205] = 261, + [1206] = 384, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1210, + [1211] = 1211, + [1212] = 1212, + [1213] = 1213, + [1214] = 1214, + [1215] = 1215, + [1216] = 1009, + [1217] = 1217, + [1218] = 392, + [1219] = 1219, [1220] = 1220, - [1221] = 601, - [1222] = 606, + [1221] = 1221, + [1222] = 1222, [1223] = 1223, [1224] = 1224, - [1225] = 698, - [1226] = 697, - [1227] = 393, - [1228] = 738, - [1229] = 506, - [1230] = 743, - [1231] = 740, - [1232] = 737, - [1233] = 736, - [1234] = 719, - [1235] = 185, - [1236] = 696, + [1225] = 1225, + [1226] = 1226, + [1227] = 653, + [1228] = 1228, + [1229] = 1229, + [1230] = 1230, + [1231] = 180, + [1232] = 658, + [1233] = 659, + [1234] = 660, + [1235] = 661, + [1236] = 662, [1237] = 1237, - [1238] = 693, - [1239] = 598, - [1240] = 488, - [1241] = 692, - [1242] = 1242, + [1238] = 1238, + [1239] = 385, + [1240] = 664, + [1241] = 1241, + [1242] = 665, [1243] = 1243, - [1244] = 1244, - [1245] = 1245, - [1246] = 155, - [1247] = 678, - [1248] = 677, + [1244] = 656, + [1245] = 666, + [1246] = 667, + [1247] = 668, + [1248] = 387, [1249] = 1249, - [1250] = 674, - [1251] = 733, - [1252] = 1252, - [1253] = 491, - [1254] = 1254, - [1255] = 1255, - [1256] = 1256, + [1250] = 1250, + [1251] = 1251, + [1252] = 674, + [1253] = 675, + [1254] = 676, + [1255] = 677, + [1256] = 678, [1257] = 1257, - [1258] = 673, - [1259] = 671, - [1260] = 670, - [1261] = 663, - [1262] = 662, - [1263] = 661, - [1264] = 652, - [1265] = 651, - [1266] = 1266, - [1267] = 380, - [1268] = 542, - [1269] = 616, - [1270] = 1270, - [1271] = 615, - [1272] = 614, - [1273] = 613, - [1274] = 612, - [1275] = 597, - [1276] = 523, - [1277] = 1277, - [1278] = 596, - [1279] = 326, - [1280] = 588, - [1281] = 1281, - [1282] = 580, - [1283] = 493, - [1284] = 543, - [1285] = 524, - [1286] = 494, - [1287] = 637, - [1288] = 525, - [1289] = 526, - [1290] = 522, + [1258] = 679, + [1259] = 680, + [1260] = 1260, + [1261] = 1261, + [1262] = 1262, + [1263] = 681, + [1264] = 1264, + [1265] = 682, + [1266] = 683, + [1267] = 684, + [1268] = 685, + [1269] = 382, + [1270] = 687, + [1271] = 688, + [1272] = 1272, + [1273] = 1273, + [1274] = 1274, + [1275] = 1275, + [1276] = 689, + [1277] = 691, + [1278] = 1278, + [1279] = 693, + [1280] = 694, + [1281] = 695, + [1282] = 696, + [1283] = 697, + [1284] = 699, + [1285] = 700, + [1286] = 1286, + [1287] = 393, + [1288] = 1288, + [1289] = 701, + [1290] = 703, [1291] = 1291, - [1292] = 374, - [1293] = 381, - [1294] = 498, - [1295] = 503, - [1296] = 487, - [1297] = 482, - [1298] = 603, - [1299] = 583, - [1300] = 734, - [1301] = 517, - [1302] = 513, - [1303] = 389, - [1304] = 520, - [1305] = 511, - [1306] = 510, - [1307] = 1307, - [1308] = 595, - [1309] = 492, - [1310] = 501, - [1311] = 390, - [1312] = 398, - [1313] = 592, - [1314] = 1314, - [1315] = 502, - [1316] = 1316, - [1317] = 481, - [1318] = 1318, - [1319] = 1319, - [1320] = 527, - [1321] = 1321, + [1292] = 1292, + [1293] = 1293, + [1294] = 1294, + [1295] = 1295, + [1296] = 1296, + [1297] = 1297, + [1298] = 1298, + [1299] = 1299, + [1300] = 1300, + [1301] = 655, + [1302] = 338, + [1303] = 1010, + [1304] = 1304, + [1305] = 1305, + [1306] = 704, + [1307] = 705, + [1308] = 1308, + [1309] = 1309, + [1310] = 1310, + [1311] = 181, + [1312] = 706, + [1313] = 141, + [1314] = 707, + [1315] = 708, + [1316] = 709, + [1317] = 710, + [1318] = 711, + [1319] = 376, + [1320] = 1320, + [1321] = 377, [1322] = 1322, [1323] = 1323, [1324] = 1324, [1325] = 1325, - [1326] = 1326, - [1327] = 500, - [1328] = 1009, - [1329] = 591, - [1330] = 590, - [1331] = 534, - [1332] = 584, - [1333] = 582, - [1334] = 608, - [1335] = 504, - [1336] = 610, - [1337] = 1010, - [1338] = 581, - [1339] = 635, - [1340] = 648, - [1341] = 578, - [1342] = 505, - [1343] = 746, - [1344] = 249, - [1345] = 745, - [1346] = 1346, - [1347] = 1347, - [1348] = 739, - [1349] = 1349, - [1350] = 1350, - [1351] = 1351, - [1352] = 1352, - [1353] = 732, - [1354] = 1354, - [1355] = 727, - [1356] = 720, - [1357] = 1357, - [1358] = 717, - [1359] = 708, - [1360] = 716, - [1361] = 710, - [1362] = 715, - [1363] = 714, - [1364] = 712, - [1365] = 377, - [1366] = 711, - [1367] = 705, - [1368] = 700, - [1369] = 695, - [1370] = 391, - [1371] = 694, - [1372] = 385, - [1373] = 689, - [1374] = 688, - [1375] = 680, - [1376] = 679, - [1377] = 672, - [1378] = 667, - [1379] = 399, - [1380] = 397, - [1381] = 1381, - [1382] = 666, + [1326] = 712, + [1327] = 1327, + [1328] = 713, + [1329] = 714, + [1330] = 715, + [1331] = 716, + [1332] = 717, + [1333] = 718, + [1334] = 719, + [1335] = 720, + [1336] = 379, + [1337] = 1337, + [1338] = 722, + [1339] = 724, + [1340] = 725, + [1341] = 726, + [1342] = 727, + [1343] = 728, + [1344] = 729, + [1345] = 730, + [1346] = 731, + [1347] = 732, + [1348] = 733, + [1349] = 734, + [1350] = 735, + [1351] = 736, + [1352] = 737, + [1353] = 1353, + [1354] = 738, + [1355] = 739, + [1356] = 740, + [1357] = 741, + [1358] = 742, + [1359] = 743, + [1360] = 744, + [1361] = 745, + [1362] = 746, + [1363] = 747, + [1364] = 748, + [1365] = 1365, + [1366] = 1366, + [1367] = 1367, + [1368] = 749, + [1369] = 1369, + [1370] = 750, + [1371] = 751, + [1372] = 752, + [1373] = 631, + [1374] = 702, + [1375] = 323, + [1376] = 383, + [1377] = 1377, + [1378] = 480, + [1379] = 481, + [1380] = 142, + [1381] = 381, + [1382] = 1382, [1383] = 1383, - [1384] = 665, - [1385] = 660, - [1386] = 508, - [1387] = 1387, - [1388] = 659, + [1384] = 1384, + [1385] = 1385, + [1386] = 1386, + [1387] = 397, + [1388] = 1388, [1389] = 1389, - [1390] = 577, - [1391] = 657, - [1392] = 1392, - [1393] = 567, - [1394] = 563, - [1395] = 532, - [1396] = 654, - [1397] = 562, - [1398] = 1398, - [1399] = 1399, - [1400] = 653, - [1401] = 561, - [1402] = 560, - [1403] = 559, - [1404] = 353, - [1405] = 642, - [1406] = 516, - [1407] = 514, - [1408] = 518, - [1409] = 1409, - [1410] = 150, - [1411] = 535, - [1412] = 1412, - [1413] = 1413, - [1414] = 1414, - [1415] = 1415, - [1416] = 636, - [1417] = 1417, - [1418] = 630, - [1419] = 634, - [1420] = 633, - [1421] = 558, - [1422] = 1422, - [1423] = 538, - [1424] = 631, - [1425] = 1425, - [1426] = 1426, - [1427] = 622, - [1428] = 618, - [1429] = 604, - [1430] = 557, - [1431] = 541, - [1432] = 600, - [1433] = 1433, - [1434] = 1434, - [1435] = 544, - [1436] = 145, - [1437] = 1437, - [1438] = 599, + [1390] = 503, + [1391] = 1391, + [1392] = 482, + [1393] = 1393, + [1394] = 483, + [1395] = 484, + [1396] = 485, + [1397] = 486, + [1398] = 487, + [1399] = 488, + [1400] = 489, + [1401] = 490, + [1402] = 491, + [1403] = 492, + [1404] = 493, + [1405] = 494, + [1406] = 495, + [1407] = 496, + [1408] = 497, + [1409] = 498, + [1410] = 499, + [1411] = 500, + [1412] = 501, + [1413] = 386, + [1414] = 502, + [1415] = 505, + [1416] = 506, + [1417] = 507, + [1418] = 347, + [1419] = 1419, + [1420] = 508, + [1421] = 509, + [1422] = 510, + [1423] = 511, + [1424] = 512, + [1425] = 513, + [1426] = 514, + [1427] = 515, + [1428] = 516, + [1429] = 517, + [1430] = 518, + [1431] = 519, + [1432] = 520, + [1433] = 521, + [1434] = 522, + [1435] = 523, + [1436] = 524, + [1437] = 525, + [1438] = 526, [1439] = 1439, - [1440] = 1440, - [1441] = 546, - [1442] = 587, - [1443] = 586, - [1444] = 547, - [1445] = 556, - [1446] = 555, - [1447] = 1447, - [1448] = 553, + [1440] = 527, + [1441] = 528, + [1442] = 529, + [1443] = 530, + [1444] = 1444, + [1445] = 531, + [1446] = 336, + [1447] = 535, + [1448] = 536, [1449] = 1449, - [1450] = 147, + [1450] = 538, [1451] = 1451, - [1452] = 1452, - [1453] = 585, - [1454] = 574, - [1455] = 1455, + [1452] = 539, + [1453] = 541, + [1454] = 389, + [1455] = 542, [1456] = 1456, - [1457] = 548, - [1458] = 573, - [1459] = 549, - [1460] = 571, - [1461] = 1461, - [1462] = 360, - [1463] = 530, - [1464] = 373, - [1465] = 529, - [1466] = 568, - [1467] = 552, - [1468] = 550, - [1469] = 1469, - [1470] = 1470, - [1471] = 706, - [1472] = 1472, - [1473] = 485, - [1474] = 1474, + [1457] = 543, + [1458] = 544, + [1459] = 545, + [1460] = 1460, + [1461] = 546, + [1462] = 156, + [1463] = 167, + [1464] = 547, + [1465] = 548, + [1466] = 549, + [1467] = 550, + [1468] = 551, + [1469] = 552, + [1470] = 686, + [1471] = 1471, + [1472] = 656, + [1473] = 1473, + [1474] = 704, [1475] = 1475, - [1476] = 1476, + [1476] = 1003, [1477] = 1477, [1478] = 1478, [1479] = 1479, [1480] = 1480, - [1481] = 1003, + [1481] = 1481, [1482] = 1482, [1483] = 1483, - [1484] = 1484, + [1484] = 1040, [1485] = 1485, [1486] = 1486, [1487] = 1487, @@ -5343,597 +5357,597 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1489] = 1489, [1490] = 1490, [1491] = 1491, - [1492] = 1492, + [1492] = 1011, [1493] = 1493, [1494] = 1494, [1495] = 1495, - [1496] = 1495, + [1496] = 1496, [1497] = 1497, - [1498] = 1498, + [1498] = 1491, [1499] = 1499, [1500] = 1500, - [1501] = 1037, + [1501] = 1501, [1502] = 1502, [1503] = 1503, - [1504] = 1495, - [1505] = 1011, - [1506] = 1037, - [1507] = 1013, - [1508] = 1012, + [1504] = 1491, + [1505] = 1505, + [1506] = 1013, + [1507] = 1040, + [1508] = 1014, [1509] = 1509, [1510] = 1510, - [1511] = 1510, - [1512] = 1014, - [1513] = 1513, - [1514] = 1513, - [1515] = 1037, - [1516] = 1075, + [1511] = 1040, + [1512] = 1512, + [1513] = 1012, + [1514] = 1510, + [1515] = 1512, + [1516] = 1089, [1517] = 1517, - [1518] = 1028, - [1519] = 1349, - [1520] = 1520, - [1521] = 1018, - [1522] = 1085, - [1523] = 1017, - [1524] = 1023, - [1525] = 1079, - [1526] = 1526, - [1527] = 1030, + [1518] = 1089, + [1519] = 1024, + [1520] = 1021, + [1521] = 1056, + [1522] = 1056, + [1523] = 1046, + [1524] = 1069, + [1525] = 1069, + [1526] = 1028, + [1527] = 1016, [1528] = 1528, - [1529] = 1082, - [1530] = 1026, - [1531] = 1020, - [1532] = 1021, - [1533] = 1533, - [1534] = 1461, - [1535] = 1082, - [1536] = 1085, - [1537] = 1461, - [1538] = 1538, + [1529] = 1031, + [1530] = 1022, + [1531] = 1531, + [1532] = 1029, + [1533] = 1017, + [1534] = 1393, + [1535] = 1393, + [1536] = 1536, + [1537] = 1238, + [1538] = 1046, [1539] = 1539, - [1540] = 1079, - [1541] = 1075, - [1542] = 1542, - [1543] = 1083, - [1544] = 1035, - [1545] = 1545, - [1546] = 1542, - [1547] = 1414, - [1548] = 1033, - [1549] = 1437, - [1550] = 1052, - [1551] = 1049, - [1552] = 1048, - [1553] = 1553, - [1554] = 1545, - [1555] = 1542, - [1556] = 1542, - [1557] = 1349, - [1558] = 1461, - [1559] = 1048, - [1560] = 1032, - [1561] = 1561, - [1562] = 1437, - [1563] = 1553, - [1564] = 1477, - [1565] = 1561, - [1566] = 1472, - [1567] = 1561, - [1568] = 1077, - [1569] = 1561, - [1570] = 1036, - [1571] = 1414, - [1572] = 245, - [1573] = 1503, + [1540] = 1540, + [1541] = 1541, + [1542] = 1045, + [1543] = 1543, + [1544] = 1045, + [1545] = 1036, + [1546] = 1393, + [1547] = 1033, + [1548] = 1238, + [1549] = 1549, + [1550] = 1072, + [1551] = 1551, + [1552] = 1377, + [1553] = 1478, + [1554] = 244, + [1555] = 1549, + [1556] = 1047, + [1557] = 1058, + [1558] = 1475, + [1559] = 1059, + [1560] = 1551, + [1561] = 1042, + [1562] = 1562, + [1563] = 1562, + [1564] = 1034, + [1565] = 1419, + [1566] = 1551, + [1567] = 1562, + [1568] = 1419, + [1569] = 1543, + [1570] = 1377, + [1571] = 1551, + [1572] = 1562, + [1573] = 1496, [1574] = 1574, - [1575] = 1047, - [1576] = 1051, - [1577] = 353, - [1578] = 249, - [1579] = 1078, - [1580] = 326, - [1581] = 1050, - [1582] = 335, - [1583] = 1084, - [1584] = 360, - [1585] = 1057, - [1586] = 1046, - [1587] = 1482, - [1588] = 1087, - [1589] = 1086, + [1575] = 1489, + [1576] = 1576, + [1577] = 1499, + [1578] = 1576, + [1579] = 1482, + [1580] = 1486, + [1581] = 1048, + [1582] = 1071, + [1583] = 1075, + [1584] = 1044, + [1585] = 1505, + [1586] = 1064, + [1587] = 338, + [1588] = 1488, + [1589] = 1574, [1590] = 1490, - [1591] = 1489, - [1592] = 1488, - [1593] = 1593, - [1594] = 1498, - [1595] = 1487, - [1596] = 1486, - [1597] = 1485, - [1598] = 1484, - [1599] = 1493, - [1600] = 1500, - [1601] = 1072, - [1602] = 1073, - [1603] = 1603, - [1604] = 1074, - [1605] = 1499, - [1606] = 1067, - [1607] = 1066, - [1608] = 1492, - [1609] = 1494, - [1610] = 1491, - [1611] = 1068, - [1612] = 1612, - [1613] = 1502, - [1614] = 1497, - [1615] = 1064, - [1616] = 1063, - [1617] = 1483, - [1618] = 1574, - [1619] = 1060, - [1620] = 1059, - [1621] = 1061, - [1622] = 1593, - [1623] = 1623, - [1624] = 1612, - [1625] = 1054, - [1626] = 1053, - [1627] = 1056, + [1591] = 1478, + [1592] = 1592, + [1593] = 1500, + [1594] = 1060, + [1595] = 261, + [1596] = 1076, + [1597] = 1088, + [1598] = 1085, + [1599] = 1057, + [1600] = 1051, + [1601] = 1502, + [1602] = 1087, + [1603] = 323, + [1604] = 1055, + [1605] = 1066, + [1606] = 1501, + [1607] = 1607, + [1608] = 1078, + [1609] = 336, + [1610] = 1610, + [1611] = 1053, + [1612] = 1090, + [1613] = 1592, + [1614] = 1086, + [1615] = 1494, + [1616] = 1503, + [1617] = 1081, + [1618] = 1592, + [1619] = 1497, + [1620] = 1073, + [1621] = 1052, + [1622] = 1083, + [1623] = 1049, + [1624] = 1061, + [1625] = 1483, + [1626] = 1067, + [1627] = 1493, [1628] = 1628, - [1629] = 1628, - [1630] = 1612, - [1631] = 1472, - [1632] = 1055, - [1633] = 1477, - [1634] = 1062, - [1635] = 1070, - [1636] = 371, - [1637] = 1173, - [1638] = 390, - [1639] = 1498, - [1640] = 1640, - [1641] = 1243, - [1642] = 1642, - [1643] = 1643, - [1644] = 1644, - [1645] = 1452, - [1646] = 1646, - [1647] = 1647, - [1648] = 1648, - [1649] = 1642, - [1650] = 1487, - [1651] = 1651, - [1652] = 1451, - [1653] = 1643, - [1654] = 1486, - [1655] = 1485, - [1656] = 1656, - [1657] = 1499, - [1658] = 1291, - [1659] = 1323, - [1660] = 398, - [1661] = 1651, - [1662] = 1244, - [1663] = 1170, - [1664] = 1484, - [1665] = 1434, - [1666] = 1666, - [1667] = 389, - [1668] = 1499, - [1669] = 381, - [1670] = 1483, - [1671] = 150, - [1672] = 374, - [1673] = 1256, - [1674] = 1648, - [1675] = 1675, - [1676] = 1493, - [1677] = 1500, - [1678] = 1500, - [1679] = 1502, - [1680] = 1257, - [1681] = 1656, - [1682] = 1642, - [1683] = 1491, - [1684] = 1644, - [1685] = 1409, - [1686] = 1643, - [1687] = 1687, - [1688] = 1688, - [1689] = 1689, - [1690] = 1643, - [1691] = 1642, - [1692] = 1692, - [1693] = 1493, - [1694] = 1484, - [1695] = 1307, - [1696] = 1696, - [1697] = 1200, - [1698] = 1319, - [1699] = 1485, - [1700] = 1347, - [1701] = 1164, - [1702] = 1486, - [1703] = 1350, - [1704] = 1352, - [1705] = 1167, - [1706] = 1354, - [1707] = 1499, - [1708] = 1357, - [1709] = 1175, - [1710] = 1643, - [1711] = 1646, - [1712] = 1712, - [1713] = 1713, - [1714] = 1646, - [1715] = 1487, - [1716] = 1169, - [1717] = 1717, - [1718] = 185, - [1719] = 1498, - [1720] = 1646, - [1721] = 1503, - [1722] = 1488, - [1723] = 1489, - [1724] = 1642, - [1725] = 180, - [1726] = 1351, - [1727] = 1494, - [1728] = 1492, - [1729] = 1126, - [1730] = 1128, - [1731] = 1131, - [1732] = 1491, + [1629] = 1495, + [1630] = 1485, + [1631] = 347, + [1632] = 1628, + [1633] = 1070, + [1634] = 1487, + [1635] = 1475, + [1636] = 1636, + [1637] = 1192, + [1638] = 1638, + [1639] = 1215, + [1640] = 1226, + [1641] = 1241, + [1642] = 1286, + [1643] = 1323, + [1644] = 1337, + [1645] = 1493, + [1646] = 1502, + [1647] = 1386, + [1648] = 1489, + [1649] = 1499, + [1650] = 1199, + [1651] = 1208, + [1652] = 1209, + [1653] = 1217, + [1654] = 1654, + [1655] = 1308, + [1656] = 1310, + [1657] = 1322, + [1658] = 1327, + [1659] = 1353, + [1660] = 1660, + [1661] = 1295, + [1662] = 1214, + [1663] = 1383, + [1664] = 1221, + [1665] = 1251, + [1666] = 1237, + [1667] = 1309, + [1668] = 1183, + [1669] = 1186, + [1670] = 1189, + [1671] = 1671, + [1672] = 1249, + [1673] = 1250, + [1674] = 1674, + [1675] = 1278, + [1676] = 1299, + [1677] = 1300, + [1678] = 1304, + [1679] = 1320, + [1680] = 1324, + [1681] = 1325, + [1682] = 1682, + [1683] = 1384, + [1684] = 1444, + [1685] = 1460, + [1686] = 1257, + [1687] = 1262, + [1688] = 1264, + [1689] = 1193, + [1690] = 1690, + [1691] = 1274, + [1692] = 1369, + [1693] = 1219, + [1694] = 1220, + [1695] = 1695, + [1696] = 1202, + [1697] = 1697, + [1698] = 1698, + [1699] = 1699, + [1700] = 1439, + [1701] = 1451, + [1702] = 1636, + [1703] = 1496, + [1704] = 1704, + [1705] = 1222, + [1706] = 1225, + [1707] = 1008, + [1708] = 1293, + [1709] = 1297, + [1710] = 1483, + [1711] = 1505, + [1712] = 1495, + [1713] = 1485, + [1714] = 1486, + [1715] = 1488, + [1716] = 1490, + [1717] = 1500, + [1718] = 1501, + [1719] = 1494, + [1720] = 1503, + [1721] = 1497, + [1722] = 1482, + [1723] = 1207, + [1724] = 1211, + [1725] = 1223, + [1726] = 1224, + [1727] = 1487, + [1728] = 1291, + [1729] = 1294, + [1730] = 1296, + [1731] = 1298, + [1732] = 1305, [1733] = 1733, - [1734] = 1136, - [1735] = 1413, - [1736] = 1138, - [1737] = 1494, - [1738] = 1738, - [1739] = 429, - [1740] = 1502, - [1741] = 1144, - [1742] = 1255, - [1743] = 1497, - [1744] = 1644, - [1745] = 1254, - [1746] = 1455, - [1747] = 1717, - [1748] = 1392, - [1749] = 1469, - [1750] = 1470, - [1751] = 393, - [1752] = 395, - [1753] = 1249, - [1754] = 1656, - [1755] = 1503, - [1756] = 1642, - [1757] = 1482, - [1758] = 1644, - [1759] = 1398, - [1760] = 1760, - [1761] = 1412, - [1762] = 1762, - [1763] = 1318, - [1764] = 1490, - [1765] = 1449, - [1766] = 1488, - [1767] = 1439, - [1768] = 1106, - [1769] = 1433, - [1770] = 1174, - [1771] = 1426, - [1772] = 1322, - [1773] = 1646, - [1774] = 1643, - [1775] = 1425, - [1776] = 1172, - [1777] = 1777, - [1778] = 1778, - [1779] = 1171, - [1780] = 1166, - [1781] = 378, - [1782] = 1149, - [1783] = 1399, - [1784] = 394, - [1785] = 386, - [1786] = 1497, - [1787] = 380, - [1788] = 373, - [1789] = 1778, - [1790] = 1415, - [1791] = 1237, - [1792] = 397, - [1793] = 1656, - [1794] = 1794, - [1795] = 1483, - [1796] = 1242, - [1797] = 1008, - [1798] = 164, - [1799] = 1492, - [1800] = 155, - [1801] = 399, - [1802] = 385, - [1803] = 1168, - [1804] = 1503, - [1805] = 1794, - [1806] = 376, - [1807] = 1760, - [1808] = 147, - [1809] = 1324, - [1810] = 1422, - [1811] = 1165, - [1812] = 1483, - [1813] = 145, + [1734] = 1382, + [1735] = 1385, + [1736] = 1388, + [1737] = 1389, + [1738] = 1391, + [1739] = 1449, + [1740] = 1740, + [1741] = 429, + [1742] = 389, + [1743] = 382, + [1744] = 384, + [1745] = 392, + [1746] = 1496, + [1747] = 1228, + [1748] = 1748, + [1749] = 1483, + [1750] = 388, + [1751] = 1505, + [1752] = 399, + [1753] = 1495, + [1754] = 1485, + [1755] = 1486, + [1756] = 1488, + [1757] = 1490, + [1758] = 1500, + [1759] = 1501, + [1760] = 1494, + [1761] = 1503, + [1762] = 1497, + [1763] = 1482, + [1764] = 1212, + [1765] = 1213, + [1766] = 385, + [1767] = 387, + [1768] = 1487, + [1769] = 393, + [1770] = 1292, + [1771] = 1210, + [1772] = 376, + [1773] = 377, + [1774] = 379, + [1775] = 383, + [1776] = 386, + [1777] = 394, + [1778] = 156, + [1779] = 167, + [1780] = 380, + [1781] = 138, + [1782] = 1782, + [1783] = 1496, + [1784] = 141, + [1785] = 397, + [1786] = 1786, + [1787] = 1505, + [1788] = 142, + [1789] = 372, + [1790] = 1487, + [1791] = 180, + [1792] = 181, + [1793] = 1793, + [1794] = 1748, + [1795] = 1795, + [1796] = 1740, + [1797] = 1660, + [1798] = 1798, + [1799] = 1799, + [1800] = 1800, + [1801] = 1654, + [1802] = 1674, + [1803] = 1682, + [1804] = 1695, + [1805] = 1636, + [1806] = 1800, + [1807] = 1704, + [1808] = 1782, + [1809] = 1809, + [1810] = 1748, + [1811] = 1493, + [1812] = 1502, + [1813] = 1740, [1814] = 1489, - [1815] = 1644, - [1816] = 1220, - [1817] = 1325, - [1818] = 1490, - [1819] = 1093, - [1820] = 1223, - [1821] = 391, - [1822] = 1644, - [1823] = 1252, - [1824] = 1646, - [1825] = 1277, - [1826] = 1688, - [1827] = 1762, - [1828] = 1389, - [1829] = 1417, - [1830] = 1644, - [1831] = 1387, - [1832] = 1224, - [1833] = 1643, - [1834] = 1646, - [1835] = 1835, - [1836] = 1447, - [1837] = 1642, - [1838] = 1440, - [1839] = 377, - [1840] = 1840, - [1841] = 1482, + [1815] = 1499, + [1816] = 1660, + [1817] = 1817, + [1818] = 1818, + [1819] = 1674, + [1820] = 1636, + [1821] = 1748, + [1822] = 1740, + [1823] = 1660, + [1824] = 1674, + [1825] = 1809, + [1826] = 1748, + [1827] = 1660, + [1828] = 1674, + [1829] = 1829, + [1830] = 1636, + [1831] = 1748, + [1832] = 1660, + [1833] = 1674, + [1834] = 1636, + [1835] = 1748, + [1836] = 1660, + [1837] = 1674, + [1838] = 1636, + [1839] = 1839, + [1840] = 1793, + [1841] = 381, [1842] = 1842, [1843] = 1843, [1844] = 1844, [1845] = 1845, [1846] = 1846, - [1847] = 1738, + [1847] = 1638, [1848] = 1848, [1849] = 1849, [1850] = 1850, - [1851] = 1851, + [1851] = 1850, [1852] = 1852, [1853] = 1853, - [1854] = 1852, + [1854] = 1854, [1855] = 1855, - [1856] = 1849, - [1857] = 1857, + [1856] = 1856, + [1857] = 1852, [1858] = 1858, - [1859] = 1687, - [1860] = 1860, - [1861] = 1851, + [1859] = 1849, + [1860] = 1855, + [1861] = 1861, [1862] = 1862, - [1863] = 1846, - [1864] = 1843, - [1865] = 1855, - [1866] = 1866, - [1867] = 1867, - [1868] = 1857, - [1869] = 1860, - [1870] = 1696, - [1871] = 1862, - [1872] = 1866, - [1873] = 1866, - [1874] = 1845, - [1875] = 1875, + [1863] = 1842, + [1864] = 1864, + [1865] = 1690, + [1866] = 1856, + [1867] = 1856, + [1868] = 1858, + [1869] = 1861, + [1870] = 1864, + [1871] = 1854, + [1872] = 1862, + [1873] = 1873, + [1874] = 1874, + [1875] = 1699, [1876] = 1876, [1877] = 1877, - [1878] = 1877, - [1879] = 1876, - [1880] = 1880, + [1878] = 1876, + [1879] = 1879, + [1880] = 1877, [1881] = 1881, - [1882] = 1882, - [1883] = 1882, + [1882] = 1881, + [1883] = 1883, [1884] = 1884, [1885] = 1885, - [1886] = 1885, - [1887] = 1881, - [1888] = 1884, + [1886] = 1884, + [1887] = 1885, + [1888] = 1883, [1889] = 1889, [1890] = 1890, [1891] = 1891, [1892] = 1892, [1893] = 1893, - [1894] = 1893, + [1894] = 1892, [1895] = 1892, - [1896] = 1892, + [1896] = 1893, [1897] = 1893, - [1898] = 1892, - [1899] = 1892, + [1898] = 1893, + [1899] = 1893, [1900] = 1900, [1901] = 1900, - [1902] = 147, - [1903] = 150, - [1904] = 1011, - [1905] = 1018, - [1906] = 1014, - [1907] = 1013, - [1908] = 1023, - [1909] = 1017, + [1902] = 142, + [1903] = 1011, + [1904] = 138, + [1905] = 1013, + [1906] = 1016, + [1907] = 1012, + [1908] = 1024, + [1909] = 1031, [1910] = 1910, - [1911] = 1012, - [1912] = 1028, - [1913] = 1018, - [1914] = 1020, - [1915] = 1021, - [1916] = 1026, - [1917] = 1030, + [1911] = 1014, + [1912] = 1017, + [1913] = 1024, + [1914] = 1022, + [1915] = 1016, + [1916] = 1021, + [1917] = 1029, [1918] = 1017, - [1919] = 1023, + [1919] = 1031, [1920] = 1028, - [1921] = 1032, - [1922] = 1035, - [1923] = 1052, - [1924] = 1049, - [1925] = 1057, - [1926] = 1077, - [1927] = 1033, - [1928] = 1083, - [1929] = 1036, - [1930] = 1930, - [1931] = 1931, - [1932] = 1931, - [1933] = 1068, - [1934] = 1067, - [1935] = 1066, + [1921] = 1033, + [1922] = 1058, + [1923] = 1059, + [1924] = 1036, + [1925] = 1034, + [1926] = 1064, + [1927] = 1047, + [1928] = 1072, + [1929] = 1042, + [1930] = 1048, + [1931] = 1071, + [1932] = 1932, + [1933] = 1075, + [1934] = 1932, + [1935] = 1935, [1936] = 1936, - [1937] = 180, - [1938] = 1936, - [1939] = 1060, - [1940] = 1940, - [1941] = 1063, - [1942] = 185, - [1943] = 374, - [1944] = 1061, - [1945] = 1940, - [1946] = 1056, - [1947] = 1046, - [1948] = 1059, - [1949] = 1072, - [1950] = 1520, - [1951] = 1073, - [1952] = 1051, - [1953] = 1055, - [1954] = 1054, - [1955] = 1078, - [1956] = 1047, - [1957] = 1050, - [1958] = 390, - [1959] = 1053, - [1960] = 1084, - [1961] = 1940, - [1962] = 1074, - [1963] = 1064, - [1964] = 1964, - [1965] = 1165, - [1966] = 1318, - [1967] = 1168, - [1968] = 1169, - [1969] = 1969, - [1970] = 1171, - [1971] = 1323, - [1972] = 1322, - [1973] = 1254, - [1974] = 1936, - [1975] = 1093, - [1976] = 1389, - [1977] = 1538, - [1978] = 1978, - [1979] = 1166, - [1980] = 1149, - [1981] = 1244, - [1982] = 1539, - [1983] = 1172, - [1984] = 1325, - [1985] = 1170, - [1986] = 1324, - [1987] = 1175, - [1988] = 1257, - [1989] = 1174, - [1990] = 1256, - [1991] = 1167, - [1992] = 1528, - [1993] = 1409, - [1994] = 1387, - [1995] = 1255, - [1996] = 1243, - [1997] = 145, + [1937] = 1936, + [1938] = 1076, + [1939] = 180, + [1940] = 1070, + [1941] = 1085, + [1942] = 1942, + [1943] = 181, + [1944] = 1051, + [1945] = 1087, + [1946] = 1061, + [1947] = 1086, + [1948] = 1067, + [1949] = 1078, + [1950] = 1066, + [1951] = 1088, + [1952] = 1090, + [1953] = 1044, + [1954] = 1053, + [1955] = 1942, + [1956] = 1081, + [1957] = 397, + [1958] = 1942, + [1959] = 372, + [1960] = 1083, + [1961] = 1961, + [1962] = 1049, + [1963] = 1060, + [1964] = 1531, + [1965] = 1211, + [1966] = 1293, + [1967] = 1385, + [1968] = 1292, + [1969] = 1222, + [1970] = 1291, + [1971] = 1225, + [1972] = 1391, + [1973] = 1207, + [1974] = 1540, + [1975] = 1212, + [1976] = 1213, + [1977] = 1539, + [1978] = 1451, + [1979] = 1296, + [1980] = 1541, + [1981] = 1936, + [1982] = 1982, + [1983] = 1228, + [1984] = 1297, + [1985] = 1298, + [1986] = 1382, + [1987] = 1987, + [1988] = 1439, + [1989] = 1294, + [1990] = 1223, + [1991] = 1224, + [1992] = 1449, + [1993] = 1388, + [1994] = 1305, + [1995] = 1389, + [1996] = 1210, + [1997] = 167, [1998] = 1998, [1999] = 1999, [2000] = 2000, - [2001] = 155, - [2002] = 1023, - [2003] = 1018, - [2004] = 1018, - [2005] = 1018, - [2006] = 1017, - [2007] = 2007, - [2008] = 2008, - [2009] = 1023, - [2010] = 1028, - [2011] = 1017, - [2012] = 1910, - [2013] = 1023, - [2014] = 1028, - [2015] = 1028, - [2016] = 1017, - [2017] = 2017, + [2001] = 141, + [2002] = 1031, + [2003] = 1016, + [2004] = 2004, + [2005] = 2005, + [2006] = 1024, + [2007] = 1910, + [2008] = 1017, + [2009] = 1031, + [2010] = 1017, + [2011] = 2011, + [2012] = 1024, + [2013] = 1016, + [2014] = 1031, + [2015] = 1017, + [2016] = 1024, + [2017] = 1016, [2018] = 2018, [2019] = 2019, - [2020] = 2019, + [2020] = 2020, [2021] = 2021, - [2022] = 2018, + [2022] = 2022, [2023] = 2021, - [2024] = 2024, + [2024] = 2022, [2025] = 2025, [2026] = 2026, [2027] = 2027, - [2028] = 2027, - [2029] = 2029, - [2030] = 2026, - [2031] = 2024, - [2032] = 2032, - [2033] = 2025, + [2028] = 2019, + [2029] = 2020, + [2030] = 2025, + [2031] = 2031, + [2032] = 2027, + [2033] = 2031, [2034] = 2034, [2035] = 2035, - [2036] = 1023, - [2037] = 249, - [2038] = 1028, - [2039] = 2039, - [2040] = 2040, + [2036] = 2036, + [2037] = 2037, + [2038] = 2038, + [2039] = 338, + [2040] = 1016, [2041] = 2041, [2042] = 2042, - [2043] = 353, + [2043] = 2043, [2044] = 2044, - [2045] = 2045, - [2046] = 2040, - [2047] = 326, - [2048] = 335, - [2049] = 2049, + [2045] = 1024, + [2046] = 2046, + [2047] = 336, + [2048] = 2048, + [2049] = 2042, [2050] = 2050, [2051] = 2051, [2052] = 2052, - [2053] = 2053, - [2054] = 2035, - [2055] = 2055, - [2056] = 2056, - [2057] = 1930, - [2058] = 2042, - [2059] = 2059, - [2060] = 360, - [2061] = 2039, - [2062] = 2059, - [2063] = 1018, + [2053] = 323, + [2054] = 2054, + [2055] = 2052, + [2056] = 347, + [2057] = 2051, + [2058] = 1935, + [2059] = 261, + [2060] = 2060, + [2061] = 2061, + [2062] = 2062, + [2063] = 2063, [2064] = 2064, [2065] = 2065, - [2066] = 2066, + [2066] = 1031, [2067] = 1017, - [2068] = 2068, - [2069] = 2041, - [2070] = 2051, - [2071] = 2071, - [2072] = 2072, - [2073] = 2052, - [2074] = 2074, - [2075] = 2064, + [2068] = 2064, + [2069] = 2069, + [2070] = 2034, + [2071] = 2050, + [2072] = 2065, + [2073] = 2037, + [2074] = 2044, + [2075] = 2075, [2076] = 2076, [2077] = 2077, [2078] = 2078, [2079] = 2079, [2080] = 2080, [2081] = 2081, - [2082] = 2081, + [2082] = 2082, [2083] = 2083, [2084] = 2084, [2085] = 2085, @@ -5944,147 +5958,147 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2090] = 2090, [2091] = 2091, [2092] = 2092, - [2093] = 2078, + [2093] = 2093, [2094] = 2094, [2095] = 2095, [2096] = 2096, [2097] = 2097, [2098] = 2098, [2099] = 2099, - [2100] = 2100, + [2100] = 380, [2101] = 2101, [2102] = 2102, [2103] = 2103, [2104] = 2104, - [2105] = 399, + [2105] = 2105, [2106] = 2106, [2107] = 2107, - [2108] = 2108, + [2108] = 2089, [2109] = 2109, [2110] = 2110, - [2111] = 2111, + [2111] = 2087, [2112] = 2112, - [2113] = 2077, + [2113] = 1961, [2114] = 2114, [2115] = 2115, - [2116] = 2116, - [2117] = 2117, - [2118] = 1930, - [2119] = 2119, - [2120] = 2120, + [2116] = 2090, + [2117] = 1935, + [2118] = 2118, + [2119] = 2118, + [2120] = 1935, [2121] = 2121, - [2122] = 2106, - [2123] = 2078, - [2124] = 1930, - [2125] = 2076, - [2126] = 1964, + [2122] = 2122, + [2123] = 2105, + [2124] = 2118, + [2125] = 2125, + [2126] = 2126, [2127] = 2127, - [2128] = 2128, + [2128] = 1042, [2129] = 2129, - [2130] = 2130, + [2130] = 1961, [2131] = 2131, [2132] = 2132, [2133] = 2133, - [2134] = 2134, + [2134] = 1034, [2135] = 2135, - [2136] = 1964, - [2137] = 1964, - [2138] = 2138, + [2136] = 2135, + [2137] = 2137, + [2138] = 1036, [2139] = 2139, [2140] = 2140, [2141] = 2132, - [2142] = 2139, - [2143] = 2135, + [2142] = 2142, + [2143] = 2139, [2144] = 2144, - [2145] = 2145, - [2146] = 2129, + [2145] = 2144, + [2146] = 2146, [2147] = 2147, - [2148] = 2130, - [2149] = 2149, - [2150] = 2129, - [2151] = 2144, - [2152] = 1930, - [2153] = 2138, - [2154] = 2147, - [2155] = 2149, - [2156] = 1033, - [2157] = 2157, + [2148] = 2148, + [2149] = 1033, + [2150] = 1935, + [2151] = 2137, + [2152] = 2135, + [2153] = 2153, + [2154] = 2154, + [2155] = 2155, + [2156] = 2156, + [2157] = 1961, [2158] = 2158, - [2159] = 2144, - [2160] = 2145, - [2161] = 2161, - [2162] = 2162, - [2163] = 2140, - [2164] = 2161, - [2165] = 1035, - [2166] = 2166, - [2167] = 1032, + [2159] = 2159, + [2160] = 2154, + [2161] = 2159, + [2162] = 2137, + [2163] = 2163, + [2164] = 2164, + [2165] = 2147, + [2166] = 2158, + [2167] = 2164, [2168] = 2168, - [2169] = 2169, - [2170] = 2170, - [2171] = 1036, - [2172] = 2157, - [2173] = 2158, - [2174] = 2170, - [2175] = 2162, + [2169] = 2148, + [2170] = 2140, + [2171] = 2142, + [2172] = 2131, + [2173] = 2173, + [2174] = 2168, + [2175] = 2133, [2176] = 2176, [2177] = 2177, [2178] = 2178, [2179] = 2179, [2180] = 2180, - [2181] = 2180, + [2181] = 2181, [2182] = 2182, [2183] = 2183, [2184] = 2184, - [2185] = 2178, + [2185] = 2185, [2186] = 2186, [2187] = 2187, - [2188] = 2188, + [2188] = 2181, [2189] = 2189, - [2190] = 2190, + [2190] = 2185, [2191] = 2191, - [2192] = 2192, - [2193] = 2177, + [2192] = 2184, + [2193] = 2183, [2194] = 2194, [2195] = 2195, [2196] = 2196, - [2197] = 2179, - [2198] = 2189, - [2199] = 2199, - [2200] = 2200, - [2201] = 1964, - [2202] = 2202, + [2197] = 2196, + [2198] = 2198, + [2199] = 2176, + [2200] = 2198, + [2201] = 2201, + [2202] = 2194, [2203] = 2203, [2204] = 2204, - [2205] = 2182, - [2206] = 2199, + [2205] = 2205, + [2206] = 2206, [2207] = 2207, [2208] = 2208, - [2209] = 2196, - [2210] = 2176, + [2209] = 2209, + [2210] = 2210, [2211] = 2211, - [2212] = 2207, - [2213] = 2200, + [2212] = 2212, + [2213] = 2213, [2214] = 2214, - [2215] = 2187, - [2216] = 2192, - [2217] = 2217, - [2218] = 2218, + [2215] = 2180, + [2216] = 1961, + [2217] = 2204, + [2218] = 2189, [2219] = 2219, - [2220] = 2211, + [2220] = 2220, [2221] = 2221, - [2222] = 2202, + [2222] = 2211, [2223] = 2223, - [2224] = 2224, - [2225] = 2225, - [2226] = 2191, - [2227] = 2227, - [2228] = 2184, - [2229] = 2217, - [2230] = 2195, - [2231] = 2186, + [2224] = 2195, + [2225] = 2186, + [2226] = 2187, + [2227] = 2219, + [2228] = 2191, + [2229] = 2214, + [2230] = 2221, + [2231] = 2182, [2232] = 2232, - [2233] = 2233, + [2233] = 1999, [2234] = 2234, [2235] = 2235, [2236] = 2236, @@ -6097,50 +6111,50 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2243] = 2243, [2244] = 2244, [2245] = 2245, - [2246] = 2232, - [2247] = 2247, - [2248] = 2248, + [2246] = 2246, + [2247] = 2243, + [2248] = 2246, [2249] = 2249, [2250] = 2250, - [2251] = 2242, + [2251] = 2251, [2252] = 2252, - [2253] = 2249, + [2253] = 2253, [2254] = 2254, - [2255] = 2000, + [2255] = 2239, [2256] = 2256, - [2257] = 2247, - [2258] = 2258, + [2257] = 2257, + [2258] = 2252, [2259] = 2259, - [2260] = 2233, - [2261] = 2261, - [2262] = 2237, - [2263] = 2263, - [2264] = 2264, - [2265] = 2265, + [2260] = 2251, + [2261] = 2249, + [2262] = 2250, + [2263] = 2253, + [2264] = 2235, + [2265] = 2237, [2266] = 2266, [2267] = 2267, - [2268] = 2265, - [2269] = 2261, + [2268] = 2268, + [2269] = 2269, [2270] = 2270, [2271] = 2271, [2272] = 2272, - [2273] = 2263, - [2274] = 2270, - [2275] = 2264, - [2276] = 2276, - [2277] = 2236, - [2278] = 2250, - [2279] = 2243, - [2280] = 2272, - [2281] = 2267, - [2282] = 2252, - [2283] = 2254, - [2284] = 2266, - [2285] = 2242, - [2286] = 2276, - [2287] = 2238, - [2288] = 2271, - [2289] = 2289, + [2273] = 2241, + [2274] = 2242, + [2275] = 2244, + [2276] = 2245, + [2277] = 2254, + [2278] = 2256, + [2279] = 2259, + [2280] = 2280, + [2281] = 2281, + [2282] = 2232, + [2283] = 2283, + [2284] = 2281, + [2285] = 2232, + [2286] = 2286, + [2287] = 2272, + [2288] = 2266, + [2289] = 2280, [2290] = 2290, [2291] = 2291, [2292] = 2292, @@ -6150,96 +6164,96 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2296] = 2296, [2297] = 2297, [2298] = 2298, - [2299] = 2299, + [2299] = 2004, [2300] = 2300, - [2301] = 2296, - [2302] = 2302, - [2303] = 2293, - [2304] = 2291, + [2301] = 2301, + [2302] = 2292, + [2303] = 2303, + [2304] = 2304, [2305] = 2305, - [2306] = 2294, - [2307] = 2295, + [2306] = 2298, + [2307] = 2307, [2308] = 2308, - [2309] = 2017, + [2309] = 2309, [2310] = 2310, [2311] = 2311, - [2312] = 2310, - [2313] = 2313, + [2312] = 2307, + [2313] = 2293, [2314] = 2314, - [2315] = 2315, + [2315] = 2011, [2316] = 2316, - [2317] = 2297, + [2317] = 2295, [2318] = 2318, [2319] = 2319, - [2320] = 2308, - [2321] = 2316, + [2320] = 2320, + [2321] = 2321, [2322] = 2322, - [2323] = 2315, + [2323] = 2323, [2324] = 2324, [2325] = 2325, [2326] = 2326, - [2327] = 2327, - [2328] = 2328, - [2329] = 2329, - [2330] = 2330, - [2331] = 2331, - [2332] = 2298, + [2327] = 2310, + [2328] = 2309, + [2329] = 2296, + [2330] = 2316, + [2331] = 2318, + [2332] = 2332, [2333] = 2333, - [2334] = 2299, + [2334] = 2334, [2335] = 2335, - [2336] = 2336, + [2336] = 2292, [2337] = 2337, - [2338] = 2331, - [2339] = 2319, - [2340] = 2331, - [2341] = 2325, + [2338] = 2338, + [2339] = 2339, + [2340] = 2340, + [2341] = 2341, [2342] = 2342, - [2343] = 2289, - [2344] = 2302, - [2345] = 2345, - [2346] = 2346, - [2347] = 2324, - [2348] = 2337, - [2349] = 2349, - [2350] = 155, - [2351] = 2351, - [2352] = 2311, - [2353] = 2305, - [2354] = 2342, - [2355] = 2318, - [2356] = 2356, - [2357] = 147, - [2358] = 2308, - [2359] = 2008, - [2360] = 2322, - [2361] = 2316, - [2362] = 2007, - [2363] = 2300, - [2364] = 145, - [2365] = 2292, - [2366] = 2315, - [2367] = 2367, - [2368] = 2368, - [2369] = 2349, - [2370] = 2346, - [2371] = 150, - [2372] = 2372, - [2373] = 2336, - [2374] = 2372, - [2375] = 2375, - [2376] = 2376, - [2377] = 2290, - [2378] = 2375, - [2379] = 2329, - [2380] = 2342, - [2381] = 2342, - [2382] = 2356, - [2383] = 2328, - [2384] = 2327, - [2385] = 2333, - [2386] = 2376, - [2387] = 2326, - [2388] = 2388, + [2343] = 2303, + [2344] = 2311, + [2345] = 2300, + [2346] = 2301, + [2347] = 2308, + [2348] = 2305, + [2349] = 2297, + [2350] = 2321, + [2351] = 2290, + [2352] = 2300, + [2353] = 2301, + [2354] = 2305, + [2355] = 2323, + [2356] = 2311, + [2357] = 2324, + [2358] = 2338, + [2359] = 2339, + [2360] = 167, + [2361] = 138, + [2362] = 141, + [2363] = 142, + [2364] = 2364, + [2365] = 2365, + [2366] = 2332, + [2367] = 2333, + [2368] = 2322, + [2369] = 2314, + [2370] = 2334, + [2371] = 2371, + [2372] = 2304, + [2373] = 2373, + [2374] = 2342, + [2375] = 2364, + [2376] = 2335, + [2377] = 2305, + [2378] = 2291, + [2379] = 2379, + [2380] = 2380, + [2381] = 2381, + [2382] = 2341, + [2383] = 2294, + [2384] = 2379, + [2385] = 2319, + [2386] = 2380, + [2387] = 2005, + [2388] = 2325, [2389] = 2389, [2390] = 2390, [2391] = 2391, @@ -6255,7 +6269,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2401] = 2401, [2402] = 2402, [2403] = 2403, - [2404] = 2390, + [2404] = 2404, [2405] = 2405, [2406] = 2406, [2407] = 2407, @@ -6263,88 +6277,88 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2409] = 2409, [2410] = 2410, [2411] = 2411, - [2412] = 2412, + [2412] = 2411, [2413] = 2413, - [2414] = 2414, + [2414] = 2394, [2415] = 2415, - [2416] = 2407, - [2417] = 2417, - [2418] = 2418, - [2419] = 2419, + [2416] = 1272, + [2417] = 1273, + [2418] = 1275, + [2419] = 2413, [2420] = 2420, - [2421] = 2393, - [2422] = 2422, - [2423] = 2393, + [2421] = 2407, + [2422] = 2405, + [2423] = 2423, [2424] = 2424, - [2425] = 2422, - [2426] = 2401, + [2425] = 2425, + [2426] = 2425, [2427] = 2427, [2428] = 2428, [2429] = 2429, - [2430] = 2400, - [2431] = 2406, - [2432] = 2412, - [2433] = 2417, + [2430] = 2427, + [2431] = 2389, + [2432] = 2404, + [2433] = 2433, [2434] = 2434, - [2435] = 2396, - [2436] = 2417, - [2437] = 2401, + [2435] = 2435, + [2436] = 2401, + [2437] = 2398, [2438] = 2438, [2439] = 2439, [2440] = 2440, - [2441] = 2441, + [2441] = 2425, [2442] = 2442, - [2443] = 2441, - [2444] = 2389, - [2445] = 2428, + [2443] = 2443, + [2444] = 2444, + [2445] = 2420, [2446] = 2446, - [2447] = 2447, - [2448] = 1092, - [2449] = 2449, - [2450] = 1316, - [2451] = 2429, - [2452] = 2452, - [2453] = 2453, - [2454] = 2454, - [2455] = 1314, - [2456] = 2417, - [2457] = 2457, + [2447] = 2390, + [2448] = 1229, + [2449] = 1230, + [2450] = 2402, + [2451] = 2415, + [2452] = 1365, + [2453] = 1366, + [2454] = 1367, + [2455] = 1260, + [2456] = 1261, + [2457] = 2408, [2458] = 2458, - [2459] = 2459, - [2460] = 2391, + [2459] = 2399, + [2460] = 2460, [2461] = 2461, - [2462] = 1381, - [2463] = 2415, - [2464] = 1346, - [2465] = 2465, - [2466] = 2419, + [2462] = 2462, + [2463] = 1008, + [2464] = 2464, + [2465] = 2409, + [2466] = 2434, [2467] = 2467, - [2468] = 2458, - [2469] = 1266, + [2468] = 2433, + [2469] = 2469, [2470] = 2470, - [2471] = 2389, - [2472] = 2400, - [2473] = 2473, - [2474] = 2419, - [2475] = 1245, - [2476] = 1008, + [2471] = 2427, + [2472] = 2472, + [2473] = 2433, + [2474] = 2410, + [2475] = 2407, + [2476] = 2476, [2477] = 2477, - [2478] = 2422, + [2478] = 2478, [2479] = 2479, - [2480] = 2480, - [2481] = 1321, - [2482] = 2410, - [2483] = 2399, - [2484] = 2484, - [2485] = 2442, - [2486] = 2403, + [2480] = 2424, + [2481] = 2481, + [2482] = 2427, + [2483] = 2483, + [2484] = 2467, + [2485] = 2393, + [2486] = 2486, [2487] = 2424, - [2488] = 1326, - [2489] = 2467, - [2490] = 2490, - [2491] = 2473, - [2492] = 2447, - [2493] = 1270, + [2488] = 2488, + [2489] = 2415, + [2490] = 2486, + [2491] = 2405, + [2492] = 2397, + [2493] = 2493, [2494] = 2494, [2495] = 2495, [2496] = 2496, @@ -6355,7 +6369,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2501] = 2501, [2502] = 2502, [2503] = 2503, - [2504] = 2504, + [2504] = 2495, [2505] = 2505, [2506] = 2506, [2507] = 2507, @@ -6366,316 +6380,316 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2512] = 2512, [2513] = 2513, [2514] = 2514, - [2515] = 2515, + [2515] = 2514, [2516] = 2516, [2517] = 2517, - [2518] = 2511, - [2519] = 2504, + [2518] = 2518, + [2519] = 2518, [2520] = 2496, - [2521] = 2521, - [2522] = 2522, + [2521] = 2497, + [2522] = 2498, [2523] = 2523, [2524] = 2524, - [2525] = 2509, + [2525] = 2525, [2526] = 2526, - [2527] = 151, + [2527] = 2527, [2528] = 2528, - [2529] = 2529, + [2529] = 2527, [2530] = 2530, - [2531] = 2515, + [2531] = 2531, [2532] = 2532, [2533] = 2533, - [2534] = 2534, - [2535] = 2535, + [2534] = 2531, + [2535] = 2528, [2536] = 2536, - [2537] = 2537, + [2537] = 2527, [2538] = 2538, - [2539] = 2539, + [2539] = 2503, [2540] = 2540, [2541] = 2541, [2542] = 2542, - [2543] = 2543, - [2544] = 2544, + [2543] = 2536, + [2544] = 2542, [2545] = 2545, [2546] = 2546, [2547] = 2547, [2548] = 2548, [2549] = 2549, [2550] = 2550, - [2551] = 2494, - [2552] = 2534, + [2551] = 2551, + [2552] = 139, [2553] = 2553, - [2554] = 162, - [2555] = 2555, + [2554] = 2554, + [2555] = 2554, [2556] = 2556, [2557] = 2557, [2558] = 2558, [2559] = 2559, [2560] = 2560, - [2561] = 2504, - [2562] = 2562, - [2563] = 2524, + [2561] = 2561, + [2562] = 2513, + [2563] = 2563, [2564] = 2564, [2565] = 2565, - [2566] = 2566, + [2566] = 2545, [2567] = 2567, [2568] = 2568, [2569] = 2569, - [2570] = 2570, - [2571] = 2571, - [2572] = 2528, - [2573] = 2573, - [2574] = 2574, + [2570] = 2523, + [2571] = 2530, + [2572] = 2505, + [2573] = 2547, + [2574] = 2560, [2575] = 2575, - [2576] = 2576, - [2577] = 2577, - [2578] = 2578, + [2576] = 2506, + [2577] = 2559, + [2578] = 2509, [2579] = 2579, - [2580] = 2512, + [2580] = 2580, [2581] = 2581, - [2582] = 2510, + [2582] = 2567, [2583] = 2583, - [2584] = 2584, - [2585] = 2544, - [2586] = 2584, - [2587] = 2548, - [2588] = 2549, + [2584] = 2563, + [2585] = 2585, + [2586] = 2586, + [2587] = 2587, + [2588] = 2528, [2589] = 2589, - [2590] = 2499, - [2591] = 2498, - [2592] = 2497, - [2593] = 2593, - [2594] = 2594, - [2595] = 2595, - [2596] = 2506, - [2597] = 2597, + [2590] = 2590, + [2591] = 2591, + [2592] = 2592, + [2593] = 2548, + [2594] = 2495, + [2595] = 2496, + [2596] = 2497, + [2597] = 2498, [2598] = 2499, - [2599] = 2510, - [2600] = 2498, - [2601] = 2497, - [2602] = 2511, - [2603] = 2505, - [2604] = 2496, - [2605] = 2513, - [2606] = 2523, - [2607] = 2506, - [2608] = 2529, - [2609] = 2500, - [2610] = 2578, - [2611] = 2509, - [2612] = 2612, - [2613] = 2514, - [2614] = 2557, - [2615] = 2512, - [2616] = 2500, - [2617] = 2506, - [2618] = 2543, - [2619] = 2530, - [2620] = 2503, - [2621] = 2583, - [2622] = 2535, - [2623] = 2502, - [2624] = 2583, - [2625] = 2537, - [2626] = 2593, - [2627] = 2523, - [2628] = 2065, - [2629] = 2557, - [2630] = 2515, - [2631] = 2562, - [2632] = 2508, - [2633] = 2576, - [2634] = 2511, - [2635] = 2066, - [2636] = 2504, - [2637] = 2541, - [2638] = 2521, - [2639] = 2522, - [2640] = 2496, - [2641] = 2641, - [2642] = 2537, - [2643] = 2068, - [2644] = 2512, - [2645] = 2071, - [2646] = 2583, - [2647] = 2593, - [2648] = 2497, - [2649] = 2074, - [2650] = 2545, - [2651] = 2550, - [2652] = 2523, - [2653] = 2497, - [2654] = 2509, - [2655] = 2655, - [2656] = 2530, - [2657] = 2532, - [2658] = 2506, - [2659] = 2535, - [2660] = 2044, - [2661] = 2564, - [2662] = 2504, - [2663] = 2045, - [2664] = 2509, - [2665] = 2056, - [2666] = 2533, - [2667] = 2530, - [2668] = 2498, - [2669] = 2568, - [2670] = 2535, - [2671] = 2537, - [2672] = 2567, + [2599] = 2503, + [2600] = 2505, + [2601] = 2506, + [2602] = 2602, + [2603] = 2509, + [2604] = 2604, + [2605] = 2605, + [2606] = 2606, + [2607] = 2518, + [2608] = 2608, + [2609] = 2583, + [2610] = 2526, + [2611] = 2611, + [2612] = 2547, + [2613] = 2590, + [2614] = 2554, + [2615] = 2567, + [2616] = 2583, + [2617] = 2563, + [2618] = 2585, + [2619] = 2591, + [2620] = 2592, + [2621] = 2548, + [2622] = 2622, + [2623] = 2496, + [2624] = 2497, + [2625] = 2499, + [2626] = 2503, + [2627] = 2505, + [2628] = 2518, + [2629] = 2547, + [2630] = 2563, + [2631] = 2585, + [2632] = 2632, + [2633] = 2592, + [2634] = 2496, + [2635] = 2497, + [2636] = 2503, + [2637] = 2505, + [2638] = 2638, + [2639] = 2524, + [2640] = 2500, + [2641] = 2563, + [2642] = 2496, + [2643] = 2503, + [2644] = 2505, + [2645] = 2645, + [2646] = 2538, + [2647] = 2511, + [2648] = 2503, + [2649] = 2505, + [2650] = 2503, + [2651] = 2505, + [2652] = 2503, + [2653] = 2505, + [2654] = 2503, + [2655] = 2505, + [2656] = 2503, + [2657] = 2505, + [2658] = 2503, + [2659] = 2505, + [2660] = 2561, + [2661] = 2661, + [2662] = 2662, + [2663] = 2494, + [2664] = 2664, + [2665] = 2517, + [2666] = 2069, + [2667] = 2551, + [2668] = 2557, + [2669] = 2611, + [2670] = 2054, + [2671] = 2671, + [2672] = 2501, [2673] = 2673, - [2674] = 2571, + [2674] = 2525, [2675] = 2675, - [2676] = 2595, - [2677] = 2612, - [2678] = 2678, + [2676] = 2676, + [2677] = 2677, + [2678] = 2553, [2679] = 2679, [2680] = 2680, - [2681] = 2678, - [2682] = 2562, - [2683] = 2683, - [2684] = 2679, - [2685] = 2535, - [2686] = 2497, - [2687] = 2687, - [2688] = 2612, - [2689] = 2683, - [2690] = 2537, - [2691] = 2595, - [2692] = 2541, - [2693] = 2693, - [2694] = 2694, - [2695] = 2509, - [2696] = 2535, - [2697] = 2537, + [2681] = 2681, + [2682] = 2035, + [2683] = 2540, + [2684] = 2567, + [2685] = 2541, + [2686] = 2645, + [2687] = 2583, + [2688] = 2563, + [2689] = 2568, + [2690] = 2585, + [2691] = 2691, + [2692] = 143, + [2693] = 2512, + [2694] = 2673, + [2695] = 2676, + [2696] = 2036, + [2697] = 2585, [2698] = 2698, - [2699] = 2535, - [2700] = 2559, - [2701] = 2516, - [2702] = 2537, - [2703] = 2593, - [2704] = 2533, - [2705] = 2535, - [2706] = 2549, - [2707] = 2537, - [2708] = 2535, - [2709] = 2537, - [2710] = 2535, - [2711] = 2537, - [2712] = 2557, - [2713] = 2693, - [2714] = 2581, - [2715] = 2535, - [2716] = 2716, - [2717] = 2537, - [2718] = 2555, - [2719] = 2535, - [2720] = 2537, - [2721] = 2721, - [2722] = 2566, - [2723] = 2495, - [2724] = 2501, - [2725] = 2575, - [2726] = 2583, - [2727] = 2507, - [2728] = 2532, - [2729] = 2499, - [2730] = 2530, + [2699] = 2586, + [2700] = 2602, + [2701] = 2608, + [2702] = 2702, + [2703] = 2586, + [2704] = 2638, + [2705] = 2526, + [2706] = 2702, + [2707] = 2494, + [2708] = 2494, + [2709] = 2611, + [2710] = 2590, + [2711] = 2711, + [2712] = 2591, + [2713] = 2494, + [2714] = 2611, + [2715] = 2591, + [2716] = 2041, + [2717] = 2592, + [2718] = 2043, + [2719] = 2558, + [2720] = 2677, + [2721] = 2675, + [2722] = 2548, + [2723] = 2046, + [2724] = 2556, + [2725] = 2502, + [2726] = 2048, + [2727] = 2592, + [2728] = 2728, + [2729] = 2728, + [2730] = 2495, [2731] = 2731, [2732] = 2732, - [2733] = 2107, + [2733] = 2733, [2734] = 2734, [2735] = 2735, - [2736] = 2079, - [2737] = 2080, + [2736] = 2736, + [2737] = 2737, [2738] = 2738, - [2739] = 2099, - [2740] = 2114, + [2739] = 2739, + [2740] = 2740, [2741] = 2741, - [2742] = 2108, + [2742] = 2742, [2743] = 2743, [2744] = 2744, [2745] = 2745, [2746] = 2746, - [2747] = 2100, + [2747] = 2747, [2748] = 2748, - [2749] = 2095, + [2749] = 2749, [2750] = 2750, [2751] = 2751, [2752] = 2752, - [2753] = 2091, - [2754] = 2089, + [2753] = 2753, + [2754] = 2754, [2755] = 2755, - [2756] = 2756, + [2756] = 2102, [2757] = 2757, - [2758] = 2109, - [2759] = 2101, - [2760] = 2096, - [2761] = 2087, - [2762] = 2086, - [2763] = 2083, - [2764] = 2734, - [2765] = 2085, - [2766] = 2090, + [2758] = 2758, + [2759] = 2759, + [2760] = 2760, + [2761] = 2103, + [2762] = 2762, + [2763] = 2763, + [2764] = 2764, + [2765] = 2765, + [2766] = 2085, [2767] = 2767, [2768] = 2768, [2769] = 2769, [2770] = 2770, [2771] = 2771, - [2772] = 2771, - [2773] = 2769, - [2774] = 2092, - [2775] = 2094, + [2772] = 2772, + [2773] = 2773, + [2774] = 2774, + [2775] = 2775, [2776] = 2776, - [2777] = 2098, + [2777] = 2774, [2778] = 2778, - [2779] = 2121, - [2780] = 2757, - [2781] = 2781, + [2779] = 2779, + [2780] = 2734, + [2781] = 2735, [2782] = 2782, - [2783] = 2103, - [2784] = 2784, - [2785] = 2104, - [2786] = 2786, + [2783] = 2783, + [2784] = 2753, + [2785] = 2096, + [2786] = 2773, [2787] = 2787, - [2788] = 2768, - [2789] = 2088, + [2788] = 2788, + [2789] = 2789, [2790] = 2790, - [2791] = 2750, - [2792] = 2084, - [2793] = 2097, - [2794] = 2794, - [2795] = 2115, - [2796] = 2116, - [2797] = 2797, - [2798] = 164, + [2791] = 2791, + [2792] = 2792, + [2793] = 2793, + [2794] = 2104, + [2795] = 2742, + [2796] = 2796, + [2797] = 2107, + [2798] = 2751, [2799] = 2799, - [2800] = 2800, + [2800] = 2125, [2801] = 2801, - [2802] = 2802, - [2803] = 2803, - [2804] = 2120, + [2802] = 2094, + [2803] = 2121, + [2804] = 2804, [2805] = 2805, - [2806] = 2117, + [2806] = 2806, [2807] = 2807, - [2808] = 2112, + [2808] = 2808, [2809] = 2809, - [2810] = 2784, - [2811] = 2111, - [2812] = 2786, + [2810] = 2810, + [2811] = 2767, + [2812] = 2812, [2813] = 2813, - [2814] = 2814, - [2815] = 2815, + [2814] = 2791, + [2815] = 2747, [2816] = 2816, [2817] = 2817, [2818] = 2818, [2819] = 2819, [2820] = 2820, [2821] = 2821, - [2822] = 2822, + [2822] = 2809, [2823] = 2823, - [2824] = 2824, + [2824] = 2757, [2825] = 2825, [2826] = 2826, [2827] = 2827, @@ -6687,203 +6701,203 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2833] = 2833, [2834] = 2834, [2835] = 2835, - [2836] = 2836, + [2836] = 2753, [2837] = 2837, [2838] = 2838, - [2839] = 2110, + [2839] = 2839, [2840] = 2840, - [2841] = 2840, + [2841] = 380, [2842] = 2842, [2843] = 2843, [2844] = 2844, - [2845] = 2845, - [2846] = 2846, + [2845] = 2126, + [2846] = 2817, [2847] = 2847, - [2848] = 2102, + [2848] = 2848, [2849] = 2849, - [2850] = 2850, - [2851] = 2851, + [2850] = 2757, + [2851] = 2770, [2852] = 2852, - [2853] = 2853, - [2854] = 2854, - [2855] = 2855, + [2853] = 2805, + [2854] = 2806, + [2855] = 2828, [2856] = 2856, - [2857] = 2857, + [2857] = 2839, [2858] = 2858, - [2859] = 2809, + [2859] = 2859, [2860] = 2860, - [2861] = 2861, - [2862] = 2790, - [2863] = 2787, - [2864] = 2864, + [2861] = 156, + [2862] = 2793, + [2863] = 2863, + [2864] = 2752, [2865] = 2865, - [2866] = 2866, - [2867] = 2770, - [2868] = 2735, + [2866] = 2764, + [2867] = 2755, + [2868] = 2868, [2869] = 2869, [2870] = 2870, - [2871] = 2871, - [2872] = 2872, + [2871] = 2077, + [2872] = 2809, [2873] = 2873, [2874] = 2874, - [2875] = 2875, + [2875] = 2826, [2876] = 2876, - [2877] = 2877, - [2878] = 2878, - [2879] = 2879, + [2877] = 2079, + [2878] = 2122, + [2879] = 2812, [2880] = 2880, - [2881] = 2881, - [2882] = 2882, - [2883] = 2883, - [2884] = 2884, - [2885] = 2885, + [2881] = 2753, + [2882] = 2098, + [2883] = 2812, + [2884] = 2771, + [2885] = 2783, [2886] = 2886, [2887] = 2887, [2888] = 2888, - [2889] = 2807, - [2890] = 2890, - [2891] = 2891, - [2892] = 2892, + [2889] = 2889, + [2890] = 2869, + [2891] = 2873, + [2892] = 2876, [2893] = 2893, - [2894] = 2894, - [2895] = 2752, - [2896] = 2794, - [2897] = 2797, - [2898] = 2744, - [2899] = 2899, + [2894] = 2106, + [2895] = 2091, + [2896] = 2896, + [2897] = 2115, + [2898] = 2849, + [2899] = 2088, [2900] = 2900, - [2901] = 2817, - [2902] = 2902, - [2903] = 2770, - [2904] = 2904, - [2905] = 2905, + [2901] = 2901, + [2902] = 2808, + [2903] = 2741, + [2904] = 2835, + [2905] = 2732, [2906] = 2906, - [2907] = 2907, - [2908] = 2794, - [2909] = 2800, + [2907] = 2772, + [2908] = 2908, + [2909] = 2909, [2910] = 2910, - [2911] = 2911, - [2912] = 2912, + [2911] = 2733, + [2912] = 2093, [2913] = 2913, [2914] = 2914, [2915] = 2915, - [2916] = 2916, + [2916] = 2901, [2917] = 2917, - [2918] = 2805, + [2918] = 2736, [2919] = 2919, - [2920] = 2782, - [2921] = 2921, - [2922] = 2767, - [2923] = 2767, + [2920] = 2920, + [2921] = 2825, + [2922] = 2922, + [2923] = 2097, [2924] = 2924, - [2925] = 2925, - [2926] = 2738, - [2927] = 2732, + [2925] = 2737, + [2926] = 2112, + [2927] = 2927, [2928] = 2928, - [2929] = 2928, + [2929] = 2929, [2930] = 2930, - [2931] = 2794, + [2931] = 2931, [2932] = 2932, - [2933] = 2924, - [2934] = 2921, - [2935] = 2878, - [2936] = 2919, - [2937] = 2937, - [2938] = 2893, - [2939] = 2916, - [2940] = 2915, + [2933] = 2933, + [2934] = 2739, + [2935] = 2834, + [2936] = 2821, + [2937] = 2738, + [2938] = 2938, + [2939] = 2939, + [2940] = 2940, [2941] = 2941, - [2942] = 2907, - [2943] = 2902, - [2944] = 2914, - [2945] = 2904, - [2946] = 2899, - [2947] = 2814, + [2942] = 2942, + [2943] = 2943, + [2944] = 2790, + [2945] = 2945, + [2946] = 2742, + [2947] = 2758, [2948] = 2948, - [2949] = 2949, - [2950] = 2816, - [2951] = 2951, - [2952] = 2818, - [2953] = 2953, - [2954] = 2900, + [2949] = 2101, + [2950] = 2859, + [2951] = 2747, + [2952] = 2909, + [2953] = 2078, + [2954] = 2954, [2955] = 2955, - [2956] = 2886, - [2957] = 399, - [2958] = 2885, - [2959] = 2959, - [2960] = 2960, - [2961] = 2906, - [2962] = 2822, - [2963] = 2741, - [2964] = 2893, + [2956] = 2808, + [2957] = 2957, + [2958] = 2083, + [2959] = 2778, + [2960] = 2788, + [2961] = 2817, + [2962] = 2084, + [2963] = 2832, + [2964] = 2092, [2965] = 2965, - [2966] = 2755, - [2967] = 2905, - [2968] = 2968, - [2969] = 2750, - [2970] = 2970, - [2971] = 2786, - [2972] = 2878, - [2973] = 2751, - [2974] = 2974, - [2975] = 2872, - [2976] = 2902, - [2977] = 2899, - [2978] = 2871, - [2979] = 2870, - [2980] = 2746, - [2981] = 2981, - [2982] = 2982, - [2983] = 2894, - [2984] = 2861, - [2985] = 2860, - [2986] = 2892, - [2987] = 2890, + [2966] = 2966, + [2967] = 2886, + [2968] = 2757, + [2969] = 2910, + [2970] = 2908, + [2971] = 2080, + [2972] = 2757, + [2973] = 2095, + [2974] = 2099, + [2975] = 2975, + [2976] = 2833, + [2977] = 2977, + [2978] = 2081, + [2979] = 2979, + [2980] = 2980, + [2981] = 2751, + [2982] = 2745, + [2983] = 2127, + [2984] = 2805, + [2985] = 2985, + [2986] = 2829, + [2987] = 2987, [2988] = 2988, - [2989] = 2858, - [2990] = 2767, - [2991] = 2832, - [2992] = 2847, - [2993] = 2888, - [2994] = 2885, - [2995] = 2782, + [2989] = 2810, + [2990] = 2082, + [2991] = 2806, + [2992] = 2914, + [2993] = 2943, + [2994] = 2917, + [2995] = 2076, [2996] = 2996, - [2997] = 2835, - [2998] = 2998, - [2999] = 2881, - [3000] = 2886, - [3001] = 2743, - [3002] = 2865, - [3003] = 2837, - [3004] = 2748, - [3005] = 2794, - [3006] = 2857, - [3007] = 2930, - [3008] = 3008, - [3009] = 2853, - [3010] = 3010, - [3011] = 3011, - [3012] = 2813, - [3013] = 2815, + [2997] = 2734, + [2998] = 2086, + [2999] = 2743, + [3000] = 3000, + [3001] = 3001, + [3002] = 2933, + [3003] = 2787, + [3004] = 2830, + [3005] = 2744, + [3006] = 3006, + [3007] = 2818, + [3008] = 3006, + [3009] = 2813, + [3010] = 2980, + [3011] = 2775, + [3012] = 2762, + [3013] = 2942, [3014] = 3014, - [3015] = 3015, + [3015] = 2789, [3016] = 3016, - [3017] = 2845, - [3018] = 3018, - [3019] = 2838, - [3020] = 2836, - [3021] = 3021, - [3022] = 2824, - [3023] = 3023, - [3024] = 2745, - [3025] = 2731, - [3026] = 2828, - [3027] = 2827, - [3028] = 3028, - [3029] = 3029, - [3030] = 2826, - [3031] = 2825, - [3032] = 3032, + [3017] = 2792, + [3018] = 2932, + [3019] = 2979, + [3020] = 3020, + [3021] = 2865, + [3022] = 2870, + [3023] = 2838, + [3024] = 2840, + [3025] = 3025, + [3026] = 3026, + [3027] = 3027, + [3028] = 2782, + [3029] = 3025, + [3030] = 2856, + [3031] = 2801, + [3032] = 2110, [3033] = 3033, [3034] = 3034, [3035] = 3035, @@ -6896,275 +6910,275 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3042] = 3042, [3043] = 3043, [3044] = 3044, - [3045] = 3045, + [3045] = 3034, [3046] = 3046, [3047] = 3047, - [3048] = 3048, + [3048] = 1210, [3049] = 3049, - [3050] = 3050, - [3051] = 3035, - [3052] = 3052, - [3053] = 3047, - [3054] = 3036, - [3055] = 3048, + [3050] = 3037, + [3051] = 3051, + [3052] = 3044, + [3053] = 3053, + [3054] = 3054, + [3055] = 3055, [3056] = 3056, [3057] = 3057, - [3058] = 3040, - [3059] = 3059, + [3058] = 3058, + [3059] = 1212, [3060] = 3060, - [3061] = 3061, + [3061] = 1213, [3062] = 3062, [3063] = 3063, [3064] = 3064, [3065] = 3065, - [3066] = 3066, + [3066] = 3040, [3067] = 3067, [3068] = 3068, - [3069] = 3047, + [3069] = 1228, [3070] = 3070, - [3071] = 3043, - [3072] = 1166, - [3073] = 3047, + [3071] = 3071, + [3072] = 3067, + [3073] = 3073, [3074] = 3074, [3075] = 3075, - [3076] = 3038, - [3077] = 3034, + [3076] = 3076, + [3077] = 3077, [3078] = 3078, - [3079] = 3079, + [3079] = 3042, [3080] = 3080, [3081] = 3081, - [3082] = 3033, + [3082] = 3082, [3083] = 3083, [3084] = 3084, - [3085] = 3085, - [3086] = 3086, + [3085] = 3081, + [3086] = 3051, [3087] = 3087, [3088] = 3088, [3089] = 3089, - [3090] = 3045, + [3090] = 3046, [3091] = 3091, - [3092] = 3092, + [3092] = 3042, [3093] = 3093, - [3094] = 3094, + [3094] = 3044, [3095] = 3095, - [3096] = 3096, - [3097] = 3050, - [3098] = 3098, + [3096] = 3040, + [3097] = 3097, + [3098] = 3044, [3099] = 3099, [3100] = 3100, - [3101] = 3101, - [3102] = 3102, - [3103] = 3057, - [3104] = 3048, - [3105] = 3085, - [3106] = 3106, - [3107] = 3042, - [3108] = 3040, - [3109] = 3109, - [3110] = 3110, - [3111] = 3110, - [3112] = 3112, - [3113] = 3109, - [3114] = 3112, + [3101] = 3071, + [3102] = 3051, + [3103] = 3103, + [3104] = 3091, + [3105] = 3057, + [3106] = 3093, + [3107] = 3107, + [3108] = 3108, + [3109] = 3063, + [3110] = 3040, + [3111] = 3067, + [3112] = 3068, + [3113] = 3113, + [3114] = 3114, [3115] = 3115, [3116] = 3116, [3117] = 3117, - [3118] = 3060, - [3119] = 3060, + [3118] = 3118, + [3119] = 3119, [3120] = 3120, [3121] = 3121, - [3122] = 3122, + [3122] = 3044, [3123] = 3123, - [3124] = 3065, - [3125] = 3125, - [3126] = 3126, - [3127] = 3127, + [3124] = 3037, + [3125] = 3051, + [3126] = 3040, + [3127] = 3057, [3128] = 3128, - [3129] = 3101, - [3130] = 3130, + [3129] = 3129, + [3130] = 3040, [3131] = 3131, - [3132] = 3132, - [3133] = 3112, - [3134] = 3050, - [3135] = 3089, - [3136] = 3099, - [3137] = 3080, - [3138] = 3050, - [3139] = 3132, + [3132] = 3067, + [3133] = 3068, + [3134] = 3051, + [3135] = 3039, + [3136] = 3060, + [3137] = 3097, + [3138] = 3138, + [3139] = 3118, [3140] = 3140, - [3141] = 1172, - [3142] = 3088, - [3143] = 3143, - [3144] = 3067, - [3145] = 3078, - [3146] = 3146, - [3147] = 3084, + [3141] = 3141, + [3142] = 3051, + [3143] = 3033, + [3144] = 3115, + [3145] = 3040, + [3146] = 3067, + [3147] = 3068, [3148] = 3148, - [3149] = 3149, - [3150] = 3150, - [3151] = 3100, + [3149] = 3054, + [3150] = 3047, + [3151] = 3151, [3152] = 3152, - [3153] = 3068, + [3153] = 3153, [3154] = 3154, [3155] = 3155, [3156] = 3156, - [3157] = 3155, - [3158] = 3158, + [3157] = 3051, + [3158] = 3040, [3159] = 3159, - [3160] = 3160, - [3161] = 3161, - [3162] = 3085, - [3163] = 3070, - [3164] = 3050, - [3165] = 3165, - [3166] = 3074, - [3167] = 3094, - [3168] = 3057, - [3169] = 1254, - [3170] = 1255, - [3171] = 3093, - [3172] = 3172, - [3173] = 3092, - [3174] = 3174, - [3175] = 3175, - [3176] = 3068, - [3177] = 3037, - [3178] = 3091, - [3179] = 3179, - [3180] = 3117, - [3181] = 3083, - [3182] = 3086, - [3183] = 3175, - [3184] = 3081, - [3185] = 3052, - [3186] = 3093, - [3187] = 3110, - [3188] = 3050, - [3189] = 3062, - [3190] = 3099, - [3191] = 3101, - [3192] = 3192, - [3193] = 3131, - [3194] = 3122, - [3195] = 3109, - [3196] = 3120, - [3197] = 3048, - [3198] = 3128, + [3160] = 3067, + [3161] = 3068, + [3162] = 3162, + [3163] = 3163, + [3164] = 3051, + [3165] = 3040, + [3166] = 1292, + [3167] = 3067, + [3168] = 3068, + [3169] = 3169, + [3170] = 3051, + [3171] = 3057, + [3172] = 3067, + [3173] = 3068, + [3174] = 3068, + [3175] = 3051, + [3176] = 3077, + [3177] = 3067, + [3178] = 3068, + [3179] = 2823, + [3180] = 3051, + [3181] = 2887, + [3182] = 3067, + [3183] = 3068, + [3184] = 3184, + [3185] = 3077, + [3186] = 3067, + [3187] = 3068, + [3188] = 3188, + [3189] = 3189, + [3190] = 3119, + [3191] = 3062, + [3192] = 3053, + [3193] = 3057, + [3194] = 3194, + [3195] = 3195, + [3196] = 3196, + [3197] = 3197, + [3198] = 3113, [3199] = 3199, - [3200] = 3160, + [3200] = 3033, [3201] = 3201, - [3202] = 3202, - [3203] = 3116, - [3204] = 3199, - [3205] = 3205, - [3206] = 3086, - [3207] = 3207, + [3202] = 3153, + [3203] = 3203, + [3204] = 3062, + [3205] = 3063, + [3206] = 3064, + [3207] = 3054, [3208] = 3208, - [3209] = 3156, - [3210] = 3059, - [3211] = 3101, - [3212] = 3165, - [3213] = 3213, - [3214] = 3057, + [3209] = 3107, + [3210] = 3116, + [3211] = 3056, + [3212] = 3212, + [3213] = 3152, + [3214] = 3163, [3215] = 3215, - [3216] = 3216, - [3217] = 3049, - [3218] = 3036, + [3216] = 3100, + [3217] = 3217, + [3218] = 3117, [3219] = 3099, [3220] = 3220, - [3221] = 3068, - [3222] = 3152, - [3223] = 3086, + [3221] = 3221, + [3222] = 3074, + [3223] = 3141, [3224] = 3224, - [3225] = 3225, - [3226] = 3057, - [3227] = 3050, - [3228] = 3149, - [3229] = 3099, - [3230] = 3101, - [3231] = 3148, - [3232] = 3046, - [3233] = 3158, - [3234] = 3123, - [3235] = 3159, - [3236] = 3102, - [3237] = 2831, - [3238] = 3050, - [3239] = 3044, - [3240] = 3086, - [3241] = 3241, - [3242] = 3063, - [3243] = 3041, - [3244] = 3143, - [3245] = 3064, - [3246] = 3128, - [3247] = 1323, - [3248] = 3068, - [3249] = 3249, - [3250] = 3039, - [3251] = 3050, - [3252] = 3112, - [3253] = 3099, - [3254] = 3101, - [3255] = 3050, + [3225] = 3162, + [3226] = 3169, + [3227] = 3227, + [3228] = 3228, + [3229] = 3159, + [3230] = 3035, + [3231] = 3231, + [3232] = 3232, + [3233] = 3233, + [3234] = 3038, + [3235] = 3063, + [3236] = 3064, + [3237] = 3228, + [3238] = 3238, + [3239] = 3040, + [3240] = 3070, + [3241] = 3224, + [3242] = 3242, + [3243] = 3243, + [3244] = 3244, + [3245] = 3242, + [3246] = 3246, + [3247] = 3067, + [3248] = 3151, + [3249] = 3068, + [3250] = 3250, + [3251] = 3231, + [3252] = 3252, + [3253] = 3083, + [3254] = 3033, + [3255] = 3129, [3256] = 3256, - [3257] = 2830, - [3258] = 3179, - [3259] = 3259, - [3260] = 3260, - [3261] = 3079, - [3262] = 3262, - [3263] = 3074, - [3264] = 3056, - [3265] = 3061, - [3266] = 3131, - [3267] = 3070, - [3268] = 3092, - [3269] = 3068, - [3270] = 3161, - [3271] = 3050, - [3272] = 3088, - [3273] = 3099, - [3274] = 3101, - [3275] = 3070, - [3276] = 3132, + [3257] = 3123, + [3258] = 3070, + [3259] = 3071, + [3260] = 3082, + [3261] = 3039, + [3262] = 3113, + [3263] = 3131, + [3264] = 3153, + [3265] = 3265, + [3266] = 3056, + [3267] = 3267, + [3268] = 3268, + [3269] = 3154, + [3270] = 3040, + [3271] = 3221, + [3272] = 3212, + [3273] = 3113, + [3274] = 3080, + [3275] = 3087, + [3276] = 3220, [3277] = 3277, - [3278] = 3112, - [3279] = 3094, - [3280] = 3068, - [3281] = 3050, - [3282] = 3282, - [3283] = 3099, - [3284] = 3101, - [3285] = 3285, - [3286] = 3068, - [3287] = 3095, - [3288] = 3099, - [3289] = 3101, - [3290] = 3068, - [3291] = 3146, - [3292] = 3099, - [3293] = 3101, - [3294] = 3087, - [3295] = 3068, - [3296] = 3099, - [3297] = 3101, - [3298] = 3068, - [3299] = 3220, - [3300] = 3099, - [3301] = 3101, - [3302] = 3093, - [3303] = 3067, - [3304] = 3304, - [3305] = 3305, - [3306] = 3216, - [3307] = 3150, - [3308] = 3066, - [3309] = 3068, - [3310] = 3096, - [3311] = 3311, + [3278] = 3113, + [3279] = 3243, + [3280] = 3121, + [3281] = 3199, + [3282] = 3215, + [3283] = 3267, + [3284] = 3244, + [3285] = 3238, + [3286] = 3233, + [3287] = 3227, + [3288] = 3155, + [3289] = 3040, + [3290] = 3128, + [3291] = 3036, + [3292] = 3095, + [3293] = 3208, + [3294] = 3043, + [3295] = 3295, + [3296] = 3188, + [3297] = 3297, + [3298] = 3121, + [3299] = 3267, + [3300] = 3188, + [3301] = 3267, + [3302] = 3188, + [3303] = 3081, + [3304] = 3058, + [3305] = 3114, + [3306] = 3297, + [3307] = 3307, + [3308] = 3246, + [3309] = 3103, + [3310] = 3082, + [3311] = 3051, [3312] = 3312, - [3313] = 3313, + [3313] = 162, [3314] = 3314, [3315] = 3315, [3316] = 3316, @@ -7175,10 +7189,10 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3321] = 3321, [3322] = 3322, [3323] = 3323, - [3324] = 3313, - [3325] = 3325, - [3326] = 3326, - [3327] = 3327, + [3324] = 3324, + [3325] = 164, + [3326] = 3321, + [3327] = 3320, [3328] = 3328, [3329] = 3329, [3330] = 3330, @@ -7191,43 +7205,43 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3337] = 3337, [3338] = 3338, [3339] = 3339, - [3340] = 3313, + [3340] = 3340, [3341] = 3341, - [3342] = 3342, + [3342] = 3314, [3343] = 3343, [3344] = 3344, [3345] = 3345, [3346] = 3346, [3347] = 3347, - [3348] = 3348, + [3348] = 3328, [3349] = 3349, - [3350] = 3347, - [3351] = 3322, - [3352] = 3320, - [3353] = 3318, - [3354] = 3330, + [3350] = 3350, + [3351] = 3351, + [3352] = 3352, + [3353] = 3353, + [3354] = 3354, [3355] = 3355, [3356] = 3356, - [3357] = 3349, + [3357] = 3357, [3358] = 3358, [3359] = 3359, [3360] = 3360, [3361] = 3361, [3362] = 3362, [3363] = 3363, - [3364] = 3364, - [3365] = 3365, + [3364] = 3363, + [3365] = 3362, [3366] = 3366, [3367] = 3367, [3368] = 3368, [3369] = 3369, - [3370] = 3370, + [3370] = 3330, [3371] = 3371, [3372] = 3372, [3373] = 3373, - [3374] = 3374, + [3374] = 3350, [3375] = 3375, - [3376] = 3348, + [3376] = 3376, [3377] = 3377, [3378] = 3378, [3379] = 3379, @@ -7236,239 +7250,241 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [3382] = 3382, [3383] = 3383, [3384] = 3384, - [3385] = 3385, - [3386] = 142, - [3387] = 3375, + [3385] = 3369, + [3386] = 3386, + [3387] = 3354, [3388] = 3388, - [3389] = 3332, - [3390] = 3359, + [3389] = 3389, + [3390] = 3390, [3391] = 3391, - [3392] = 3392, + [3392] = 3321, [3393] = 3393, [3394] = 3394, [3395] = 3395, - [3396] = 3375, - [3397] = 3397, + [3396] = 3396, + [3397] = 3361, [3398] = 3398, - [3399] = 3362, + [3399] = 3399, [3400] = 3400, - [3401] = 3334, + [3401] = 3336, [3402] = 3402, [3403] = 3403, - [3404] = 3404, - [3405] = 3405, - [3406] = 3406, + [3404] = 3329, + [3405] = 3363, + [3406] = 3339, [3407] = 3407, - [3408] = 3367, + [3408] = 3336, [3409] = 3409, [3410] = 3410, - [3411] = 3369, - [3412] = 3406, + [3411] = 3321, + [3412] = 3412, [3413] = 3413, [3414] = 3414, [3415] = 3415, - [3416] = 3364, + [3416] = 3334, [3417] = 3417, - [3418] = 3388, + [3418] = 3418, [3419] = 3419, - [3420] = 3339, - [3421] = 3421, - [3422] = 3362, - [3423] = 3355, - [3424] = 3424, - [3425] = 3343, - [3426] = 3426, - [3427] = 3427, + [3420] = 3420, + [3421] = 3343, + [3422] = 3422, + [3423] = 3423, + [3424] = 3394, + [3425] = 3425, + [3426] = 3358, + [3427] = 3338, [3428] = 3428, - [3429] = 3312, - [3430] = 3430, - [3431] = 3344, - [3432] = 3337, - [3433] = 3370, - [3434] = 3427, + [3429] = 3380, + [3430] = 3340, + [3431] = 3431, + [3432] = 3414, + [3433] = 3433, + [3434] = 3434, [3435] = 3435, - [3436] = 3345, - [3437] = 3375, - [3438] = 3426, + [3436] = 3436, + [3437] = 3437, + [3438] = 3372, [3439] = 3439, - [3440] = 3394, - [3441] = 3344, - [3442] = 3442, - [3443] = 3419, - [3444] = 3444, - [3445] = 3445, + [3440] = 3312, + [3441] = 3441, + [3442] = 3361, + [3443] = 3433, + [3444] = 3395, + [3445] = 3355, [3446] = 3446, - [3447] = 3410, - [3448] = 3448, - [3449] = 3335, - [3450] = 3331, - [3451] = 3366, - [3452] = 3395, - [3453] = 3405, - [3454] = 3388, - [3455] = 3455, - [3456] = 3362, + [3447] = 3379, + [3448] = 3351, + [3449] = 3420, + [3450] = 3398, + [3451] = 3380, + [3452] = 3452, + [3453] = 3453, + [3454] = 3312, + [3455] = 3322, + [3456] = 3456, [3457] = 3457, [3458] = 3458, - [3459] = 3392, - [3460] = 3373, - [3461] = 3372, - [3462] = 3365, + [3459] = 3349, + [3460] = 3436, + [3461] = 3376, + [3462] = 3382, [3463] = 3463, - [3464] = 3383, - [3465] = 3465, - [3466] = 3385, - [3467] = 3406, - [3468] = 3377, - [3469] = 3321, - [3470] = 3323, + [3464] = 3322, + [3465] = 3324, + [3466] = 3466, + [3467] = 3357, + [3468] = 3321, + [3469] = 3332, + [3470] = 3360, [3471] = 3471, - [3472] = 3419, - [3473] = 3458, - [3474] = 3331, - [3475] = 3415, - [3476] = 3398, - [3477] = 3477, - [3478] = 3337, - [3479] = 3375, - [3480] = 3339, - [3481] = 3458, + [3472] = 3472, + [3473] = 3338, + [3474] = 3474, + [3475] = 3340, + [3476] = 3393, + [3477] = 3363, + [3478] = 3350, + [3479] = 3441, + [3480] = 3480, + [3481] = 3312, [3482] = 3482, - [3483] = 3349, - [3484] = 3406, + [3483] = 3369, + [3484] = 3330, [3485] = 3485, - [3486] = 3367, + [3486] = 3372, [3487] = 3487, - [3488] = 3369, - [3489] = 3370, - [3490] = 3444, - [3491] = 3372, - [3492] = 3402, - [3493] = 3493, - [3494] = 3494, - [3495] = 3495, - [3496] = 3477, + [3488] = 3463, + [3489] = 3489, + [3490] = 3490, + [3491] = 3377, + [3492] = 3492, + [3493] = 3360, + [3494] = 3376, + [3495] = 3324, + [3496] = 3379, [3497] = 3497, - [3498] = 3394, - [3499] = 3499, - [3500] = 3313, - [3501] = 3501, + [3498] = 3324, + [3499] = 3371, + [3500] = 3413, + [3501] = 3332, [3502] = 3502, - [3503] = 3335, - [3504] = 3323, - [3505] = 3505, - [3506] = 3506, - [3507] = 3331, - [3508] = 3508, - [3509] = 3509, - [3510] = 3339, - [3511] = 3367, - [3512] = 3333, - [3513] = 3369, - [3514] = 3372, - [3515] = 3323, - [3516] = 3516, - [3517] = 3517, - [3518] = 3518, - [3519] = 3313, - [3520] = 3331, - [3521] = 3388, - [3522] = 3339, - [3523] = 3321, - [3524] = 3372, - [3525] = 3313, - [3526] = 3331, - [3527] = 3339, - [3528] = 3372, - [3529] = 3331, - [3530] = 3339, - [3531] = 3372, - [3532] = 3331, - [3533] = 3331, - [3534] = 3331, - [3535] = 3331, - [3536] = 3331, - [3537] = 3338, - [3538] = 3538, - [3539] = 3539, - [3540] = 3361, - [3541] = 3502, - [3542] = 3471, - [3543] = 3446, - [3544] = 3417, - [3545] = 3414, - [3546] = 3413, - [3547] = 3547, - [3548] = 3404, - [3549] = 3549, - [3550] = 3439, - [3551] = 3381, - [3552] = 3398, - [3553] = 3388, - [3554] = 3316, + [3503] = 3466, + [3504] = 3340, + [3505] = 3359, + [3506] = 3471, + [3507] = 3369, + [3508] = 3372, + [3509] = 3390, + [3510] = 3510, + [3511] = 3368, + [3512] = 3512, + [3513] = 3376, + [3514] = 3332, + [3515] = 3515, + [3516] = 3340, + [3517] = 3425, + [3518] = 3372, + [3519] = 3376, + [3520] = 3332, + [3521] = 3340, + [3522] = 3372, + [3523] = 3332, + [3524] = 3340, + [3525] = 3372, + [3526] = 3332, + [3527] = 3332, + [3528] = 3332, + [3529] = 3332, + [3530] = 3332, + [3531] = 3453, + [3532] = 3532, + [3533] = 3368, + [3534] = 3360, + [3535] = 3535, + [3536] = 3431, + [3537] = 3315, + [3538] = 3457, + [3539] = 3510, + [3540] = 3540, + [3541] = 3541, + [3542] = 3381, + [3543] = 3417, + [3544] = 3535, + [3545] = 3412, + [3546] = 3358, + [3547] = 3352, + [3548] = 3456, + [3549] = 3353, + [3550] = 3380, + [3551] = 3436, + [3552] = 3552, + [3553] = 3380, + [3554] = 3540, [3555] = 3555, - [3556] = 3400, - [3557] = 3327, - [3558] = 3315, - [3559] = 3329, + [3556] = 3383, + [3557] = 3389, + [3558] = 3316, + [3559] = 3331, [3560] = 3560, - [3561] = 3561, - [3562] = 3314, - [3563] = 3505, - [3564] = 3564, - [3565] = 3397, - [3566] = 3561, - [3567] = 3325, - [3568] = 3501, - [3569] = 3391, - [3570] = 3336, - [3571] = 3508, - [3572] = 3360, - [3573] = 3355, + [3561] = 3380, + [3562] = 3562, + [3563] = 3541, + [3564] = 3453, + [3565] = 3435, + [3566] = 3566, + [3567] = 3384, + [3568] = 3358, + [3569] = 3317, + [3570] = 3373, + [3571] = 3388, + [3572] = 3472, + [3573] = 3422, [3574] = 3574, - [3575] = 3575, - [3576] = 3487, - [3577] = 161, - [3578] = 3578, - [3579] = 3344, - [3580] = 3371, - [3581] = 3574, - [3582] = 3578, - [3583] = 3393, - [3584] = 3375, - [3585] = 3502, - [3586] = 3471, - [3587] = 3417, - [3588] = 3414, - [3589] = 3358, - [3590] = 3394, - [3591] = 3502, - [3592] = 3414, - [3593] = 3378, + [3575] = 3492, + [3576] = 3375, + [3577] = 3577, + [3578] = 3378, + [3579] = 3535, + [3580] = 3431, + [3581] = 3457, + [3582] = 3510, + [3583] = 3437, + [3584] = 3391, + [3585] = 3535, + [3586] = 3510, + [3587] = 3587, + [3588] = 3577, + [3589] = 3510, + [3590] = 3510, + [3591] = 3510, + [3592] = 3555, + [3593] = 3452, [3594] = 3594, - [3595] = 3414, - [3596] = 3414, - [3597] = 3414, - [3598] = 3465, - [3599] = 3517, - [3600] = 3455, - [3601] = 3421, - [3602] = 3384, - [3603] = 3382, - [3604] = 3560, - [3605] = 3317, - [3606] = 3328, - [3607] = 3607, - [3608] = 3564, - [3609] = 3326, - [3610] = 3374, - [3611] = 3611, - [3612] = 3612, + [3595] = 3595, + [3596] = 3458, + [3597] = 3487, + [3598] = 3400, + [3599] = 3409, + [3600] = 3407, + [3601] = 3376, + [3602] = 3367, + [3603] = 3603, + [3604] = 3497, + [3605] = 3605, + [3606] = 3428, + [3607] = 3566, + [3608] = 3552, + [3609] = 3332, + [3610] = 3347, + [3611] = 3453, + [3612] = 3482, [3613] = 3613, [3614] = 3614, [3615] = 3615, [3616] = 3616, [3617] = 3617, + [3618] = 3618, + [3619] = 3619, }; static TSCharacterRange sym_identifier_character_set_1[] = { @@ -7531,29 +7547,31 @@ static TSCharacterRange sym_identifier_character_set_1[] = { {0x10c00, 0x10c48}, {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d23}, {0x10e80, 0x10ea9}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f45}, {0x10f70, 0x10f81}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11003, 0x11037}, {0x11071, 0x11072}, {0x11075, 0x11075}, {0x11083, 0x110af}, {0x110d0, 0x110e8}, {0x11103, 0x11126}, {0x11144, 0x11144}, {0x11147, 0x11147}, {0x11150, 0x11172}, {0x11176, 0x11176}, {0x11183, 0x111b2}, {0x111c1, 0x111c4}, - {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, - {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, - {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, {0x114c4, 0x114c5}, - {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, {0x11700, 0x1171a}, - {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, {0x11918, 0x1192f}, - {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, {0x11a0b, 0x11a32}, - {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, {0x11c40, 0x11c40}, - {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d89}, - {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, - {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, - {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, - {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, - {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, - {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, - {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, - {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, - {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ad}, - {0x1e2c0, 0x1e2eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, - {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, - {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, - {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, - {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, - {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, + {0x111da, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x1122b}, {0x1123f, 0x11240}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, + {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112de}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, + {0x11335, 0x11339}, {0x1133d, 0x1133d}, {0x11350, 0x11350}, {0x1135d, 0x11361}, {0x11400, 0x11434}, {0x11447, 0x1144a}, {0x1145f, 0x11461}, {0x11480, 0x114af}, + {0x114c4, 0x114c5}, {0x114c7, 0x114c7}, {0x11580, 0x115ae}, {0x115d8, 0x115db}, {0x11600, 0x1162f}, {0x11644, 0x11644}, {0x11680, 0x116aa}, {0x116b8, 0x116b8}, + {0x11700, 0x1171a}, {0x11740, 0x11746}, {0x11800, 0x1182b}, {0x118a0, 0x118df}, {0x118ff, 0x11906}, {0x11909, 0x11909}, {0x1190c, 0x11913}, {0x11915, 0x11916}, + {0x11918, 0x1192f}, {0x1193f, 0x1193f}, {0x11941, 0x11941}, {0x119a0, 0x119a7}, {0x119aa, 0x119d0}, {0x119e1, 0x119e1}, {0x119e3, 0x119e3}, {0x11a00, 0x11a00}, + {0x11a0b, 0x11a32}, {0x11a3a, 0x11a3a}, {0x11a50, 0x11a50}, {0x11a5c, 0x11a89}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c2e}, + {0x11c40, 0x11c40}, {0x11c72, 0x11c8f}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d30}, {0x11d46, 0x11d46}, {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, + {0x11d6a, 0x11d89}, {0x11d98, 0x11d98}, {0x11ee0, 0x11ef2}, {0x11f02, 0x11f02}, {0x11f04, 0x11f10}, {0x11f12, 0x11f33}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, + {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342f}, {0x13441, 0x13446}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, + {0x16a70, 0x16abe}, {0x16ad0, 0x16aed}, {0x16b00, 0x16b2f}, {0x16b40, 0x16b43}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, + {0x16f50, 0x16f50}, {0x16f93, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe3}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, + {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, + {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, + {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, + {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, + {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, + {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e030, 0x1e06d}, {0x1e100, 0x1e12c}, {0x1e137, 0x1e13d}, {0x1e14e, 0x1e14e}, + {0x1e290, 0x1e2ad}, {0x1e2c0, 0x1e2eb}, {0x1e4d0, 0x1e4eb}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, + {0x1e900, 0x1e943}, {0x1e94b, 0x1e94b}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, + {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, + {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, + {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, + {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, + {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, }; static TSCharacterRange sym_identifier_character_set_3[] = { @@ -7576,11 +7594,11 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0xbc6, 0xbc8}, {0xbca, 0xbcd}, {0xbd0, 0xbd0}, {0xbd7, 0xbd7}, {0xbe6, 0xbef}, {0xc00, 0xc0c}, {0xc0e, 0xc10}, {0xc12, 0xc28}, {0xc2a, 0xc39}, {0xc3c, 0xc44}, {0xc46, 0xc48}, {0xc4a, 0xc4d}, {0xc55, 0xc56}, {0xc58, 0xc5a}, {0xc5d, 0xc5d}, {0xc60, 0xc63}, {0xc66, 0xc6f}, {0xc80, 0xc83}, {0xc85, 0xc8c}, {0xc8e, 0xc90}, {0xc92, 0xca8}, {0xcaa, 0xcb3}, {0xcb5, 0xcb9}, {0xcbc, 0xcc4}, - {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf2}, {0xd00, 0xd0c}, + {0xcc6, 0xcc8}, {0xcca, 0xccd}, {0xcd5, 0xcd6}, {0xcdd, 0xcde}, {0xce0, 0xce3}, {0xce6, 0xcef}, {0xcf1, 0xcf3}, {0xd00, 0xd0c}, {0xd0e, 0xd10}, {0xd12, 0xd44}, {0xd46, 0xd48}, {0xd4a, 0xd4e}, {0xd54, 0xd57}, {0xd5f, 0xd63}, {0xd66, 0xd6f}, {0xd7a, 0xd7f}, {0xd81, 0xd83}, {0xd85, 0xd96}, {0xd9a, 0xdb1}, {0xdb3, 0xdbb}, {0xdbd, 0xdbd}, {0xdc0, 0xdc6}, {0xdca, 0xdca}, {0xdcf, 0xdd4}, {0xdd6, 0xdd6}, {0xdd8, 0xddf}, {0xde6, 0xdef}, {0xdf2, 0xdf3}, {0xe01, 0xe3a}, {0xe40, 0xe4e}, {0xe50, 0xe59}, {0xe81, 0xe82}, - {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xecd}, + {0xe84, 0xe84}, {0xe86, 0xe8a}, {0xe8c, 0xea3}, {0xea5, 0xea5}, {0xea7, 0xebd}, {0xec0, 0xec4}, {0xec6, 0xec6}, {0xec8, 0xece}, {0xed0, 0xed9}, {0xedc, 0xedf}, {0xf00, 0xf00}, {0xf18, 0xf19}, {0xf20, 0xf29}, {0xf35, 0xf35}, {0xf37, 0xf37}, {0xf39, 0xf39}, {0xf3e, 0xf47}, {0xf49, 0xf6c}, {0xf71, 0xf84}, {0xf86, 0xf97}, {0xf99, 0xfbc}, {0xfc6, 0xfc6}, {0x1000, 0x1049}, {0x1050, 0x109d}, {0x10a0, 0x10c5}, {0x10c7, 0x10c7}, {0x10cd, 0x10cd}, {0x10d0, 0x10fa}, {0x10fc, 0x1248}, {0x124a, 0x124d}, {0x1250, 0x1256}, {0x1258, 0x1258}, @@ -7594,13 +7612,13 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x1b80, 0x1bf3}, {0x1c00, 0x1c37}, {0x1c40, 0x1c49}, {0x1c4d, 0x1c7d}, {0x1c80, 0x1c88}, {0x1c90, 0x1cba}, {0x1cbd, 0x1cbf}, {0x1cd0, 0x1cd2}, {0x1cd4, 0x1cfa}, {0x1d00, 0x1f15}, {0x1f18, 0x1f1d}, {0x1f20, 0x1f45}, {0x1f48, 0x1f4d}, {0x1f50, 0x1f57}, {0x1f59, 0x1f59}, {0x1f5b, 0x1f5b}, {0x1f5d, 0x1f5d}, {0x1f5f, 0x1f7d}, {0x1f80, 0x1fb4}, {0x1fb6, 0x1fbc}, {0x1fbe, 0x1fbe}, {0x1fc2, 0x1fc4}, {0x1fc6, 0x1fcc}, {0x1fd0, 0x1fd3}, - {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, {0x207f, 0x207f}, - {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, {0x2115, 0x2115}, - {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, {0x214e, 0x214e}, - {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, {0x2d6f, 0x2d6f}, - {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, {0x2dd0, 0x2dd6}, - {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, {0x3099, 0x309a}, - {0x309d, 0x309f}, {0x30a1, 0x30fa}, {0x30fc, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, + {0x1fd6, 0x1fdb}, {0x1fe0, 0x1fec}, {0x1ff2, 0x1ff4}, {0x1ff6, 0x1ffc}, {0x200c, 0x200d}, {0x203f, 0x2040}, {0x2054, 0x2054}, {0x2071, 0x2071}, + {0x207f, 0x207f}, {0x2090, 0x209c}, {0x20d0, 0x20dc}, {0x20e1, 0x20e1}, {0x20e5, 0x20f0}, {0x2102, 0x2102}, {0x2107, 0x2107}, {0x210a, 0x2113}, + {0x2115, 0x2115}, {0x2118, 0x211d}, {0x2124, 0x2124}, {0x2126, 0x2126}, {0x2128, 0x2128}, {0x212a, 0x2139}, {0x213c, 0x213f}, {0x2145, 0x2149}, + {0x214e, 0x214e}, {0x2160, 0x2188}, {0x2c00, 0x2ce4}, {0x2ceb, 0x2cf3}, {0x2d00, 0x2d25}, {0x2d27, 0x2d27}, {0x2d2d, 0x2d2d}, {0x2d30, 0x2d67}, + {0x2d6f, 0x2d6f}, {0x2d7f, 0x2d96}, {0x2da0, 0x2da6}, {0x2da8, 0x2dae}, {0x2db0, 0x2db6}, {0x2db8, 0x2dbe}, {0x2dc0, 0x2dc6}, {0x2dc8, 0x2dce}, + {0x2dd0, 0x2dd6}, {0x2dd8, 0x2dde}, {0x2de0, 0x2dff}, {0x3005, 0x3007}, {0x3021, 0x302f}, {0x3031, 0x3035}, {0x3038, 0x303c}, {0x3041, 0x3096}, + {0x3099, 0x309a}, {0x309d, 0x309f}, {0x30a1, 0x30ff}, {0x3105, 0x312f}, {0x3131, 0x318e}, {0x31a0, 0x31bf}, {0x31f0, 0x31ff}, {0x3400, 0x4dbf}, {0x4e00, 0xa48c}, {0xa4d0, 0xa4fd}, {0xa500, 0xa60c}, {0xa610, 0xa62b}, {0xa640, 0xa66f}, {0xa674, 0xa67d}, {0xa67f, 0xa6f1}, {0xa717, 0xa71f}, {0xa722, 0xa788}, {0xa78b, 0xa7ca}, {0xa7d0, 0xa7d1}, {0xa7d3, 0xa7d3}, {0xa7d5, 0xa7d9}, {0xa7f2, 0xa827}, {0xa82c, 0xa82c}, {0xa840, 0xa873}, {0xa880, 0xa8c5}, {0xa8d0, 0xa8d9}, {0xa8e0, 0xa8f7}, {0xa8fb, 0xa8fb}, {0xa8fd, 0xa92d}, {0xa930, 0xa953}, {0xa960, 0xa97c}, {0xa980, 0xa9c0}, @@ -7610,7 +7628,7 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0xfa70, 0xfad9}, {0xfb00, 0xfb06}, {0xfb13, 0xfb17}, {0xfb1d, 0xfb28}, {0xfb2a, 0xfb36}, {0xfb38, 0xfb3c}, {0xfb3e, 0xfb3e}, {0xfb40, 0xfb41}, {0xfb43, 0xfb44}, {0xfb46, 0xfbb1}, {0xfbd3, 0xfc5d}, {0xfc64, 0xfd3d}, {0xfd50, 0xfd8f}, {0xfd92, 0xfdc7}, {0xfdf0, 0xfdf9}, {0xfe00, 0xfe0f}, {0xfe20, 0xfe2f}, {0xfe33, 0xfe34}, {0xfe4d, 0xfe4f}, {0xfe71, 0xfe71}, {0xfe73, 0xfe73}, {0xfe77, 0xfe77}, {0xfe79, 0xfe79}, {0xfe7b, 0xfe7b}, - {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff66, 0xffbe}, {0xffc2, 0xffc7}, + {0xfe7d, 0xfe7d}, {0xfe7f, 0xfefc}, {0xff10, 0xff19}, {0xff21, 0xff3a}, {0xff3f, 0xff3f}, {0xff41, 0xff5a}, {0xff65, 0xffbe}, {0xffc2, 0xffc7}, {0xffca, 0xffcf}, {0xffd2, 0xffd7}, {0xffda, 0xffdc}, {0x10000, 0x1000b}, {0x1000d, 0x10026}, {0x10028, 0x1003a}, {0x1003c, 0x1003d}, {0x1003f, 0x1004d}, {0x10050, 0x1005d}, {0x10080, 0x100fa}, {0x10140, 0x10174}, {0x101fd, 0x101fd}, {0x10280, 0x1029c}, {0x102a0, 0x102d0}, {0x102e0, 0x102e0}, {0x10300, 0x1031f}, {0x1032d, 0x1034a}, {0x10350, 0x1037a}, {0x10380, 0x1039d}, {0x103a0, 0x103c3}, {0x103c8, 0x103cf}, {0x103d1, 0x103d5}, {0x10400, 0x1049d}, {0x104a0, 0x104a9}, @@ -7620,10 +7638,10 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x10860, 0x10876}, {0x10880, 0x1089e}, {0x108e0, 0x108f2}, {0x108f4, 0x108f5}, {0x10900, 0x10915}, {0x10920, 0x10939}, {0x10980, 0x109b7}, {0x109be, 0x109bf}, {0x10a00, 0x10a03}, {0x10a05, 0x10a06}, {0x10a0c, 0x10a13}, {0x10a15, 0x10a17}, {0x10a19, 0x10a35}, {0x10a38, 0x10a3a}, {0x10a3f, 0x10a3f}, {0x10a60, 0x10a7c}, {0x10a80, 0x10a9c}, {0x10ac0, 0x10ac7}, {0x10ac9, 0x10ae6}, {0x10b00, 0x10b35}, {0x10b40, 0x10b55}, {0x10b60, 0x10b72}, {0x10b80, 0x10b91}, {0x10c00, 0x10c48}, - {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10f00, 0x10f1c}, + {0x10c80, 0x10cb2}, {0x10cc0, 0x10cf2}, {0x10d00, 0x10d27}, {0x10d30, 0x10d39}, {0x10e80, 0x10ea9}, {0x10eab, 0x10eac}, {0x10eb0, 0x10eb1}, {0x10efd, 0x10f1c}, {0x10f27, 0x10f27}, {0x10f30, 0x10f50}, {0x10f70, 0x10f85}, {0x10fb0, 0x10fc4}, {0x10fe0, 0x10ff6}, {0x11000, 0x11046}, {0x11066, 0x11075}, {0x1107f, 0x110ba}, {0x110c2, 0x110c2}, {0x110d0, 0x110e8}, {0x110f0, 0x110f9}, {0x11100, 0x11134}, {0x11136, 0x1113f}, {0x11144, 0x11147}, {0x11150, 0x11173}, {0x11176, 0x11176}, - {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x1123e}, {0x11280, 0x11286}, + {0x11180, 0x111c4}, {0x111c9, 0x111cc}, {0x111ce, 0x111da}, {0x111dc, 0x111dc}, {0x11200, 0x11211}, {0x11213, 0x11237}, {0x1123e, 0x11241}, {0x11280, 0x11286}, {0x11288, 0x11288}, {0x1128a, 0x1128d}, {0x1128f, 0x1129d}, {0x1129f, 0x112a8}, {0x112b0, 0x112ea}, {0x112f0, 0x112f9}, {0x11300, 0x11303}, {0x11305, 0x1130c}, {0x1130f, 0x11310}, {0x11313, 0x11328}, {0x1132a, 0x11330}, {0x11332, 0x11333}, {0x11335, 0x11339}, {0x1133b, 0x11344}, {0x11347, 0x11348}, {0x1134b, 0x1134d}, {0x11350, 0x11350}, {0x11357, 0x11357}, {0x1135d, 0x11363}, {0x11366, 0x1136c}, {0x11370, 0x11374}, {0x11400, 0x1144a}, {0x11450, 0x11459}, {0x1145e, 0x11461}, @@ -7633,26 +7651,27 @@ static TSCharacterRange sym_identifier_character_set_3[] = { {0x11950, 0x11959}, {0x119a0, 0x119a7}, {0x119aa, 0x119d7}, {0x119da, 0x119e1}, {0x119e3, 0x119e4}, {0x11a00, 0x11a3e}, {0x11a47, 0x11a47}, {0x11a50, 0x11a99}, {0x11a9d, 0x11a9d}, {0x11ab0, 0x11af8}, {0x11c00, 0x11c08}, {0x11c0a, 0x11c36}, {0x11c38, 0x11c40}, {0x11c50, 0x11c59}, {0x11c72, 0x11c8f}, {0x11c92, 0x11ca7}, {0x11ca9, 0x11cb6}, {0x11d00, 0x11d06}, {0x11d08, 0x11d09}, {0x11d0b, 0x11d36}, {0x11d3a, 0x11d3a}, {0x11d3c, 0x11d3d}, {0x11d3f, 0x11d47}, {0x11d50, 0x11d59}, - {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11fb0, 0x11fb0}, - {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, {0x13000, 0x1342e}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, - {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, - {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, - {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, - {0x1b150, 0x1b152}, {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, - {0x1cf00, 0x1cf2d}, {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, - {0x1d400, 0x1d454}, {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, - {0x1d4bd, 0x1d4c3}, {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, - {0x1d546, 0x1d546}, {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, - {0x1d736, 0x1d74e}, {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, - {0x1da3b, 0x1da6c}, {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, - {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, - {0x1e2c0, 0x1e2f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, - {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, - {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, - {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, - {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, - {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b738}, {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, - {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0xe0100, 0xe01ef}, + {0x11d60, 0x11d65}, {0x11d67, 0x11d68}, {0x11d6a, 0x11d8e}, {0x11d90, 0x11d91}, {0x11d93, 0x11d98}, {0x11da0, 0x11da9}, {0x11ee0, 0x11ef6}, {0x11f00, 0x11f10}, + {0x11f12, 0x11f3a}, {0x11f3e, 0x11f42}, {0x11f50, 0x11f59}, {0x11fb0, 0x11fb0}, {0x12000, 0x12399}, {0x12400, 0x1246e}, {0x12480, 0x12543}, {0x12f90, 0x12ff0}, + {0x13000, 0x1342f}, {0x13440, 0x13455}, {0x14400, 0x14646}, {0x16800, 0x16a38}, {0x16a40, 0x16a5e}, {0x16a60, 0x16a69}, {0x16a70, 0x16abe}, {0x16ac0, 0x16ac9}, + {0x16ad0, 0x16aed}, {0x16af0, 0x16af4}, {0x16b00, 0x16b36}, {0x16b40, 0x16b43}, {0x16b50, 0x16b59}, {0x16b63, 0x16b77}, {0x16b7d, 0x16b8f}, {0x16e40, 0x16e7f}, + {0x16f00, 0x16f4a}, {0x16f4f, 0x16f87}, {0x16f8f, 0x16f9f}, {0x16fe0, 0x16fe1}, {0x16fe3, 0x16fe4}, {0x16ff0, 0x16ff1}, {0x17000, 0x187f7}, {0x18800, 0x18cd5}, + {0x18d00, 0x18d08}, {0x1aff0, 0x1aff3}, {0x1aff5, 0x1affb}, {0x1affd, 0x1affe}, {0x1b000, 0x1b122}, {0x1b132, 0x1b132}, {0x1b150, 0x1b152}, {0x1b155, 0x1b155}, + {0x1b164, 0x1b167}, {0x1b170, 0x1b2fb}, {0x1bc00, 0x1bc6a}, {0x1bc70, 0x1bc7c}, {0x1bc80, 0x1bc88}, {0x1bc90, 0x1bc99}, {0x1bc9d, 0x1bc9e}, {0x1cf00, 0x1cf2d}, + {0x1cf30, 0x1cf46}, {0x1d165, 0x1d169}, {0x1d16d, 0x1d172}, {0x1d17b, 0x1d182}, {0x1d185, 0x1d18b}, {0x1d1aa, 0x1d1ad}, {0x1d242, 0x1d244}, {0x1d400, 0x1d454}, + {0x1d456, 0x1d49c}, {0x1d49e, 0x1d49f}, {0x1d4a2, 0x1d4a2}, {0x1d4a5, 0x1d4a6}, {0x1d4a9, 0x1d4ac}, {0x1d4ae, 0x1d4b9}, {0x1d4bb, 0x1d4bb}, {0x1d4bd, 0x1d4c3}, + {0x1d4c5, 0x1d505}, {0x1d507, 0x1d50a}, {0x1d50d, 0x1d514}, {0x1d516, 0x1d51c}, {0x1d51e, 0x1d539}, {0x1d53b, 0x1d53e}, {0x1d540, 0x1d544}, {0x1d546, 0x1d546}, + {0x1d54a, 0x1d550}, {0x1d552, 0x1d6a5}, {0x1d6a8, 0x1d6c0}, {0x1d6c2, 0x1d6da}, {0x1d6dc, 0x1d6fa}, {0x1d6fc, 0x1d714}, {0x1d716, 0x1d734}, {0x1d736, 0x1d74e}, + {0x1d750, 0x1d76e}, {0x1d770, 0x1d788}, {0x1d78a, 0x1d7a8}, {0x1d7aa, 0x1d7c2}, {0x1d7c4, 0x1d7cb}, {0x1d7ce, 0x1d7ff}, {0x1da00, 0x1da36}, {0x1da3b, 0x1da6c}, + {0x1da75, 0x1da75}, {0x1da84, 0x1da84}, {0x1da9b, 0x1da9f}, {0x1daa1, 0x1daaf}, {0x1df00, 0x1df1e}, {0x1df25, 0x1df2a}, {0x1e000, 0x1e006}, {0x1e008, 0x1e018}, + {0x1e01b, 0x1e021}, {0x1e023, 0x1e024}, {0x1e026, 0x1e02a}, {0x1e030, 0x1e06d}, {0x1e08f, 0x1e08f}, {0x1e100, 0x1e12c}, {0x1e130, 0x1e13d}, {0x1e140, 0x1e149}, + {0x1e14e, 0x1e14e}, {0x1e290, 0x1e2ae}, {0x1e2c0, 0x1e2f9}, {0x1e4d0, 0x1e4f9}, {0x1e7e0, 0x1e7e6}, {0x1e7e8, 0x1e7eb}, {0x1e7ed, 0x1e7ee}, {0x1e7f0, 0x1e7fe}, + {0x1e800, 0x1e8c4}, {0x1e8d0, 0x1e8d6}, {0x1e900, 0x1e94b}, {0x1e950, 0x1e959}, {0x1ee00, 0x1ee03}, {0x1ee05, 0x1ee1f}, {0x1ee21, 0x1ee22}, {0x1ee24, 0x1ee24}, + {0x1ee27, 0x1ee27}, {0x1ee29, 0x1ee32}, {0x1ee34, 0x1ee37}, {0x1ee39, 0x1ee39}, {0x1ee3b, 0x1ee3b}, {0x1ee42, 0x1ee42}, {0x1ee47, 0x1ee47}, {0x1ee49, 0x1ee49}, + {0x1ee4b, 0x1ee4b}, {0x1ee4d, 0x1ee4f}, {0x1ee51, 0x1ee52}, {0x1ee54, 0x1ee54}, {0x1ee57, 0x1ee57}, {0x1ee59, 0x1ee59}, {0x1ee5b, 0x1ee5b}, {0x1ee5d, 0x1ee5d}, + {0x1ee5f, 0x1ee5f}, {0x1ee61, 0x1ee62}, {0x1ee64, 0x1ee64}, {0x1ee67, 0x1ee6a}, {0x1ee6c, 0x1ee72}, {0x1ee74, 0x1ee77}, {0x1ee79, 0x1ee7c}, {0x1ee7e, 0x1ee7e}, + {0x1ee80, 0x1ee89}, {0x1ee8b, 0x1ee9b}, {0x1eea1, 0x1eea3}, {0x1eea5, 0x1eea9}, {0x1eeab, 0x1eebb}, {0x1fbf0, 0x1fbf9}, {0x20000, 0x2a6df}, {0x2a700, 0x2b739}, + {0x2b740, 0x2b81d}, {0x2b820, 0x2cea1}, {0x2ceb0, 0x2ebe0}, {0x2ebf0, 0x2ee5d}, {0x2f800, 0x2fa1d}, {0x30000, 0x3134a}, {0x31350, 0x323af}, {0xe0100, 0xe01ef}, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -7700,7 +7719,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 1: if (lookahead == '\n') ADVANCE(1); @@ -7747,7 +7766,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(2); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 3: ADVANCE_MAP( @@ -7786,7 +7805,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 4: ADVANCE_MAP( @@ -7826,7 +7845,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 5: ADVANCE_MAP( @@ -7859,7 +7878,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(5); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 6: ADVANCE_MAP( @@ -7891,7 +7910,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 7: ADVANCE_MAP( @@ -7923,7 +7942,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(7); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 8: ADVANCE_MAP( @@ -7950,7 +7969,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(8); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 9: ADVANCE_MAP( @@ -7975,7 +7994,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 10: ADVANCE_MAP( @@ -8007,7 +8026,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 11: ADVANCE_MAP( @@ -8043,7 +8062,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(11); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 12: ADVANCE_MAP( @@ -8074,7 +8093,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(12); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 13: ADVANCE_MAP( @@ -8105,7 +8124,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(13); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 14: ADVANCE_MAP( @@ -8139,7 +8158,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(14); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 15: ADVANCE_MAP( @@ -8169,7 +8188,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(15); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 16: ADVANCE_MAP( @@ -8195,7 +8214,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(16); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 17: ADVANCE_MAP( @@ -8213,7 +8232,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 18: ADVANCE_MAP( @@ -8245,7 +8264,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 19: ADVANCE_MAP( @@ -8277,7 +8296,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(19); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 20: ADVANCE_MAP( @@ -8301,7 +8320,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(20); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 21: if (lookahead == '"') ADVANCE(156); @@ -8313,7 +8332,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == 'c') ADVANCE(179); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(21); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 22: ADVANCE_MAP( @@ -8331,7 +8350,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(22); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 23: ADVANCE_MAP( @@ -8351,7 +8370,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(23); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 24: if (lookahead == '&') ADVANCE(107); @@ -8388,7 +8407,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(27); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 28: if (lookahead == '*') ADVANCE(174); @@ -8561,7 +8580,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); END_STATE(); case 66: - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 67: if (lookahead != 0 && @@ -8607,7 +8626,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(68); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 69: if (eof) ADVANCE(72); @@ -8645,7 +8664,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(69); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 70: if (eof) ADVANCE(72); @@ -8684,7 +8703,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(70); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 71: if (eof) ADVANCE(72); @@ -8717,7 +8736,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(71); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(154); - if (set_contains(sym_identifier_character_set_1, 656, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_1, 668, lookahead)) ADVANCE(191); END_STATE(); case 72: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -9164,13 +9183,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n') ADVANCE(170); END_STATE(); case 171: - ACCEPT_TOKEN(sym__inner_line_doc_comment_marker); + ACCEPT_TOKEN(anon_sym_BANG2); END_STATE(); case 172: - ACCEPT_TOKEN(sym__outer_line_doc_comment_marker); + ACCEPT_TOKEN(anon_sym_SLASH2); END_STATE(); case 173: - ACCEPT_TOKEN(sym__outer_line_doc_comment_marker); + ACCEPT_TOKEN(anon_sym_SLASH2); if (lookahead == '/') ADVANCE(163); END_STATE(); case 174: @@ -9187,77 +9206,77 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 177: ACCEPT_TOKEN(sym_identifier); if (lookahead == '!') ADVANCE(74); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 178: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(156); if (lookahead == '\'') ADVANCE(26); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 179: ACCEPT_TOKEN(sym_identifier); if (lookahead == '"') ADVANCE(156); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 180: ACCEPT_TOKEN(sym_identifier); if (lookahead == '#') ADVANCE(66); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 181: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(188); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 182: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'a') ADVANCE(183); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 183: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'c') ADVANCE(187); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 184: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'e') ADVANCE(189); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 185: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(184); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 186: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(181); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 187: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') ADVANCE(186); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 188: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'r') ADVANCE(190); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 189: ACCEPT_TOKEN(sym_identifier); if (lookahead == 's') ADVANCE(177); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 190: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'u') ADVANCE(185); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 191: ACCEPT_TOKEN(sym_identifier); - if (set_contains(sym_identifier_character_set_3, 763, lookahead)) ADVANCE(191); + if (set_contains(sym_identifier_character_set_3, 776, lookahead)) ADVANCE(191); END_STATE(); case 192: ACCEPT_TOKEN(sym_shebang); @@ -10063,11 +10082,11 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [41] = {.lex_state = 3, .external_lex_state = 2}, [42] = {.lex_state = 3, .external_lex_state = 2}, [43] = {.lex_state = 5, .external_lex_state = 2}, - [44] = {.lex_state = 5, .external_lex_state = 2}, + [44] = {.lex_state = 3, .external_lex_state = 2}, [45] = {.lex_state = 5, .external_lex_state = 2}, [46] = {.lex_state = 5, .external_lex_state = 2}, [47] = {.lex_state = 5, .external_lex_state = 2}, - [48] = {.lex_state = 3, .external_lex_state = 2}, + [48] = {.lex_state = 5, .external_lex_state = 2}, [49] = {.lex_state = 5, .external_lex_state = 2}, [50] = {.lex_state = 5, .external_lex_state = 2}, [51] = {.lex_state = 5, .external_lex_state = 2}, @@ -10096,138 +10115,138 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [74] = {.lex_state = 2, .external_lex_state = 2}, [75] = {.lex_state = 2, .external_lex_state = 2}, [76] = {.lex_state = 2, .external_lex_state = 2}, - [77] = {.lex_state = 4, .external_lex_state = 2}, + [77] = {.lex_state = 2, .external_lex_state = 2}, [78] = {.lex_state = 2, .external_lex_state = 2}, [79] = {.lex_state = 2, .external_lex_state = 2}, [80] = {.lex_state = 2, .external_lex_state = 2}, [81] = {.lex_state = 2, .external_lex_state = 2}, [82] = {.lex_state = 2, .external_lex_state = 2}, - [83] = {.lex_state = 2, .external_lex_state = 2}, - [84] = {.lex_state = 2, .external_lex_state = 2}, - [85] = {.lex_state = 4, .external_lex_state = 2}, - [86] = {.lex_state = 4, .external_lex_state = 2}, + [83] = {.lex_state = 4, .external_lex_state = 2}, + [84] = {.lex_state = 4, .external_lex_state = 2}, + [85] = {.lex_state = 2, .external_lex_state = 2}, + [86] = {.lex_state = 2, .external_lex_state = 2}, [87] = {.lex_state = 2, .external_lex_state = 2}, - [88] = {.lex_state = 4, .external_lex_state = 2}, - [89] = {.lex_state = 2, .external_lex_state = 2}, - [90] = {.lex_state = 4, .external_lex_state = 2}, + [88] = {.lex_state = 2, .external_lex_state = 2}, + [89] = {.lex_state = 4, .external_lex_state = 2}, + [90] = {.lex_state = 2, .external_lex_state = 2}, [91] = {.lex_state = 4, .external_lex_state = 2}, [92] = {.lex_state = 4, .external_lex_state = 2}, - [93] = {.lex_state = 2, .external_lex_state = 2}, - [94] = {.lex_state = 2, .external_lex_state = 2}, + [93] = {.lex_state = 4, .external_lex_state = 2}, + [94] = {.lex_state = 4, .external_lex_state = 2}, [95] = {.lex_state = 4, .external_lex_state = 2}, [96] = {.lex_state = 4, .external_lex_state = 2}, [97] = {.lex_state = 4, .external_lex_state = 2}, - [98] = {.lex_state = 2, .external_lex_state = 2}, - [99] = {.lex_state = 4, .external_lex_state = 2}, - [100] = {.lex_state = 4, .external_lex_state = 2}, - [101] = {.lex_state = 4, .external_lex_state = 2}, - [102] = {.lex_state = 4, .external_lex_state = 2}, - [103] = {.lex_state = 4, .external_lex_state = 2}, - [104] = {.lex_state = 4, .external_lex_state = 2}, + [98] = {.lex_state = 4, .external_lex_state = 2}, + [99] = {.lex_state = 2, .external_lex_state = 2}, + [100] = {.lex_state = 2, .external_lex_state = 2}, + [101] = {.lex_state = 2, .external_lex_state = 2}, + [102] = {.lex_state = 2, .external_lex_state = 2}, + [103] = {.lex_state = 2, .external_lex_state = 2}, + [104] = {.lex_state = 2, .external_lex_state = 2}, [105] = {.lex_state = 4, .external_lex_state = 2}, [106] = {.lex_state = 4, .external_lex_state = 2}, [107] = {.lex_state = 4, .external_lex_state = 2}, [108] = {.lex_state = 4, .external_lex_state = 2}, - [109] = {.lex_state = 2, .external_lex_state = 2}, - [110] = {.lex_state = 2, .external_lex_state = 2}, + [109] = {.lex_state = 4, .external_lex_state = 2}, + [110] = {.lex_state = 4, .external_lex_state = 2}, [111] = {.lex_state = 4, .external_lex_state = 2}, - [112] = {.lex_state = 2, .external_lex_state = 2}, - [113] = {.lex_state = 2, .external_lex_state = 2}, - [114] = {.lex_state = 2, .external_lex_state = 2}, + [112] = {.lex_state = 4, .external_lex_state = 2}, + [113] = {.lex_state = 4, .external_lex_state = 2}, + [114] = {.lex_state = 4, .external_lex_state = 2}, [115] = {.lex_state = 4, .external_lex_state = 2}, [116] = {.lex_state = 4, .external_lex_state = 2}, - [117] = {.lex_state = 2, .external_lex_state = 2}, + [117] = {.lex_state = 4, .external_lex_state = 2}, [118] = {.lex_state = 4, .external_lex_state = 2}, [119] = {.lex_state = 4, .external_lex_state = 2}, - [120] = {.lex_state = 2, .external_lex_state = 2}, + [120] = {.lex_state = 4, .external_lex_state = 2}, [121] = {.lex_state = 4, .external_lex_state = 2}, [122] = {.lex_state = 4, .external_lex_state = 2}, [123] = {.lex_state = 4, .external_lex_state = 2}, [124] = {.lex_state = 4, .external_lex_state = 2}, [125] = {.lex_state = 4, .external_lex_state = 2}, [126] = {.lex_state = 4, .external_lex_state = 2}, - [127] = {.lex_state = 2, .external_lex_state = 2}, + [127] = {.lex_state = 4, .external_lex_state = 2}, [128] = {.lex_state = 4, .external_lex_state = 2}, [129] = {.lex_state = 4, .external_lex_state = 2}, - [130] = {.lex_state = 4, .external_lex_state = 2}, - [131] = {.lex_state = 4, .external_lex_state = 2}, - [132] = {.lex_state = 4, .external_lex_state = 2}, + [130] = {.lex_state = 2, .external_lex_state = 2}, + [131] = {.lex_state = 2, .external_lex_state = 2}, + [132] = {.lex_state = 2, .external_lex_state = 2}, [133] = {.lex_state = 4, .external_lex_state = 2}, [134] = {.lex_state = 2, .external_lex_state = 2}, [135] = {.lex_state = 2, .external_lex_state = 2}, [136] = {.lex_state = 2, .external_lex_state = 2}, - [137] = {.lex_state = 11, .external_lex_state = 2}, - [138] = {.lex_state = 11, .external_lex_state = 2}, + [137] = {.lex_state = 2, .external_lex_state = 2}, + [138] = {.lex_state = 2, .external_lex_state = 2}, [139] = {.lex_state = 2, .external_lex_state = 2}, [140] = {.lex_state = 11, .external_lex_state = 2}, - [141] = {.lex_state = 11, .external_lex_state = 2}, + [141] = {.lex_state = 2, .external_lex_state = 2}, [142] = {.lex_state = 2, .external_lex_state = 2}, [143] = {.lex_state = 2, .external_lex_state = 2}, [144] = {.lex_state = 2, .external_lex_state = 2}, - [145] = {.lex_state = 2, .external_lex_state = 2}, - [146] = {.lex_state = 2, .external_lex_state = 2}, + [145] = {.lex_state = 11, .external_lex_state = 2}, + [146] = {.lex_state = 11, .external_lex_state = 2}, [147] = {.lex_state = 2, .external_lex_state = 2}, [148] = {.lex_state = 2, .external_lex_state = 2}, - [149] = {.lex_state = 11, .external_lex_state = 2}, - [150] = {.lex_state = 2, .external_lex_state = 2}, - [151] = {.lex_state = 2, .external_lex_state = 2}, + [149] = {.lex_state = 2, .external_lex_state = 2}, + [150] = {.lex_state = 4, .external_lex_state = 2}, + [151] = {.lex_state = 11, .external_lex_state = 2}, [152] = {.lex_state = 2, .external_lex_state = 2}, [153] = {.lex_state = 2, .external_lex_state = 2}, - [154] = {.lex_state = 4, .external_lex_state = 2}, - [155] = {.lex_state = 2, .external_lex_state = 2}, - [156] = {.lex_state = 4, .external_lex_state = 2}, + [154] = {.lex_state = 2, .external_lex_state = 2}, + [155] = {.lex_state = 11, .external_lex_state = 2}, + [156] = {.lex_state = 2, .external_lex_state = 2}, [157] = {.lex_state = 2, .external_lex_state = 2}, - [158] = {.lex_state = 2, .external_lex_state = 2}, + [158] = {.lex_state = 11, .external_lex_state = 2}, [159] = {.lex_state = 2, .external_lex_state = 2}, - [160] = {.lex_state = 11, .external_lex_state = 2}, - [161] = {.lex_state = 2, .external_lex_state = 2}, + [160] = {.lex_state = 4, .external_lex_state = 2}, + [161] = {.lex_state = 11, .external_lex_state = 2}, [162] = {.lex_state = 2, .external_lex_state = 2}, - [163] = {.lex_state = 2, .external_lex_state = 2}, + [163] = {.lex_state = 11, .external_lex_state = 2}, [164] = {.lex_state = 2, .external_lex_state = 2}, - [165] = {.lex_state = 11, .external_lex_state = 2}, - [166] = {.lex_state = 11, .external_lex_state = 2}, + [165] = {.lex_state = 2, .external_lex_state = 2}, + [166] = {.lex_state = 2, .external_lex_state = 2}, [167] = {.lex_state = 2, .external_lex_state = 2}, [168] = {.lex_state = 2, .external_lex_state = 2}, [169] = {.lex_state = 11, .external_lex_state = 2}, [170] = {.lex_state = 11, .external_lex_state = 2}, [171] = {.lex_state = 11, .external_lex_state = 2}, [172] = {.lex_state = 11, .external_lex_state = 2}, - [173] = {.lex_state = 11, .external_lex_state = 2}, - [174] = {.lex_state = 4, .external_lex_state = 2}, + [173] = {.lex_state = 4, .external_lex_state = 2}, + [174] = {.lex_state = 11, .external_lex_state = 2}, [175] = {.lex_state = 4, .external_lex_state = 2}, - [176] = {.lex_state = 11, .external_lex_state = 2}, - [177] = {.lex_state = 11, .external_lex_state = 2}, - [178] = {.lex_state = 11, .external_lex_state = 2}, + [176] = {.lex_state = 4, .external_lex_state = 2}, + [177] = {.lex_state = 4, .external_lex_state = 2}, + [178] = {.lex_state = 4, .external_lex_state = 2}, [179] = {.lex_state = 11, .external_lex_state = 2}, [180] = {.lex_state = 4, .external_lex_state = 2}, - [181] = {.lex_state = 11, .external_lex_state = 2}, + [181] = {.lex_state = 4, .external_lex_state = 2}, [182] = {.lex_state = 11, .external_lex_state = 2}, [183] = {.lex_state = 4, .external_lex_state = 2}, - [184] = {.lex_state = 11, .external_lex_state = 2}, + [184] = {.lex_state = 4, .external_lex_state = 2}, [185] = {.lex_state = 4, .external_lex_state = 2}, [186] = {.lex_state = 11, .external_lex_state = 2}, - [187] = {.lex_state = 4, .external_lex_state = 2}, + [187] = {.lex_state = 11, .external_lex_state = 2}, [188] = {.lex_state = 11, .external_lex_state = 2}, [189] = {.lex_state = 11, .external_lex_state = 2}, [190] = {.lex_state = 11, .external_lex_state = 2}, [191] = {.lex_state = 11, .external_lex_state = 2}, [192] = {.lex_state = 11, .external_lex_state = 2}, - [193] = {.lex_state = 4, .external_lex_state = 2}, + [193] = {.lex_state = 11, .external_lex_state = 2}, [194] = {.lex_state = 11, .external_lex_state = 2}, [195] = {.lex_state = 11, .external_lex_state = 2}, [196] = {.lex_state = 11, .external_lex_state = 2}, - [197] = {.lex_state = 4, .external_lex_state = 2}, + [197] = {.lex_state = 11, .external_lex_state = 2}, [198] = {.lex_state = 11, .external_lex_state = 2}, - [199] = {.lex_state = 4, .external_lex_state = 2}, + [199] = {.lex_state = 11, .external_lex_state = 2}, [200] = {.lex_state = 11, .external_lex_state = 2}, - [201] = {.lex_state = 4, .external_lex_state = 2}, + [201] = {.lex_state = 11, .external_lex_state = 2}, [202] = {.lex_state = 11, .external_lex_state = 2}, [203] = {.lex_state = 11, .external_lex_state = 2}, - [204] = {.lex_state = 4, .external_lex_state = 2}, + [204] = {.lex_state = 11, .external_lex_state = 2}, [205] = {.lex_state = 11, .external_lex_state = 2}, [206] = {.lex_state = 11, .external_lex_state = 2}, [207] = {.lex_state = 11, .external_lex_state = 2}, - [208] = {.lex_state = 11, .external_lex_state = 2}, + [208] = {.lex_state = 4, .external_lex_state = 2}, [209] = {.lex_state = 11, .external_lex_state = 2}, [210] = {.lex_state = 11, .external_lex_state = 2}, [211] = {.lex_state = 11, .external_lex_state = 2}, @@ -10235,40 +10254,40 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [213] = {.lex_state = 11, .external_lex_state = 2}, [214] = {.lex_state = 11, .external_lex_state = 2}, [215] = {.lex_state = 11, .external_lex_state = 2}, - [216] = {.lex_state = 13, .external_lex_state = 2}, - [217] = {.lex_state = 11, .external_lex_state = 2}, - [218] = {.lex_state = 13, .external_lex_state = 2}, - [219] = {.lex_state = 13, .external_lex_state = 2}, + [216] = {.lex_state = 11, .external_lex_state = 2}, + [217] = {.lex_state = 13, .external_lex_state = 2}, + [218] = {.lex_state = 11, .external_lex_state = 2}, + [219] = {.lex_state = 11, .external_lex_state = 2}, [220] = {.lex_state = 13, .external_lex_state = 2}, - [221] = {.lex_state = 13, .external_lex_state = 2}, - [222] = {.lex_state = 13, .external_lex_state = 2}, + [221] = {.lex_state = 11, .external_lex_state = 2}, + [222] = {.lex_state = 11, .external_lex_state = 2}, [223] = {.lex_state = 11, .external_lex_state = 2}, [224] = {.lex_state = 13, .external_lex_state = 2}, - [225] = {.lex_state = 11, .external_lex_state = 2}, + [225] = {.lex_state = 13, .external_lex_state = 2}, [226] = {.lex_state = 11, .external_lex_state = 2}, [227] = {.lex_state = 11, .external_lex_state = 2}, - [228] = {.lex_state = 11, .external_lex_state = 2}, - [229] = {.lex_state = 13, .external_lex_state = 2}, - [230] = {.lex_state = 11, .external_lex_state = 2}, + [228] = {.lex_state = 13, .external_lex_state = 2}, + [229] = {.lex_state = 11, .external_lex_state = 2}, + [230] = {.lex_state = 13, .external_lex_state = 2}, [231] = {.lex_state = 13, .external_lex_state = 2}, [232] = {.lex_state = 13, .external_lex_state = 2}, - [233] = {.lex_state = 11, .external_lex_state = 2}, + [233] = {.lex_state = 13, .external_lex_state = 2}, [234] = {.lex_state = 13, .external_lex_state = 2}, - [235] = {.lex_state = 11, .external_lex_state = 2}, - [236] = {.lex_state = 11, .external_lex_state = 2}, - [237] = {.lex_state = 11, .external_lex_state = 2}, - [238] = {.lex_state = 13, .external_lex_state = 2}, + [235] = {.lex_state = 13, .external_lex_state = 2}, + [236] = {.lex_state = 13, .external_lex_state = 2}, + [237] = {.lex_state = 13, .external_lex_state = 2}, + [238] = {.lex_state = 11, .external_lex_state = 2}, [239] = {.lex_state = 13, .external_lex_state = 2}, - [240] = {.lex_state = 13, .external_lex_state = 2}, + [240] = {.lex_state = 11, .external_lex_state = 2}, [241] = {.lex_state = 13, .external_lex_state = 2}, [242] = {.lex_state = 11, .external_lex_state = 2}, [243] = {.lex_state = 11, .external_lex_state = 2}, - [244] = {.lex_state = 11, .external_lex_state = 2}, - [245] = {.lex_state = 69, .external_lex_state = 2}, + [244] = {.lex_state = 69, .external_lex_state = 2}, + [245] = {.lex_state = 11, .external_lex_state = 2}, [246] = {.lex_state = 11, .external_lex_state = 2}, [247] = {.lex_state = 11, .external_lex_state = 2}, [248] = {.lex_state = 11, .external_lex_state = 2}, - [249] = {.lex_state = 69, .external_lex_state = 2}, + [249] = {.lex_state = 11, .external_lex_state = 2}, [250] = {.lex_state = 11, .external_lex_state = 2}, [251] = {.lex_state = 11, .external_lex_state = 2}, [252] = {.lex_state = 11, .external_lex_state = 2}, @@ -10280,7 +10299,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [258] = {.lex_state = 11, .external_lex_state = 2}, [259] = {.lex_state = 11, .external_lex_state = 2}, [260] = {.lex_state = 11, .external_lex_state = 2}, - [261] = {.lex_state = 11, .external_lex_state = 2}, + [261] = {.lex_state = 69, .external_lex_state = 2}, [262] = {.lex_state = 11, .external_lex_state = 2}, [263] = {.lex_state = 11, .external_lex_state = 2}, [264] = {.lex_state = 11, .external_lex_state = 2}, @@ -10342,10 +10361,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [320] = {.lex_state = 11, .external_lex_state = 2}, [321] = {.lex_state = 11, .external_lex_state = 2}, [322] = {.lex_state = 11, .external_lex_state = 2}, - [323] = {.lex_state = 11, .external_lex_state = 2}, + [323] = {.lex_state = 69, .external_lex_state = 2}, [324] = {.lex_state = 11, .external_lex_state = 2}, [325] = {.lex_state = 11, .external_lex_state = 2}, - [326] = {.lex_state = 69, .external_lex_state = 2}, + [326] = {.lex_state = 11, .external_lex_state = 2}, [327] = {.lex_state = 11, .external_lex_state = 2}, [328] = {.lex_state = 11, .external_lex_state = 2}, [329] = {.lex_state = 11, .external_lex_state = 2}, @@ -10354,10 +10373,10 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [332] = {.lex_state = 11, .external_lex_state = 2}, [333] = {.lex_state = 11, .external_lex_state = 2}, [334] = {.lex_state = 11, .external_lex_state = 2}, - [335] = {.lex_state = 69, .external_lex_state = 2}, - [336] = {.lex_state = 11, .external_lex_state = 2}, + [335] = {.lex_state = 11, .external_lex_state = 2}, + [336] = {.lex_state = 69, .external_lex_state = 2}, [337] = {.lex_state = 11, .external_lex_state = 2}, - [338] = {.lex_state = 11, .external_lex_state = 2}, + [338] = {.lex_state = 69, .external_lex_state = 2}, [339] = {.lex_state = 11, .external_lex_state = 2}, [340] = {.lex_state = 11, .external_lex_state = 2}, [341] = {.lex_state = 11, .external_lex_state = 2}, @@ -10366,20 +10385,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [344] = {.lex_state = 11, .external_lex_state = 2}, [345] = {.lex_state = 11, .external_lex_state = 2}, [346] = {.lex_state = 11, .external_lex_state = 2}, - [347] = {.lex_state = 11, .external_lex_state = 2}, + [347] = {.lex_state = 69, .external_lex_state = 2}, [348] = {.lex_state = 11, .external_lex_state = 2}, [349] = {.lex_state = 11, .external_lex_state = 2}, [350] = {.lex_state = 11, .external_lex_state = 2}, [351] = {.lex_state = 11, .external_lex_state = 2}, [352] = {.lex_state = 11, .external_lex_state = 2}, - [353] = {.lex_state = 69, .external_lex_state = 2}, + [353] = {.lex_state = 11, .external_lex_state = 2}, [354] = {.lex_state = 11, .external_lex_state = 2}, [355] = {.lex_state = 11, .external_lex_state = 2}, [356] = {.lex_state = 11, .external_lex_state = 2}, [357] = {.lex_state = 11, .external_lex_state = 2}, [358] = {.lex_state = 11, .external_lex_state = 2}, [359] = {.lex_state = 11, .external_lex_state = 2}, - [360] = {.lex_state = 69, .external_lex_state = 2}, + [360] = {.lex_state = 11, .external_lex_state = 2}, [361] = {.lex_state = 11, .external_lex_state = 2}, [362] = {.lex_state = 11, .external_lex_state = 2}, [363] = {.lex_state = 11, .external_lex_state = 2}, @@ -10390,26 +10409,26 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [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 = 69, .external_lex_state = 2}, - [372] = {.lex_state = 12, .external_lex_state = 2}, - [373] = {.lex_state = 69, .external_lex_state = 2}, + [371] = {.lex_state = 12, .external_lex_state = 2}, + [372] = {.lex_state = 69, .external_lex_state = 2}, + [373] = {.lex_state = 12, .external_lex_state = 2}, [374] = {.lex_state = 69, .external_lex_state = 2}, - [375] = {.lex_state = 12, .external_lex_state = 2}, + [375] = {.lex_state = 69, .external_lex_state = 2}, [376] = {.lex_state = 69, .external_lex_state = 2}, [377] = {.lex_state = 69, .external_lex_state = 2}, - [378] = {.lex_state = 69, .external_lex_state = 2}, + [378] = {.lex_state = 12, .external_lex_state = 2}, [379] = {.lex_state = 69, .external_lex_state = 2}, [380] = {.lex_state = 69, .external_lex_state = 2}, [381] = {.lex_state = 69, .external_lex_state = 2}, - [382] = {.lex_state = 12, .external_lex_state = 2}, - [383] = {.lex_state = 12, .external_lex_state = 2}, + [382] = {.lex_state = 69, .external_lex_state = 2}, + [383] = {.lex_state = 69, .external_lex_state = 2}, [384] = {.lex_state = 69, .external_lex_state = 2}, [385] = {.lex_state = 69, .external_lex_state = 2}, [386] = {.lex_state = 69, .external_lex_state = 2}, [387] = {.lex_state = 69, .external_lex_state = 2}, - [388] = {.lex_state = 12, .external_lex_state = 2}, + [388] = {.lex_state = 69, .external_lex_state = 2}, [389] = {.lex_state = 69, .external_lex_state = 2}, - [390] = {.lex_state = 69, .external_lex_state = 2}, + [390] = {.lex_state = 12, .external_lex_state = 2}, [391] = {.lex_state = 69, .external_lex_state = 2}, [392] = {.lex_state = 69, .external_lex_state = 2}, [393] = {.lex_state = 69, .external_lex_state = 2}, @@ -10417,20 +10436,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [395] = {.lex_state = 69, .external_lex_state = 2}, [396] = {.lex_state = 12, .external_lex_state = 2}, [397] = {.lex_state = 69, .external_lex_state = 2}, - [398] = {.lex_state = 69, .external_lex_state = 2}, + [398] = {.lex_state = 12, .external_lex_state = 2}, [399] = {.lex_state = 69, .external_lex_state = 2}, [400] = {.lex_state = 12, .external_lex_state = 2}, - [401] = {.lex_state = 69, .external_lex_state = 2}, + [401] = {.lex_state = 12, .external_lex_state = 2}, [402] = {.lex_state = 12, .external_lex_state = 2}, [403] = {.lex_state = 12, .external_lex_state = 2}, - [404] = {.lex_state = 12, .external_lex_state = 2}, + [404] = {.lex_state = 69, .external_lex_state = 2}, [405] = {.lex_state = 12, .external_lex_state = 2}, [406] = {.lex_state = 12, .external_lex_state = 2}, [407] = {.lex_state = 12, .external_lex_state = 2}, [408] = {.lex_state = 12, .external_lex_state = 2}, [409] = {.lex_state = 12, .external_lex_state = 2}, - [410] = {.lex_state = 12, .external_lex_state = 2}, - [411] = {.lex_state = 11, .external_lex_state = 2}, + [410] = {.lex_state = 11, .external_lex_state = 2}, + [411] = {.lex_state = 12, .external_lex_state = 2}, [412] = {.lex_state = 11, .external_lex_state = 2}, [413] = {.lex_state = 11, .external_lex_state = 2}, [414] = {.lex_state = 12, .external_lex_state = 2}, @@ -10472,27 +10491,27 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [450] = {.lex_state = 3, .external_lex_state = 2}, [451] = {.lex_state = 3, .external_lex_state = 2}, [452] = {.lex_state = 3, .external_lex_state = 2}, - [453] = {.lex_state = 11, .external_lex_state = 2}, + [453] = {.lex_state = 3, .external_lex_state = 2}, [454] = {.lex_state = 3, .external_lex_state = 2}, [455] = {.lex_state = 3, .external_lex_state = 2}, - [456] = {.lex_state = 3, .external_lex_state = 2}, + [456] = {.lex_state = 11, .external_lex_state = 2}, [457] = {.lex_state = 3, .external_lex_state = 2}, [458] = {.lex_state = 3, .external_lex_state = 2}, - [459] = {.lex_state = 3, .external_lex_state = 2}, + [459] = {.lex_state = 11, .external_lex_state = 2}, [460] = {.lex_state = 3, .external_lex_state = 2}, - [461] = {.lex_state = 3, .external_lex_state = 2}, + [461] = {.lex_state = 11, .external_lex_state = 2}, [462] = {.lex_state = 3, .external_lex_state = 2}, [463] = {.lex_state = 3, .external_lex_state = 2}, [464] = {.lex_state = 3, .external_lex_state = 2}, [465] = {.lex_state = 3, .external_lex_state = 2}, - [466] = {.lex_state = 11, .external_lex_state = 2}, + [466] = {.lex_state = 3, .external_lex_state = 2}, [467] = {.lex_state = 3, .external_lex_state = 2}, - [468] = {.lex_state = 11, .external_lex_state = 2}, + [468] = {.lex_state = 3, .external_lex_state = 2}, [469] = {.lex_state = 3, .external_lex_state = 2}, [470] = {.lex_state = 3, .external_lex_state = 2}, [471] = {.lex_state = 3, .external_lex_state = 2}, - [472] = {.lex_state = 3, .external_lex_state = 2}, - [473] = {.lex_state = 11, .external_lex_state = 2}, + [472] = {.lex_state = 11, .external_lex_state = 2}, + [473] = {.lex_state = 3, .external_lex_state = 2}, [474] = {.lex_state = 3, .external_lex_state = 2}, [475] = {.lex_state = 11, .external_lex_state = 2}, [476] = {.lex_state = 11, .external_lex_state = 2}, @@ -10550,7 +10569,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [528] = {.lex_state = 71, .external_lex_state = 2}, [529] = {.lex_state = 71, .external_lex_state = 2}, [530] = {.lex_state = 71, .external_lex_state = 2}, - [531] = {.lex_state = 10}, + [531] = {.lex_state = 71, .external_lex_state = 2}, [532] = {.lex_state = 71, .external_lex_state = 2}, [533] = {.lex_state = 71, .external_lex_state = 2}, [534] = {.lex_state = 71, .external_lex_state = 2}, @@ -10573,7 +10592,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [551] = {.lex_state = 71, .external_lex_state = 2}, [552] = {.lex_state = 71, .external_lex_state = 2}, [553] = {.lex_state = 71, .external_lex_state = 2}, - [554] = {.lex_state = 11, .external_lex_state = 2}, + [554] = {.lex_state = 71, .external_lex_state = 2}, [555] = {.lex_state = 71, .external_lex_state = 2}, [556] = {.lex_state = 71, .external_lex_state = 2}, [557] = {.lex_state = 71, .external_lex_state = 2}, @@ -10648,7 +10667,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [626] = {.lex_state = 71, .external_lex_state = 2}, [627] = {.lex_state = 71, .external_lex_state = 2}, [628] = {.lex_state = 71, .external_lex_state = 2}, - [629] = {.lex_state = 10}, + [629] = {.lex_state = 71, .external_lex_state = 2}, [630] = {.lex_state = 71, .external_lex_state = 2}, [631] = {.lex_state = 71, .external_lex_state = 2}, [632] = {.lex_state = 71, .external_lex_state = 2}, @@ -10665,7 +10684,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [643] = {.lex_state = 71, .external_lex_state = 2}, [644] = {.lex_state = 71, .external_lex_state = 2}, [645] = {.lex_state = 71, .external_lex_state = 2}, - [646] = {.lex_state = 71, .external_lex_state = 2}, + [646] = {.lex_state = 10}, [647] = {.lex_state = 71, .external_lex_state = 2}, [648] = {.lex_state = 71, .external_lex_state = 2}, [649] = {.lex_state = 71, .external_lex_state = 2}, @@ -10673,7 +10692,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [651] = {.lex_state = 71, .external_lex_state = 2}, [652] = {.lex_state = 71, .external_lex_state = 2}, [653] = {.lex_state = 71, .external_lex_state = 2}, - [654] = {.lex_state = 71, .external_lex_state = 2}, + [654] = {.lex_state = 10}, [655] = {.lex_state = 71, .external_lex_state = 2}, [656] = {.lex_state = 71, .external_lex_state = 2}, [657] = {.lex_state = 71, .external_lex_state = 2}, @@ -10687,7 +10706,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [665] = {.lex_state = 71, .external_lex_state = 2}, [666] = {.lex_state = 71, .external_lex_state = 2}, [667] = {.lex_state = 71, .external_lex_state = 2}, - [668] = {.lex_state = 10}, + [668] = {.lex_state = 71, .external_lex_state = 2}, [669] = {.lex_state = 71, .external_lex_state = 2}, [670] = {.lex_state = 71, .external_lex_state = 2}, [671] = {.lex_state = 71, .external_lex_state = 2}, @@ -10709,15 +10728,15 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [687] = {.lex_state = 71, .external_lex_state = 2}, [688] = {.lex_state = 71, .external_lex_state = 2}, [689] = {.lex_state = 71, .external_lex_state = 2}, - [690] = {.lex_state = 71, .external_lex_state = 2}, + [690] = {.lex_state = 10}, [691] = {.lex_state = 71, .external_lex_state = 2}, - [692] = {.lex_state = 71, .external_lex_state = 2}, + [692] = {.lex_state = 10}, [693] = {.lex_state = 71, .external_lex_state = 2}, [694] = {.lex_state = 71, .external_lex_state = 2}, [695] = {.lex_state = 71, .external_lex_state = 2}, [696] = {.lex_state = 71, .external_lex_state = 2}, [697] = {.lex_state = 71, .external_lex_state = 2}, - [698] = {.lex_state = 71, .external_lex_state = 2}, + [698] = {.lex_state = 10}, [699] = {.lex_state = 71, .external_lex_state = 2}, [700] = {.lex_state = 71, .external_lex_state = 2}, [701] = {.lex_state = 71, .external_lex_state = 2}, @@ -10726,9 +10745,9 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [704] = {.lex_state = 71, .external_lex_state = 2}, [705] = {.lex_state = 71, .external_lex_state = 2}, [706] = {.lex_state = 71, .external_lex_state = 2}, - [707] = {.lex_state = 10}, + [707] = {.lex_state = 71, .external_lex_state = 2}, [708] = {.lex_state = 71, .external_lex_state = 2}, - [709] = {.lex_state = 10}, + [709] = {.lex_state = 71, .external_lex_state = 2}, [710] = {.lex_state = 71, .external_lex_state = 2}, [711] = {.lex_state = 71, .external_lex_state = 2}, [712] = {.lex_state = 71, .external_lex_state = 2}, @@ -10740,7 +10759,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [718] = {.lex_state = 71, .external_lex_state = 2}, [719] = {.lex_state = 71, .external_lex_state = 2}, [720] = {.lex_state = 71, .external_lex_state = 2}, - [721] = {.lex_state = 71, .external_lex_state = 2}, + [721] = {.lex_state = 11, .external_lex_state = 2}, [722] = {.lex_state = 71, .external_lex_state = 2}, [723] = {.lex_state = 71, .external_lex_state = 2}, [724] = {.lex_state = 71, .external_lex_state = 2}, @@ -10790,17 +10809,17 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [768] = {.lex_state = 14}, [769] = {.lex_state = 14}, [770] = {.lex_state = 14}, - [771] = {.lex_state = 14}, - [772] = {.lex_state = 11, .external_lex_state = 2}, + [771] = {.lex_state = 11, .external_lex_state = 2}, + [772] = {.lex_state = 14}, [773] = {.lex_state = 11, .external_lex_state = 2}, [774] = {.lex_state = 14}, [775] = {.lex_state = 11, .external_lex_state = 2}, [776] = {.lex_state = 11, .external_lex_state = 2}, - [777] = {.lex_state = 11, .external_lex_state = 2}, + [777] = {.lex_state = 14}, [778] = {.lex_state = 11, .external_lex_state = 2}, - [779] = {.lex_state = 14}, + [779] = {.lex_state = 11, .external_lex_state = 2}, [780] = {.lex_state = 11, .external_lex_state = 2}, - [781] = {.lex_state = 11, .external_lex_state = 2}, + [781] = {.lex_state = 12, .external_lex_state = 2}, [782] = {.lex_state = 11, .external_lex_state = 2}, [783] = {.lex_state = 11, .external_lex_state = 2}, [784] = {.lex_state = 11, .external_lex_state = 2}, @@ -10813,7 +10832,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [791] = {.lex_state = 11, .external_lex_state = 2}, [792] = {.lex_state = 11, .external_lex_state = 2}, [793] = {.lex_state = 11, .external_lex_state = 2}, - [794] = {.lex_state = 12, .external_lex_state = 2}, + [794] = {.lex_state = 11, .external_lex_state = 2}, [795] = {.lex_state = 11, .external_lex_state = 2}, [796] = {.lex_state = 11, .external_lex_state = 2}, [797] = {.lex_state = 11, .external_lex_state = 2}, @@ -10927,7 +10946,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [905] = {.lex_state = 14}, [906] = {.lex_state = 14}, [907] = {.lex_state = 14}, - [908] = {.lex_state = 14}, + [908] = {.lex_state = 11, .external_lex_state = 2}, [909] = {.lex_state = 14}, [910] = {.lex_state = 14}, [911] = {.lex_state = 14}, @@ -10988,7 +11007,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [966] = {.lex_state = 14}, [967] = {.lex_state = 14}, [968] = {.lex_state = 14}, - [969] = {.lex_state = 11, .external_lex_state = 2}, + [969] = {.lex_state = 14}, [970] = {.lex_state = 14}, [971] = {.lex_state = 14}, [972] = {.lex_state = 14}, @@ -11035,89 +11054,89 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1013] = {.lex_state = 6}, [1014] = {.lex_state = 6}, [1015] = {.lex_state = 10}, - [1016] = {.lex_state = 10}, + [1016] = {.lex_state = 6}, [1017] = {.lex_state = 6}, - [1018] = {.lex_state = 6}, + [1018] = {.lex_state = 10}, [1019] = {.lex_state = 10}, - [1020] = {.lex_state = 6}, + [1020] = {.lex_state = 10}, [1021] = {.lex_state = 6}, - [1022] = {.lex_state = 10}, - [1023] = {.lex_state = 6}, - [1024] = {.lex_state = 10}, + [1022] = {.lex_state = 6}, + [1023] = {.lex_state = 10}, + [1024] = {.lex_state = 6}, [1025] = {.lex_state = 10}, - [1026] = {.lex_state = 6}, + [1026] = {.lex_state = 10}, [1027] = {.lex_state = 10}, [1028] = {.lex_state = 6}, - [1029] = {.lex_state = 10}, - [1030] = {.lex_state = 6}, - [1031] = {.lex_state = 10}, + [1029] = {.lex_state = 6}, + [1030] = {.lex_state = 10}, + [1031] = {.lex_state = 6}, [1032] = {.lex_state = 7}, [1033] = {.lex_state = 7}, - [1034] = {.lex_state = 22}, - [1035] = {.lex_state = 7}, + [1034] = {.lex_state = 7}, + [1035] = {.lex_state = 22}, [1036] = {.lex_state = 7}, - [1037] = {.lex_state = 7}, + [1037] = {.lex_state = 22}, [1038] = {.lex_state = 22}, [1039] = {.lex_state = 22}, - [1040] = {.lex_state = 22}, - [1041] = {.lex_state = 7}, - [1042] = {.lex_state = 11, .external_lex_state = 2}, + [1040] = {.lex_state = 7}, + [1041] = {.lex_state = 11, .external_lex_state = 2}, + [1042] = {.lex_state = 7}, [1043] = {.lex_state = 22}, - [1044] = {.lex_state = 14}, - [1045] = {.lex_state = 14}, - [1046] = {.lex_state = 18}, - [1047] = {.lex_state = 18}, + [1044] = {.lex_state = 18}, + [1045] = {.lex_state = 7}, + [1046] = {.lex_state = 7}, + [1047] = {.lex_state = 7}, [1048] = {.lex_state = 7}, - [1049] = {.lex_state = 7}, + [1049] = {.lex_state = 18}, [1050] = {.lex_state = 7}, - [1051] = {.lex_state = 18}, + [1051] = {.lex_state = 7}, [1052] = {.lex_state = 7}, [1053] = {.lex_state = 18}, - [1054] = {.lex_state = 18}, - [1055] = {.lex_state = 18}, - [1056] = {.lex_state = 18}, - [1057] = {.lex_state = 6}, + [1054] = {.lex_state = 14}, + [1055] = {.lex_state = 7}, + [1056] = {.lex_state = 7}, + [1057] = {.lex_state = 7}, [1058] = {.lex_state = 7}, - [1059] = {.lex_state = 18}, + [1059] = {.lex_state = 7}, [1060] = {.lex_state = 18}, - [1061] = {.lex_state = 7}, - [1062] = {.lex_state = 7}, - [1063] = {.lex_state = 7}, - [1064] = {.lex_state = 18}, - [1065] = {.lex_state = 19}, - [1066] = {.lex_state = 7}, - [1067] = {.lex_state = 7}, - [1068] = {.lex_state = 7}, - [1069] = {.lex_state = 14}, + [1061] = {.lex_state = 18}, + [1062] = {.lex_state = 14}, + [1063] = {.lex_state = 19}, + [1064] = {.lex_state = 6}, + [1065] = {.lex_state = 14}, + [1066] = {.lex_state = 18}, + [1067] = {.lex_state = 18}, + [1068] = {.lex_state = 14}, + [1069] = {.lex_state = 7}, [1070] = {.lex_state = 7}, - [1071] = {.lex_state = 14}, + [1071] = {.lex_state = 7}, [1072] = {.lex_state = 7}, [1073] = {.lex_state = 7}, - [1074] = {.lex_state = 7}, + [1074] = {.lex_state = 14}, [1075] = {.lex_state = 7}, - [1076] = {.lex_state = 19}, - [1077] = {.lex_state = 7}, - [1078] = {.lex_state = 18}, - [1079] = {.lex_state = 7}, - [1080] = {.lex_state = 14}, - [1081] = {.lex_state = 14}, - [1082] = {.lex_state = 7}, - [1083] = {.lex_state = 7}, - [1084] = {.lex_state = 18}, - [1085] = {.lex_state = 7}, - [1086] = {.lex_state = 7}, - [1087] = {.lex_state = 7}, - [1088] = {.lex_state = 14}, - [1089] = {.lex_state = 14}, - [1090] = {.lex_state = 14}, - [1091] = {.lex_state = 10}, - [1092] = {.lex_state = 14}, - [1093] = {.lex_state = 7}, + [1076] = {.lex_state = 7}, + [1077] = {.lex_state = 14}, + [1078] = {.lex_state = 7}, + [1079] = {.lex_state = 14}, + [1080] = {.lex_state = 19}, + [1081] = {.lex_state = 18}, + [1082] = {.lex_state = 14}, + [1083] = {.lex_state = 18}, + [1084] = {.lex_state = 14}, + [1085] = {.lex_state = 18}, + [1086] = {.lex_state = 18}, + [1087] = {.lex_state = 18}, + [1088] = {.lex_state = 7}, + [1089] = {.lex_state = 7}, + [1090] = {.lex_state = 7}, + [1091] = {.lex_state = 7}, + [1092] = {.lex_state = 10}, + [1093] = {.lex_state = 10}, [1094] = {.lex_state = 10}, [1095] = {.lex_state = 10}, [1096] = {.lex_state = 10}, - [1097] = {.lex_state = 7}, - [1098] = {.lex_state = 7}, + [1097] = {.lex_state = 10}, + [1098] = {.lex_state = 10}, [1099] = {.lex_state = 10}, [1100] = {.lex_state = 10}, [1101] = {.lex_state = 10}, @@ -11125,7 +11144,7 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1103] = {.lex_state = 10}, [1104] = {.lex_state = 10}, [1105] = {.lex_state = 10}, - [1106] = {.lex_state = 7}, + [1106] = {.lex_state = 10}, [1107] = {.lex_state = 10}, [1108] = {.lex_state = 10}, [1109] = {.lex_state = 10}, @@ -11145,33 +11164,33 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1123] = {.lex_state = 10}, [1124] = {.lex_state = 10}, [1125] = {.lex_state = 10}, - [1126] = {.lex_state = 7}, - [1127] = {.lex_state = 10}, - [1128] = {.lex_state = 7}, + [1126] = {.lex_state = 10}, + [1127] = {.lex_state = 7}, + [1128] = {.lex_state = 10}, [1129] = {.lex_state = 10}, - [1130] = {.lex_state = 10}, - [1131] = {.lex_state = 7}, + [1130] = {.lex_state = 7}, + [1131] = {.lex_state = 10}, [1132] = {.lex_state = 10}, [1133] = {.lex_state = 10}, [1134] = {.lex_state = 10}, [1135] = {.lex_state = 10}, - [1136] = {.lex_state = 7}, - [1137] = {.lex_state = 7}, - [1138] = {.lex_state = 7}, + [1136] = {.lex_state = 10}, + [1137] = {.lex_state = 10}, + [1138] = {.lex_state = 10}, [1139] = {.lex_state = 10}, [1140] = {.lex_state = 10}, [1141] = {.lex_state = 10}, [1142] = {.lex_state = 10}, [1143] = {.lex_state = 10}, - [1144] = {.lex_state = 7}, + [1144] = {.lex_state = 10}, [1145] = {.lex_state = 10}, [1146] = {.lex_state = 10}, [1147] = {.lex_state = 10}, [1148] = {.lex_state = 10}, - [1149] = {.lex_state = 7}, + [1149] = {.lex_state = 10}, [1150] = {.lex_state = 10}, - [1151] = {.lex_state = 7}, - [1152] = {.lex_state = 7}, + [1151] = {.lex_state = 10}, + [1152] = {.lex_state = 10}, [1153] = {.lex_state = 10}, [1154] = {.lex_state = 10}, [1155] = {.lex_state = 10}, @@ -11179,22 +11198,22 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1157] = {.lex_state = 10}, [1158] = {.lex_state = 10}, [1159] = {.lex_state = 10}, - [1160] = {.lex_state = 7}, + [1160] = {.lex_state = 10}, [1161] = {.lex_state = 10}, [1162] = {.lex_state = 10}, [1163] = {.lex_state = 10}, - [1164] = {.lex_state = 7}, - [1165] = {.lex_state = 7}, - [1166] = {.lex_state = 7}, - [1167] = {.lex_state = 7}, - [1168] = {.lex_state = 7}, - [1169] = {.lex_state = 7}, - [1170] = {.lex_state = 7}, - [1171] = {.lex_state = 7}, - [1172] = {.lex_state = 7}, - [1173] = {.lex_state = 7}, - [1174] = {.lex_state = 7}, - [1175] = {.lex_state = 7}, + [1164] = {.lex_state = 10}, + [1165] = {.lex_state = 10}, + [1166] = {.lex_state = 10}, + [1167] = {.lex_state = 10}, + [1168] = {.lex_state = 10}, + [1169] = {.lex_state = 10}, + [1170] = {.lex_state = 10}, + [1171] = {.lex_state = 10}, + [1172] = {.lex_state = 10}, + [1173] = {.lex_state = 10}, + [1174] = {.lex_state = 10}, + [1175] = {.lex_state = 10}, [1176] = {.lex_state = 10}, [1177] = {.lex_state = 10}, [1178] = {.lex_state = 10}, @@ -11205,149 +11224,149 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1183] = {.lex_state = 7}, [1184] = {.lex_state = 10}, [1185] = {.lex_state = 10}, - [1186] = {.lex_state = 10}, + [1186] = {.lex_state = 7}, [1187] = {.lex_state = 10}, [1188] = {.lex_state = 10}, - [1189] = {.lex_state = 10}, + [1189] = {.lex_state = 7}, [1190] = {.lex_state = 10}, [1191] = {.lex_state = 10}, - [1192] = {.lex_state = 10}, - [1193] = {.lex_state = 10}, + [1192] = {.lex_state = 7}, + [1193] = {.lex_state = 7}, [1194] = {.lex_state = 10}, - [1195] = {.lex_state = 10}, - [1196] = {.lex_state = 10}, + [1195] = {.lex_state = 7}, + [1196] = {.lex_state = 7}, [1197] = {.lex_state = 10}, - [1198] = {.lex_state = 10}, - [1199] = {.lex_state = 10}, - [1200] = {.lex_state = 7}, + [1198] = {.lex_state = 7}, + [1199] = {.lex_state = 7}, + [1200] = {.lex_state = 10}, [1201] = {.lex_state = 10}, - [1202] = {.lex_state = 10}, + [1202] = {.lex_state = 7}, [1203] = {.lex_state = 10}, [1204] = {.lex_state = 10}, - [1205] = {.lex_state = 10}, - [1206] = {.lex_state = 10}, - [1207] = {.lex_state = 10}, - [1208] = {.lex_state = 10}, - [1209] = {.lex_state = 10}, - [1210] = {.lex_state = 10}, - [1211] = {.lex_state = 10}, - [1212] = {.lex_state = 10}, - [1213] = {.lex_state = 10}, + [1205] = {.lex_state = 7}, + [1206] = {.lex_state = 7}, + [1207] = {.lex_state = 7}, + [1208] = {.lex_state = 7}, + [1209] = {.lex_state = 7}, + [1210] = {.lex_state = 7}, + [1211] = {.lex_state = 7}, + [1212] = {.lex_state = 7}, + [1213] = {.lex_state = 7}, [1214] = {.lex_state = 7}, - [1215] = {.lex_state = 10}, - [1216] = {.lex_state = 7}, - [1217] = {.lex_state = 10}, - [1218] = {.lex_state = 10}, - [1219] = {.lex_state = 10}, + [1215] = {.lex_state = 7}, + [1216] = {.lex_state = 12, .external_lex_state = 2}, + [1217] = {.lex_state = 7}, + [1218] = {.lex_state = 7}, + [1219] = {.lex_state = 7}, [1220] = {.lex_state = 7}, - [1221] = {.lex_state = 10}, - [1222] = {.lex_state = 10}, + [1221] = {.lex_state = 7}, + [1222] = {.lex_state = 7}, [1223] = {.lex_state = 7}, [1224] = {.lex_state = 7}, - [1225] = {.lex_state = 10}, - [1226] = {.lex_state = 10}, - [1227] = {.lex_state = 7}, - [1228] = {.lex_state = 10}, - [1229] = {.lex_state = 10}, - [1230] = {.lex_state = 10}, - [1231] = {.lex_state = 10}, + [1225] = {.lex_state = 7}, + [1226] = {.lex_state = 7}, + [1227] = {.lex_state = 10}, + [1228] = {.lex_state = 7}, + [1229] = {.lex_state = 14}, + [1230] = {.lex_state = 14}, + [1231] = {.lex_state = 7}, [1232] = {.lex_state = 10}, [1233] = {.lex_state = 10}, [1234] = {.lex_state = 10}, - [1235] = {.lex_state = 7}, + [1235] = {.lex_state = 10}, [1236] = {.lex_state = 10}, [1237] = {.lex_state = 7}, - [1238] = {.lex_state = 10}, - [1239] = {.lex_state = 10}, + [1238] = {.lex_state = 7}, + [1239] = {.lex_state = 7}, [1240] = {.lex_state = 10}, - [1241] = {.lex_state = 10}, - [1242] = {.lex_state = 7}, - [1243] = {.lex_state = 7}, - [1244] = {.lex_state = 7}, - [1245] = {.lex_state = 14}, - [1246] = {.lex_state = 7}, + [1241] = {.lex_state = 7}, + [1242] = {.lex_state = 10}, + [1243] = {.lex_state = 11, .external_lex_state = 2}, + [1244] = {.lex_state = 10}, + [1245] = {.lex_state = 10}, + [1246] = {.lex_state = 10}, [1247] = {.lex_state = 10}, - [1248] = {.lex_state = 10}, + [1248] = {.lex_state = 7}, [1249] = {.lex_state = 7}, - [1250] = {.lex_state = 10}, - [1251] = {.lex_state = 10}, - [1252] = {.lex_state = 7}, + [1250] = {.lex_state = 7}, + [1251] = {.lex_state = 7}, + [1252] = {.lex_state = 10}, [1253] = {.lex_state = 10}, - [1254] = {.lex_state = 7}, - [1255] = {.lex_state = 7}, - [1256] = {.lex_state = 7}, + [1254] = {.lex_state = 10}, + [1255] = {.lex_state = 10}, + [1256] = {.lex_state = 10}, [1257] = {.lex_state = 7}, [1258] = {.lex_state = 10}, [1259] = {.lex_state = 10}, - [1260] = {.lex_state = 10}, - [1261] = {.lex_state = 10}, - [1262] = {.lex_state = 10}, + [1260] = {.lex_state = 14}, + [1261] = {.lex_state = 14}, + [1262] = {.lex_state = 7}, [1263] = {.lex_state = 10}, - [1264] = {.lex_state = 10}, + [1264] = {.lex_state = 7}, [1265] = {.lex_state = 10}, - [1266] = {.lex_state = 14}, - [1267] = {.lex_state = 7}, + [1266] = {.lex_state = 10}, + [1267] = {.lex_state = 10}, [1268] = {.lex_state = 10}, - [1269] = {.lex_state = 10}, - [1270] = {.lex_state = 14}, + [1269] = {.lex_state = 7}, + [1270] = {.lex_state = 10}, [1271] = {.lex_state = 10}, - [1272] = {.lex_state = 10}, - [1273] = {.lex_state = 10}, - [1274] = {.lex_state = 10}, - [1275] = {.lex_state = 10}, + [1272] = {.lex_state = 14}, + [1273] = {.lex_state = 14}, + [1274] = {.lex_state = 7}, + [1275] = {.lex_state = 14}, [1276] = {.lex_state = 10}, - [1277] = {.lex_state = 7}, - [1278] = {.lex_state = 10}, - [1279] = {.lex_state = 7}, + [1277] = {.lex_state = 10}, + [1278] = {.lex_state = 7}, + [1279] = {.lex_state = 10}, [1280] = {.lex_state = 10}, - [1281] = {.lex_state = 11, .external_lex_state = 2}, + [1281] = {.lex_state = 10}, [1282] = {.lex_state = 10}, [1283] = {.lex_state = 10}, [1284] = {.lex_state = 10}, [1285] = {.lex_state = 10}, - [1286] = {.lex_state = 10}, - [1287] = {.lex_state = 10}, - [1288] = {.lex_state = 10}, + [1286] = {.lex_state = 7}, + [1287] = {.lex_state = 7}, + [1288] = {.lex_state = 11, .external_lex_state = 2}, [1289] = {.lex_state = 10}, [1290] = {.lex_state = 10}, [1291] = {.lex_state = 7}, [1292] = {.lex_state = 7}, [1293] = {.lex_state = 7}, - [1294] = {.lex_state = 10}, - [1295] = {.lex_state = 10}, - [1296] = {.lex_state = 10}, - [1297] = {.lex_state = 10}, - [1298] = {.lex_state = 10}, - [1299] = {.lex_state = 10}, - [1300] = {.lex_state = 10}, + [1294] = {.lex_state = 7}, + [1295] = {.lex_state = 7}, + [1296] = {.lex_state = 7}, + [1297] = {.lex_state = 7}, + [1298] = {.lex_state = 7}, + [1299] = {.lex_state = 7}, + [1300] = {.lex_state = 7}, [1301] = {.lex_state = 10}, - [1302] = {.lex_state = 10}, - [1303] = {.lex_state = 7}, - [1304] = {.lex_state = 10}, - [1305] = {.lex_state = 10}, + [1302] = {.lex_state = 7}, + [1303] = {.lex_state = 12, .external_lex_state = 2}, + [1304] = {.lex_state = 7}, + [1305] = {.lex_state = 7}, [1306] = {.lex_state = 10}, - [1307] = {.lex_state = 7}, - [1308] = {.lex_state = 10}, - [1309] = {.lex_state = 10}, - [1310] = {.lex_state = 10}, + [1307] = {.lex_state = 10}, + [1308] = {.lex_state = 7}, + [1309] = {.lex_state = 7}, + [1310] = {.lex_state = 7}, [1311] = {.lex_state = 7}, - [1312] = {.lex_state = 7}, - [1313] = {.lex_state = 10}, - [1314] = {.lex_state = 14}, + [1312] = {.lex_state = 10}, + [1313] = {.lex_state = 7}, + [1314] = {.lex_state = 10}, [1315] = {.lex_state = 10}, - [1316] = {.lex_state = 14}, + [1316] = {.lex_state = 10}, [1317] = {.lex_state = 10}, - [1318] = {.lex_state = 7}, + [1318] = {.lex_state = 10}, [1319] = {.lex_state = 7}, - [1320] = {.lex_state = 10}, - [1321] = {.lex_state = 14}, + [1320] = {.lex_state = 7}, + [1321] = {.lex_state = 7}, [1322] = {.lex_state = 7}, [1323] = {.lex_state = 7}, [1324] = {.lex_state = 7}, [1325] = {.lex_state = 7}, - [1326] = {.lex_state = 14}, - [1327] = {.lex_state = 10}, - [1328] = {.lex_state = 12, .external_lex_state = 2}, + [1326] = {.lex_state = 10}, + [1327] = {.lex_state = 7}, + [1328] = {.lex_state = 10}, [1329] = {.lex_state = 10}, [1330] = {.lex_state = 10}, [1331] = {.lex_state = 10}, @@ -11355,28 +11374,28 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1333] = {.lex_state = 10}, [1334] = {.lex_state = 10}, [1335] = {.lex_state = 10}, - [1336] = {.lex_state = 10}, - [1337] = {.lex_state = 12, .external_lex_state = 2}, + [1336] = {.lex_state = 7}, + [1337] = {.lex_state = 7}, [1338] = {.lex_state = 10}, [1339] = {.lex_state = 10}, [1340] = {.lex_state = 10}, [1341] = {.lex_state = 10}, [1342] = {.lex_state = 10}, [1343] = {.lex_state = 10}, - [1344] = {.lex_state = 7}, + [1344] = {.lex_state = 10}, [1345] = {.lex_state = 10}, - [1346] = {.lex_state = 14}, - [1347] = {.lex_state = 7}, + [1346] = {.lex_state = 10}, + [1347] = {.lex_state = 10}, [1348] = {.lex_state = 10}, - [1349] = {.lex_state = 7}, - [1350] = {.lex_state = 7}, - [1351] = {.lex_state = 7}, - [1352] = {.lex_state = 7}, - [1353] = {.lex_state = 10}, - [1354] = {.lex_state = 7}, + [1349] = {.lex_state = 10}, + [1350] = {.lex_state = 10}, + [1351] = {.lex_state = 10}, + [1352] = {.lex_state = 10}, + [1353] = {.lex_state = 7}, + [1354] = {.lex_state = 10}, [1355] = {.lex_state = 10}, [1356] = {.lex_state = 10}, - [1357] = {.lex_state = 7}, + [1357] = {.lex_state = 10}, [1358] = {.lex_state = 10}, [1359] = {.lex_state = 10}, [1360] = {.lex_state = 10}, @@ -11384,122 +11403,122 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1362] = {.lex_state = 10}, [1363] = {.lex_state = 10}, [1364] = {.lex_state = 10}, - [1365] = {.lex_state = 7}, - [1366] = {.lex_state = 10}, - [1367] = {.lex_state = 10}, + [1365] = {.lex_state = 14}, + [1366] = {.lex_state = 14}, + [1367] = {.lex_state = 14}, [1368] = {.lex_state = 10}, - [1369] = {.lex_state = 10}, - [1370] = {.lex_state = 7}, + [1369] = {.lex_state = 7}, + [1370] = {.lex_state = 10}, [1371] = {.lex_state = 10}, - [1372] = {.lex_state = 7}, + [1372] = {.lex_state = 10}, [1373] = {.lex_state = 10}, [1374] = {.lex_state = 10}, - [1375] = {.lex_state = 10}, - [1376] = {.lex_state = 10}, - [1377] = {.lex_state = 10}, + [1375] = {.lex_state = 7}, + [1376] = {.lex_state = 7}, + [1377] = {.lex_state = 7}, [1378] = {.lex_state = 10}, - [1379] = {.lex_state = 7}, + [1379] = {.lex_state = 10}, [1380] = {.lex_state = 7}, - [1381] = {.lex_state = 14}, - [1382] = {.lex_state = 10}, - [1383] = {.lex_state = 11, .external_lex_state = 2}, - [1384] = {.lex_state = 10}, - [1385] = {.lex_state = 10}, - [1386] = {.lex_state = 10}, + [1381] = {.lex_state = 7}, + [1382] = {.lex_state = 7}, + [1383] = {.lex_state = 7}, + [1384] = {.lex_state = 7}, + [1385] = {.lex_state = 7}, + [1386] = {.lex_state = 7}, [1387] = {.lex_state = 7}, - [1388] = {.lex_state = 10}, + [1388] = {.lex_state = 7}, [1389] = {.lex_state = 7}, [1390] = {.lex_state = 10}, - [1391] = {.lex_state = 10}, - [1392] = {.lex_state = 7}, - [1393] = {.lex_state = 10}, + [1391] = {.lex_state = 7}, + [1392] = {.lex_state = 10}, + [1393] = {.lex_state = 7}, [1394] = {.lex_state = 10}, [1395] = {.lex_state = 10}, [1396] = {.lex_state = 10}, [1397] = {.lex_state = 10}, - [1398] = {.lex_state = 7}, - [1399] = {.lex_state = 7}, + [1398] = {.lex_state = 10}, + [1399] = {.lex_state = 10}, [1400] = {.lex_state = 10}, [1401] = {.lex_state = 10}, [1402] = {.lex_state = 10}, [1403] = {.lex_state = 10}, - [1404] = {.lex_state = 7}, + [1404] = {.lex_state = 10}, [1405] = {.lex_state = 10}, [1406] = {.lex_state = 10}, [1407] = {.lex_state = 10}, [1408] = {.lex_state = 10}, - [1409] = {.lex_state = 7}, - [1410] = {.lex_state = 7}, + [1409] = {.lex_state = 10}, + [1410] = {.lex_state = 10}, [1411] = {.lex_state = 10}, - [1412] = {.lex_state = 7}, + [1412] = {.lex_state = 10}, [1413] = {.lex_state = 7}, - [1414] = {.lex_state = 7}, - [1415] = {.lex_state = 7}, + [1414] = {.lex_state = 10}, + [1415] = {.lex_state = 10}, [1416] = {.lex_state = 10}, - [1417] = {.lex_state = 7}, - [1418] = {.lex_state = 10}, - [1419] = {.lex_state = 10}, + [1417] = {.lex_state = 10}, + [1418] = {.lex_state = 7}, + [1419] = {.lex_state = 7}, [1420] = {.lex_state = 10}, [1421] = {.lex_state = 10}, - [1422] = {.lex_state = 7}, + [1422] = {.lex_state = 10}, [1423] = {.lex_state = 10}, [1424] = {.lex_state = 10}, - [1425] = {.lex_state = 7}, - [1426] = {.lex_state = 7}, + [1425] = {.lex_state = 10}, + [1426] = {.lex_state = 10}, [1427] = {.lex_state = 10}, [1428] = {.lex_state = 10}, [1429] = {.lex_state = 10}, [1430] = {.lex_state = 10}, [1431] = {.lex_state = 10}, [1432] = {.lex_state = 10}, - [1433] = {.lex_state = 7}, - [1434] = {.lex_state = 7}, + [1433] = {.lex_state = 10}, + [1434] = {.lex_state = 10}, [1435] = {.lex_state = 10}, - [1436] = {.lex_state = 7}, - [1437] = {.lex_state = 7}, + [1436] = {.lex_state = 10}, + [1437] = {.lex_state = 10}, [1438] = {.lex_state = 10}, [1439] = {.lex_state = 7}, - [1440] = {.lex_state = 7}, + [1440] = {.lex_state = 10}, [1441] = {.lex_state = 10}, [1442] = {.lex_state = 10}, [1443] = {.lex_state = 10}, - [1444] = {.lex_state = 10}, + [1444] = {.lex_state = 7}, [1445] = {.lex_state = 10}, - [1446] = {.lex_state = 10}, - [1447] = {.lex_state = 7}, + [1446] = {.lex_state = 7}, + [1447] = {.lex_state = 10}, [1448] = {.lex_state = 10}, [1449] = {.lex_state = 7}, - [1450] = {.lex_state = 7}, + [1450] = {.lex_state = 10}, [1451] = {.lex_state = 7}, - [1452] = {.lex_state = 7}, + [1452] = {.lex_state = 10}, [1453] = {.lex_state = 10}, - [1454] = {.lex_state = 10}, - [1455] = {.lex_state = 7}, + [1454] = {.lex_state = 7}, + [1455] = {.lex_state = 10}, [1456] = {.lex_state = 10}, [1457] = {.lex_state = 10}, [1458] = {.lex_state = 10}, [1459] = {.lex_state = 10}, - [1460] = {.lex_state = 10}, - [1461] = {.lex_state = 7}, + [1460] = {.lex_state = 7}, + [1461] = {.lex_state = 10}, [1462] = {.lex_state = 7}, - [1463] = {.lex_state = 10}, - [1464] = {.lex_state = 7}, + [1463] = {.lex_state = 7}, + [1464] = {.lex_state = 10}, [1465] = {.lex_state = 10}, [1466] = {.lex_state = 10}, [1467] = {.lex_state = 10}, [1468] = {.lex_state = 10}, - [1469] = {.lex_state = 7}, - [1470] = {.lex_state = 7}, - [1471] = {.lex_state = 14}, - [1472] = {.lex_state = 7}, + [1469] = {.lex_state = 10}, + [1470] = {.lex_state = 10}, + [1471] = {.lex_state = 11, .external_lex_state = 2}, + [1472] = {.lex_state = 14}, [1473] = {.lex_state = 11, .external_lex_state = 2}, - [1474] = {.lex_state = 14}, - [1475] = {.lex_state = 11, .external_lex_state = 2}, - [1476] = {.lex_state = 11, .external_lex_state = 2}, - [1477] = {.lex_state = 7}, - [1478] = {.lex_state = 11, .external_lex_state = 2}, - [1479] = {.lex_state = 14}, - [1480] = {.lex_state = 11, .external_lex_state = 2}, + [1474] = {.lex_state = 11, .external_lex_state = 2}, + [1475] = {.lex_state = 7}, + [1476] = {.lex_state = 14}, + [1477] = {.lex_state = 11, .external_lex_state = 2}, + [1478] = {.lex_state = 7}, + [1479] = {.lex_state = 11, .external_lex_state = 2}, + [1480] = {.lex_state = 14}, [1481] = {.lex_state = 14}, [1482] = {.lex_state = 7}, [1483] = {.lex_state = 7}, @@ -11510,223 +11529,223 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1488] = {.lex_state = 7}, [1489] = {.lex_state = 7}, [1490] = {.lex_state = 7}, - [1491] = {.lex_state = 7}, - [1492] = {.lex_state = 7}, + [1491] = {.lex_state = 14}, + [1492] = {.lex_state = 9}, [1493] = {.lex_state = 7}, [1494] = {.lex_state = 7}, - [1495] = {.lex_state = 14}, - [1496] = {.lex_state = 14}, + [1495] = {.lex_state = 7}, + [1496] = {.lex_state = 7}, [1497] = {.lex_state = 7}, - [1498] = {.lex_state = 7}, + [1498] = {.lex_state = 14}, [1499] = {.lex_state = 7}, [1500] = {.lex_state = 7}, [1501] = {.lex_state = 7}, [1502] = {.lex_state = 7}, [1503] = {.lex_state = 7}, [1504] = {.lex_state = 14}, - [1505] = {.lex_state = 9}, - [1506] = {.lex_state = 8}, - [1507] = {.lex_state = 9}, + [1505] = {.lex_state = 7}, + [1506] = {.lex_state = 9}, + [1507] = {.lex_state = 8}, [1508] = {.lex_state = 9}, [1509] = {.lex_state = 7}, [1510] = {.lex_state = 11, .external_lex_state = 2}, - [1511] = {.lex_state = 11, .external_lex_state = 2}, - [1512] = {.lex_state = 9}, - [1513] = {.lex_state = 11, .external_lex_state = 2}, + [1511] = {.lex_state = 7}, + [1512] = {.lex_state = 11, .external_lex_state = 2}, + [1513] = {.lex_state = 9}, [1514] = {.lex_state = 11, .external_lex_state = 2}, - [1515] = {.lex_state = 7}, - [1516] = {.lex_state = 8}, + [1515] = {.lex_state = 11, .external_lex_state = 2}, + [1516] = {.lex_state = 7}, [1517] = {.lex_state = 14}, - [1518] = {.lex_state = 9}, - [1519] = {.lex_state = 7}, - [1520] = {.lex_state = 14}, - [1521] = {.lex_state = 9}, - [1522] = {.lex_state = 7}, - [1523] = {.lex_state = 9}, - [1524] = {.lex_state = 9}, - [1525] = {.lex_state = 8}, - [1526] = {.lex_state = 14}, + [1518] = {.lex_state = 8}, + [1519] = {.lex_state = 9}, + [1520] = {.lex_state = 9}, + [1521] = {.lex_state = 7}, + [1522] = {.lex_state = 8}, + [1523] = {.lex_state = 7}, + [1524] = {.lex_state = 8}, + [1525] = {.lex_state = 7}, + [1526] = {.lex_state = 9}, [1527] = {.lex_state = 9}, [1528] = {.lex_state = 14}, - [1529] = {.lex_state = 7}, + [1529] = {.lex_state = 9}, [1530] = {.lex_state = 9}, - [1531] = {.lex_state = 9}, + [1531] = {.lex_state = 14}, [1532] = {.lex_state = 9}, - [1533] = {.lex_state = 14}, + [1533] = {.lex_state = 9}, [1534] = {.lex_state = 7}, - [1535] = {.lex_state = 8}, - [1536] = {.lex_state = 8}, + [1535] = {.lex_state = 7}, + [1536] = {.lex_state = 14}, [1537] = {.lex_state = 7}, - [1538] = {.lex_state = 14}, + [1538] = {.lex_state = 8}, [1539] = {.lex_state = 14}, - [1540] = {.lex_state = 7}, - [1541] = {.lex_state = 7}, + [1540] = {.lex_state = 14}, + [1541] = {.lex_state = 14}, [1542] = {.lex_state = 7}, - [1543] = {.lex_state = 8}, + [1543] = {.lex_state = 7}, [1544] = {.lex_state = 8}, - [1545] = {.lex_state = 7}, - [1546] = {.lex_state = 7}, - [1547] = {.lex_state = 7}, + [1545] = {.lex_state = 8}, + [1546] = {.lex_state = 8}, + [1547] = {.lex_state = 8}, [1548] = {.lex_state = 8}, [1549] = {.lex_state = 7}, [1550] = {.lex_state = 8}, - [1551] = {.lex_state = 8}, + [1551] = {.lex_state = 7}, [1552] = {.lex_state = 8}, [1553] = {.lex_state = 7}, - [1554] = {.lex_state = 7}, + [1554] = {.lex_state = 8}, [1555] = {.lex_state = 7}, - [1556] = {.lex_state = 7}, + [1556] = {.lex_state = 8}, [1557] = {.lex_state = 8}, - [1558] = {.lex_state = 8}, - [1559] = {.lex_state = 7}, - [1560] = {.lex_state = 8}, - [1561] = {.lex_state = 7}, - [1562] = {.lex_state = 8}, + [1558] = {.lex_state = 7}, + [1559] = {.lex_state = 8}, + [1560] = {.lex_state = 7}, + [1561] = {.lex_state = 8}, + [1562] = {.lex_state = 7}, [1563] = {.lex_state = 7}, - [1564] = {.lex_state = 7}, + [1564] = {.lex_state = 8}, [1565] = {.lex_state = 7}, [1566] = {.lex_state = 7}, [1567] = {.lex_state = 7}, [1568] = {.lex_state = 8}, [1569] = {.lex_state = 7}, - [1570] = {.lex_state = 8}, - [1571] = {.lex_state = 8}, - [1572] = {.lex_state = 8}, + [1570] = {.lex_state = 7}, + [1571] = {.lex_state = 7}, + [1572] = {.lex_state = 7}, [1573] = {.lex_state = 7}, [1574] = {.lex_state = 7}, - [1575] = {.lex_state = 20}, - [1576] = {.lex_state = 20}, - [1577] = {.lex_state = 8}, - [1578] = {.lex_state = 8}, - [1579] = {.lex_state = 20}, - [1580] = {.lex_state = 8}, + [1575] = {.lex_state = 7}, + [1576] = {.lex_state = 7}, + [1577] = {.lex_state = 7}, + [1578] = {.lex_state = 7}, + [1579] = {.lex_state = 7}, + [1580] = {.lex_state = 7}, [1581] = {.lex_state = 8}, [1582] = {.lex_state = 8}, - [1583] = {.lex_state = 20}, - [1584] = {.lex_state = 8}, - [1585] = {.lex_state = 9}, - [1586] = {.lex_state = 20}, - [1587] = {.lex_state = 7}, - [1588] = {.lex_state = 8}, - [1589] = {.lex_state = 8}, + [1583] = {.lex_state = 8}, + [1584] = {.lex_state = 20}, + [1585] = {.lex_state = 7}, + [1586] = {.lex_state = 9}, + [1587] = {.lex_state = 8}, + [1588] = {.lex_state = 7}, + [1589] = {.lex_state = 7}, [1590] = {.lex_state = 7}, - [1591] = {.lex_state = 7}, - [1592] = {.lex_state = 7}, + [1591] = {.lex_state = 8}, + [1592] = {.lex_state = 14}, [1593] = {.lex_state = 7}, - [1594] = {.lex_state = 7}, - [1595] = {.lex_state = 7}, - [1596] = {.lex_state = 7}, - [1597] = {.lex_state = 7}, - [1598] = {.lex_state = 7}, - [1599] = {.lex_state = 7}, - [1600] = {.lex_state = 7}, - [1601] = {.lex_state = 8}, - [1602] = {.lex_state = 8}, - [1603] = {.lex_state = 7}, + [1594] = {.lex_state = 20}, + [1595] = {.lex_state = 8}, + [1596] = {.lex_state = 8}, + [1597] = {.lex_state = 8}, + [1598] = {.lex_state = 20}, + [1599] = {.lex_state = 8}, + [1600] = {.lex_state = 8}, + [1601] = {.lex_state = 7}, + [1602] = {.lex_state = 20}, + [1603] = {.lex_state = 8}, [1604] = {.lex_state = 8}, - [1605] = {.lex_state = 7}, - [1606] = {.lex_state = 8}, - [1607] = {.lex_state = 8}, - [1608] = {.lex_state = 7}, - [1609] = {.lex_state = 7}, + [1605] = {.lex_state = 20}, + [1606] = {.lex_state = 7}, + [1607] = {.lex_state = 7}, + [1608] = {.lex_state = 8}, + [1609] = {.lex_state = 8}, [1610] = {.lex_state = 7}, - [1611] = {.lex_state = 8}, - [1612] = {.lex_state = 14}, - [1613] = {.lex_state = 7}, - [1614] = {.lex_state = 7}, - [1615] = {.lex_state = 20}, - [1616] = {.lex_state = 8}, - [1617] = {.lex_state = 7}, - [1618] = {.lex_state = 7}, - [1619] = {.lex_state = 20}, - [1620] = {.lex_state = 20}, + [1611] = {.lex_state = 20}, + [1612] = {.lex_state = 8}, + [1613] = {.lex_state = 14}, + [1614] = {.lex_state = 20}, + [1615] = {.lex_state = 7}, + [1616] = {.lex_state = 7}, + [1617] = {.lex_state = 20}, + [1618] = {.lex_state = 14}, + [1619] = {.lex_state = 7}, + [1620] = {.lex_state = 8}, [1621] = {.lex_state = 8}, - [1622] = {.lex_state = 7}, - [1623] = {.lex_state = 7}, - [1624] = {.lex_state = 14}, - [1625] = {.lex_state = 20}, + [1622] = {.lex_state = 20}, + [1623] = {.lex_state = 20}, + [1624] = {.lex_state = 20}, + [1625] = {.lex_state = 7}, [1626] = {.lex_state = 20}, - [1627] = {.lex_state = 20}, + [1627] = {.lex_state = 7}, [1628] = {.lex_state = 7}, [1629] = {.lex_state = 7}, - [1630] = {.lex_state = 14}, + [1630] = {.lex_state = 7}, [1631] = {.lex_state = 8}, - [1632] = {.lex_state = 20}, + [1632] = {.lex_state = 7}, [1633] = {.lex_state = 8}, - [1634] = {.lex_state = 8}, + [1634] = {.lex_state = 7}, [1635] = {.lex_state = 8}, - [1636] = {.lex_state = 8}, + [1636] = {.lex_state = 7}, [1637] = {.lex_state = 8}, - [1638] = {.lex_state = 8}, - [1639] = {.lex_state = 7}, - [1640] = {.lex_state = 7}, + [1638] = {.lex_state = 7}, + [1639] = {.lex_state = 8}, + [1640] = {.lex_state = 8}, [1641] = {.lex_state = 8}, - [1642] = {.lex_state = 7}, - [1643] = {.lex_state = 7}, - [1644] = {.lex_state = 7}, + [1642] = {.lex_state = 8}, + [1643] = {.lex_state = 8}, + [1644] = {.lex_state = 8}, [1645] = {.lex_state = 8}, - [1646] = {.lex_state = 7}, - [1647] = {.lex_state = 7}, - [1648] = {.lex_state = 7}, - [1649] = {.lex_state = 7}, - [1650] = {.lex_state = 7}, - [1651] = {.lex_state = 7}, + [1646] = {.lex_state = 8}, + [1647] = {.lex_state = 8}, + [1648] = {.lex_state = 8}, + [1649] = {.lex_state = 8}, + [1650] = {.lex_state = 8}, + [1651] = {.lex_state = 8}, [1652] = {.lex_state = 8}, - [1653] = {.lex_state = 7}, + [1653] = {.lex_state = 8}, [1654] = {.lex_state = 7}, - [1655] = {.lex_state = 7}, - [1656] = {.lex_state = 7}, + [1655] = {.lex_state = 8}, + [1656] = {.lex_state = 8}, [1657] = {.lex_state = 8}, [1658] = {.lex_state = 8}, [1659] = {.lex_state = 8}, - [1660] = {.lex_state = 8}, - [1661] = {.lex_state = 7}, + [1660] = {.lex_state = 7}, + [1661] = {.lex_state = 8}, [1662] = {.lex_state = 8}, [1663] = {.lex_state = 8}, - [1664] = {.lex_state = 7}, + [1664] = {.lex_state = 8}, [1665] = {.lex_state = 8}, - [1666] = {.lex_state = 7}, + [1666] = {.lex_state = 8}, [1667] = {.lex_state = 8}, - [1668] = {.lex_state = 7}, + [1668] = {.lex_state = 8}, [1669] = {.lex_state = 8}, - [1670] = {.lex_state = 7}, - [1671] = {.lex_state = 8}, + [1670] = {.lex_state = 8}, + [1671] = {.lex_state = 7}, [1672] = {.lex_state = 8}, [1673] = {.lex_state = 8}, [1674] = {.lex_state = 7}, - [1675] = {.lex_state = 14}, - [1676] = {.lex_state = 7}, + [1675] = {.lex_state = 8}, + [1676] = {.lex_state = 8}, [1677] = {.lex_state = 8}, - [1678] = {.lex_state = 7}, - [1679] = {.lex_state = 7}, + [1678] = {.lex_state = 8}, + [1679] = {.lex_state = 8}, [1680] = {.lex_state = 8}, - [1681] = {.lex_state = 7}, + [1681] = {.lex_state = 8}, [1682] = {.lex_state = 7}, - [1683] = {.lex_state = 7}, - [1684] = {.lex_state = 7}, + [1683] = {.lex_state = 8}, + [1684] = {.lex_state = 8}, [1685] = {.lex_state = 8}, - [1686] = {.lex_state = 7}, - [1687] = {.lex_state = 7}, - [1688] = {.lex_state = 7}, - [1689] = {.lex_state = 7}, + [1686] = {.lex_state = 8}, + [1687] = {.lex_state = 8}, + [1688] = {.lex_state = 8}, + [1689] = {.lex_state = 8}, [1690] = {.lex_state = 7}, - [1691] = {.lex_state = 7}, - [1692] = {.lex_state = 7}, + [1691] = {.lex_state = 8}, + [1692] = {.lex_state = 8}, [1693] = {.lex_state = 8}, [1694] = {.lex_state = 8}, - [1695] = {.lex_state = 8}, - [1696] = {.lex_state = 7}, - [1697] = {.lex_state = 8}, - [1698] = {.lex_state = 8}, - [1699] = {.lex_state = 8}, + [1695] = {.lex_state = 7}, + [1696] = {.lex_state = 8}, + [1697] = {.lex_state = 7}, + [1698] = {.lex_state = 7}, + [1699] = {.lex_state = 7}, [1700] = {.lex_state = 8}, [1701] = {.lex_state = 8}, - [1702] = {.lex_state = 8}, - [1703] = {.lex_state = 8}, - [1704] = {.lex_state = 8}, + [1702] = {.lex_state = 7}, + [1703] = {.lex_state = 7}, + [1704] = {.lex_state = 7}, [1705] = {.lex_state = 8}, [1706] = {.lex_state = 8}, - [1707] = {.lex_state = 7}, + [1707] = {.lex_state = 8}, [1708] = {.lex_state = 8}, [1709] = {.lex_state = 8}, [1710] = {.lex_state = 7}, @@ -11734,20 +11753,20 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1712] = {.lex_state = 7}, [1713] = {.lex_state = 7}, [1714] = {.lex_state = 7}, - [1715] = {.lex_state = 8}, - [1716] = {.lex_state = 8}, + [1715] = {.lex_state = 7}, + [1716] = {.lex_state = 7}, [1717] = {.lex_state = 7}, - [1718] = {.lex_state = 8}, - [1719] = {.lex_state = 8}, + [1718] = {.lex_state = 7}, + [1719] = {.lex_state = 7}, [1720] = {.lex_state = 7}, - [1721] = {.lex_state = 8}, - [1722] = {.lex_state = 8}, + [1721] = {.lex_state = 7}, + [1722] = {.lex_state = 7}, [1723] = {.lex_state = 8}, - [1724] = {.lex_state = 7}, + [1724] = {.lex_state = 8}, [1725] = {.lex_state = 8}, [1726] = {.lex_state = 8}, - [1727] = {.lex_state = 8}, - [1728] = {.lex_state = 7}, + [1727] = {.lex_state = 7}, + [1728] = {.lex_state = 8}, [1729] = {.lex_state = 8}, [1730] = {.lex_state = 8}, [1731] = {.lex_state = 8}, @@ -11756,116 +11775,116 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1734] = {.lex_state = 8}, [1735] = {.lex_state = 8}, [1736] = {.lex_state = 8}, - [1737] = {.lex_state = 7}, - [1738] = {.lex_state = 7}, + [1737] = {.lex_state = 8}, + [1738] = {.lex_state = 8}, [1739] = {.lex_state = 8}, - [1740] = {.lex_state = 8}, + [1740] = {.lex_state = 7}, [1741] = {.lex_state = 8}, [1742] = {.lex_state = 8}, [1743] = {.lex_state = 8}, - [1744] = {.lex_state = 7}, + [1744] = {.lex_state = 8}, [1745] = {.lex_state = 8}, - [1746] = {.lex_state = 8}, - [1747] = {.lex_state = 7}, - [1748] = {.lex_state = 8}, + [1746] = {.lex_state = 7}, + [1747] = {.lex_state = 8}, + [1748] = {.lex_state = 7}, [1749] = {.lex_state = 8}, [1750] = {.lex_state = 8}, - [1751] = {.lex_state = 8}, + [1751] = {.lex_state = 7}, [1752] = {.lex_state = 8}, [1753] = {.lex_state = 8}, - [1754] = {.lex_state = 7}, - [1755] = {.lex_state = 7}, - [1756] = {.lex_state = 7}, + [1754] = {.lex_state = 8}, + [1755] = {.lex_state = 8}, + [1756] = {.lex_state = 8}, [1757] = {.lex_state = 8}, - [1758] = {.lex_state = 7}, + [1758] = {.lex_state = 8}, [1759] = {.lex_state = 8}, - [1760] = {.lex_state = 7}, + [1760] = {.lex_state = 8}, [1761] = {.lex_state = 8}, - [1762] = {.lex_state = 7}, + [1762] = {.lex_state = 8}, [1763] = {.lex_state = 8}, [1764] = {.lex_state = 8}, [1765] = {.lex_state = 8}, - [1766] = {.lex_state = 7}, + [1766] = {.lex_state = 8}, [1767] = {.lex_state = 8}, - [1768] = {.lex_state = 8}, + [1768] = {.lex_state = 7}, [1769] = {.lex_state = 8}, [1770] = {.lex_state = 8}, [1771] = {.lex_state = 8}, [1772] = {.lex_state = 8}, - [1773] = {.lex_state = 7}, - [1774] = {.lex_state = 7}, + [1773] = {.lex_state = 8}, + [1774] = {.lex_state = 8}, [1775] = {.lex_state = 8}, [1776] = {.lex_state = 8}, - [1777] = {.lex_state = 7}, - [1778] = {.lex_state = 7}, + [1777] = {.lex_state = 8}, + [1778] = {.lex_state = 8}, [1779] = {.lex_state = 8}, [1780] = {.lex_state = 8}, [1781] = {.lex_state = 8}, - [1782] = {.lex_state = 8}, + [1782] = {.lex_state = 7}, [1783] = {.lex_state = 8}, [1784] = {.lex_state = 8}, [1785] = {.lex_state = 8}, [1786] = {.lex_state = 7}, [1787] = {.lex_state = 8}, [1788] = {.lex_state = 8}, - [1789] = {.lex_state = 7}, + [1789] = {.lex_state = 8}, [1790] = {.lex_state = 8}, [1791] = {.lex_state = 8}, [1792] = {.lex_state = 8}, [1793] = {.lex_state = 7}, [1794] = {.lex_state = 7}, - [1795] = {.lex_state = 7}, - [1796] = {.lex_state = 8}, - [1797] = {.lex_state = 8}, - [1798] = {.lex_state = 8}, - [1799] = {.lex_state = 8}, - [1800] = {.lex_state = 8}, - [1801] = {.lex_state = 8}, - [1802] = {.lex_state = 8}, - [1803] = {.lex_state = 8}, + [1795] = {.lex_state = 14}, + [1796] = {.lex_state = 7}, + [1797] = {.lex_state = 7}, + [1798] = {.lex_state = 7}, + [1799] = {.lex_state = 7}, + [1800] = {.lex_state = 7}, + [1801] = {.lex_state = 7}, + [1802] = {.lex_state = 7}, + [1803] = {.lex_state = 7}, [1804] = {.lex_state = 7}, [1805] = {.lex_state = 7}, - [1806] = {.lex_state = 8}, + [1806] = {.lex_state = 7}, [1807] = {.lex_state = 7}, - [1808] = {.lex_state = 8}, - [1809] = {.lex_state = 8}, - [1810] = {.lex_state = 8}, - [1811] = {.lex_state = 8}, - [1812] = {.lex_state = 8}, - [1813] = {.lex_state = 8}, + [1808] = {.lex_state = 7}, + [1809] = {.lex_state = 7}, + [1810] = {.lex_state = 7}, + [1811] = {.lex_state = 7}, + [1812] = {.lex_state = 7}, + [1813] = {.lex_state = 7}, [1814] = {.lex_state = 7}, [1815] = {.lex_state = 7}, - [1816] = {.lex_state = 8}, - [1817] = {.lex_state = 8}, + [1816] = {.lex_state = 7}, + [1817] = {.lex_state = 7}, [1818] = {.lex_state = 7}, - [1819] = {.lex_state = 8}, - [1820] = {.lex_state = 8}, - [1821] = {.lex_state = 8}, + [1819] = {.lex_state = 7}, + [1820] = {.lex_state = 7}, + [1821] = {.lex_state = 7}, [1822] = {.lex_state = 7}, - [1823] = {.lex_state = 8}, + [1823] = {.lex_state = 7}, [1824] = {.lex_state = 7}, - [1825] = {.lex_state = 8}, + [1825] = {.lex_state = 7}, [1826] = {.lex_state = 7}, [1827] = {.lex_state = 7}, - [1828] = {.lex_state = 8}, - [1829] = {.lex_state = 8}, + [1828] = {.lex_state = 7}, + [1829] = {.lex_state = 7}, [1830] = {.lex_state = 7}, - [1831] = {.lex_state = 8}, - [1832] = {.lex_state = 8}, + [1831] = {.lex_state = 7}, + [1832] = {.lex_state = 7}, [1833] = {.lex_state = 7}, [1834] = {.lex_state = 7}, [1835] = {.lex_state = 7}, - [1836] = {.lex_state = 8}, + [1836] = {.lex_state = 7}, [1837] = {.lex_state = 7}, - [1838] = {.lex_state = 8}, - [1839] = {.lex_state = 8}, + [1838] = {.lex_state = 7}, + [1839] = {.lex_state = 7}, [1840] = {.lex_state = 7}, - [1841] = {.lex_state = 7}, + [1841] = {.lex_state = 8}, [1842] = {.lex_state = 7}, [1843] = {.lex_state = 7}, [1844] = {.lex_state = 7}, [1845] = {.lex_state = 7}, - [1846] = {.lex_state = 7}, + [1846] = {.lex_state = 14}, [1847] = {.lex_state = 8}, [1848] = {.lex_state = 7}, [1849] = {.lex_state = 7}, @@ -11877,24 +11896,24 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1855] = {.lex_state = 7}, [1856] = {.lex_state = 7}, [1857] = {.lex_state = 7}, - [1858] = {.lex_state = 14}, - [1859] = {.lex_state = 8}, + [1858] = {.lex_state = 7}, + [1859] = {.lex_state = 7}, [1860] = {.lex_state = 7}, [1861] = {.lex_state = 7}, [1862] = {.lex_state = 7}, [1863] = {.lex_state = 7}, [1864] = {.lex_state = 7}, - [1865] = {.lex_state = 7}, + [1865] = {.lex_state = 8}, [1866] = {.lex_state = 7}, - [1867] = {.lex_state = 14}, + [1867] = {.lex_state = 7}, [1868] = {.lex_state = 7}, [1869] = {.lex_state = 7}, - [1870] = {.lex_state = 8}, + [1870] = {.lex_state = 7}, [1871] = {.lex_state = 7}, [1872] = {.lex_state = 7}, [1873] = {.lex_state = 7}, - [1874] = {.lex_state = 7}, - [1875] = {.lex_state = 7}, + [1874] = {.lex_state = 14}, + [1875] = {.lex_state = 8}, [1876] = {.lex_state = 14}, [1877] = {.lex_state = 14}, [1878] = {.lex_state = 14}, @@ -11922,8 +11941,8 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1900] = {.lex_state = 14}, [1901] = {.lex_state = 14}, [1902] = {.lex_state = 27}, - [1903] = {.lex_state = 27}, - [1904] = {.lex_state = 16}, + [1903] = {.lex_state = 16}, + [1904] = {.lex_state = 27}, [1905] = {.lex_state = 16}, [1906] = {.lex_state = 16}, [1907] = {.lex_state = 16}, @@ -11934,109 +11953,109 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [1912] = {.lex_state = 16}, [1913] = {.lex_state = 16}, [1914] = {.lex_state = 27}, - [1915] = {.lex_state = 27}, + [1915] = {.lex_state = 16}, [1916] = {.lex_state = 27}, [1917] = {.lex_state = 27}, [1918] = {.lex_state = 16}, [1919] = {.lex_state = 16}, - [1920] = {.lex_state = 16}, + [1920] = {.lex_state = 27}, [1921] = {.lex_state = 14}, [1922] = {.lex_state = 14}, [1923] = {.lex_state = 14}, [1924] = {.lex_state = 14}, - [1925] = {.lex_state = 27}, - [1926] = {.lex_state = 14}, + [1925] = {.lex_state = 14}, + [1926] = {.lex_state = 27}, [1927] = {.lex_state = 14}, [1928] = {.lex_state = 14}, [1929] = {.lex_state = 14}, - [1930] = {.lex_state = 16}, + [1930] = {.lex_state = 14}, [1931] = {.lex_state = 14}, [1932] = {.lex_state = 14}, [1933] = {.lex_state = 14}, [1934] = {.lex_state = 14}, - [1935] = {.lex_state = 14}, + [1935] = {.lex_state = 16}, [1936] = {.lex_state = 16}, - [1937] = {.lex_state = 27}, - [1938] = {.lex_state = 16}, + [1937] = {.lex_state = 16}, + [1938] = {.lex_state = 14}, [1939] = {.lex_state = 27}, - [1940] = {.lex_state = 16}, - [1941] = {.lex_state = 14}, - [1942] = {.lex_state = 27}, + [1940] = {.lex_state = 14}, + [1941] = {.lex_state = 27}, + [1942] = {.lex_state = 16}, [1943] = {.lex_state = 27}, [1944] = {.lex_state = 14}, - [1945] = {.lex_state = 16}, + [1945] = {.lex_state = 27}, [1946] = {.lex_state = 27}, [1947] = {.lex_state = 27}, [1948] = {.lex_state = 27}, [1949] = {.lex_state = 14}, - [1950] = {.lex_state = 14}, + [1950] = {.lex_state = 27}, [1951] = {.lex_state = 14}, - [1952] = {.lex_state = 27}, + [1952] = {.lex_state = 14}, [1953] = {.lex_state = 27}, [1954] = {.lex_state = 27}, - [1955] = {.lex_state = 27}, + [1955] = {.lex_state = 16}, [1956] = {.lex_state = 27}, - [1957] = {.lex_state = 14}, - [1958] = {.lex_state = 27}, + [1957] = {.lex_state = 27}, + [1958] = {.lex_state = 16}, [1959] = {.lex_state = 27}, [1960] = {.lex_state = 27}, - [1961] = {.lex_state = 16}, - [1962] = {.lex_state = 14}, + [1961] = {.lex_state = 14}, + [1962] = {.lex_state = 27}, [1963] = {.lex_state = 27}, [1964] = {.lex_state = 14}, [1965] = {.lex_state = 27}, [1966] = {.lex_state = 27}, [1967] = {.lex_state = 27}, [1968] = {.lex_state = 27}, - [1969] = {.lex_state = 14}, + [1969] = {.lex_state = 27}, [1970] = {.lex_state = 27}, [1971] = {.lex_state = 27}, [1972] = {.lex_state = 27}, [1973] = {.lex_state = 27}, - [1974] = {.lex_state = 16}, + [1974] = {.lex_state = 14}, [1975] = {.lex_state = 27}, [1976] = {.lex_state = 27}, [1977] = {.lex_state = 14}, - [1978] = {.lex_state = 14}, + [1978] = {.lex_state = 27}, [1979] = {.lex_state = 27}, - [1980] = {.lex_state = 27}, - [1981] = {.lex_state = 27}, + [1980] = {.lex_state = 14}, + [1981] = {.lex_state = 16}, [1982] = {.lex_state = 14}, [1983] = {.lex_state = 27}, [1984] = {.lex_state = 27}, [1985] = {.lex_state = 27}, [1986] = {.lex_state = 27}, - [1987] = {.lex_state = 27}, + [1987] = {.lex_state = 14}, [1988] = {.lex_state = 27}, [1989] = {.lex_state = 27}, [1990] = {.lex_state = 27}, [1991] = {.lex_state = 27}, - [1992] = {.lex_state = 14}, + [1992] = {.lex_state = 27}, [1993] = {.lex_state = 27}, [1994] = {.lex_state = 27}, [1995] = {.lex_state = 27}, [1996] = {.lex_state = 27}, [1997] = {.lex_state = 27}, - [1998] = {.lex_state = 16}, + [1998] = {.lex_state = 14}, [1999] = {.lex_state = 14}, - [2000] = {.lex_state = 14}, + [2000] = {.lex_state = 16}, [2001] = {.lex_state = 27}, [2002] = {.lex_state = 16}, [2003] = {.lex_state = 16}, - [2004] = {.lex_state = 16}, - [2005] = {.lex_state = 16}, + [2004] = {.lex_state = 27}, + [2005] = {.lex_state = 27}, [2006] = {.lex_state = 16}, - [2007] = {.lex_state = 27}, - [2008] = {.lex_state = 27}, + [2007] = {.lex_state = 17}, + [2008] = {.lex_state = 16}, [2009] = {.lex_state = 16}, [2010] = {.lex_state = 16}, - [2011] = {.lex_state = 16}, - [2012] = {.lex_state = 17}, + [2011] = {.lex_state = 27}, + [2012] = {.lex_state = 16}, [2013] = {.lex_state = 16}, [2014] = {.lex_state = 16}, [2015] = {.lex_state = 16}, [2016] = {.lex_state = 16}, - [2017] = {.lex_state = 27}, + [2017] = {.lex_state = 16}, [2018] = {.lex_state = 14}, [2019] = {.lex_state = 14}, [2020] = {.lex_state = 14}, @@ -12053,66 +12072,66 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2031] = {.lex_state = 14}, [2032] = {.lex_state = 14}, [2033] = {.lex_state = 14}, - [2034] = {.lex_state = 14}, - [2035] = {.lex_state = 23}, - [2036] = {.lex_state = 17}, - [2037] = {.lex_state = 27}, - [2038] = {.lex_state = 17}, - [2039] = {.lex_state = 16}, - [2040] = {.lex_state = 21}, - [2041] = {.lex_state = 21}, - [2042] = {.lex_state = 16}, - [2043] = {.lex_state = 27}, - [2044] = {.lex_state = 14}, - [2045] = {.lex_state = 14}, - [2046] = {.lex_state = 21}, + [2034] = {.lex_state = 16}, + [2035] = {.lex_state = 14}, + [2036] = {.lex_state = 14}, + [2037] = {.lex_state = 16}, + [2038] = {.lex_state = 16}, + [2039] = {.lex_state = 27}, + [2040] = {.lex_state = 17}, + [2041] = {.lex_state = 14}, + [2042] = {.lex_state = 23}, + [2043] = {.lex_state = 14}, + [2044] = {.lex_state = 16}, + [2045] = {.lex_state = 17}, + [2046] = {.lex_state = 14}, [2047] = {.lex_state = 27}, - [2048] = {.lex_state = 27}, - [2049] = {.lex_state = 14}, - [2050] = {.lex_state = 14}, + [2048] = {.lex_state = 14}, + [2049] = {.lex_state = 23}, + [2050] = {.lex_state = 21}, [2051] = {.lex_state = 14}, [2052] = {.lex_state = 14}, - [2053] = {.lex_state = 14}, - [2054] = {.lex_state = 23}, + [2053] = {.lex_state = 27}, + [2054] = {.lex_state = 14}, [2055] = {.lex_state = 14}, - [2056] = {.lex_state = 14}, - [2057] = {.lex_state = 16}, + [2056] = {.lex_state = 27}, + [2057] = {.lex_state = 14}, [2058] = {.lex_state = 16}, - [2059] = {.lex_state = 16}, - [2060] = {.lex_state = 27}, - [2061] = {.lex_state = 16}, - [2062] = {.lex_state = 16}, - [2063] = {.lex_state = 17}, - [2064] = {.lex_state = 16}, - [2065] = {.lex_state = 14}, - [2066] = {.lex_state = 14}, + [2059] = {.lex_state = 27}, + [2060] = {.lex_state = 14}, + [2061] = {.lex_state = 14}, + [2062] = {.lex_state = 14}, + [2063] = {.lex_state = 14}, + [2064] = {.lex_state = 21}, + [2065] = {.lex_state = 16}, + [2066] = {.lex_state = 17}, [2067] = {.lex_state = 17}, - [2068] = {.lex_state = 14}, - [2069] = {.lex_state = 21}, - [2070] = {.lex_state = 14}, - [2071] = {.lex_state = 14}, + [2068] = {.lex_state = 21}, + [2069] = {.lex_state = 14}, + [2070] = {.lex_state = 16}, + [2071] = {.lex_state = 21}, [2072] = {.lex_state = 16}, - [2073] = {.lex_state = 14}, - [2074] = {.lex_state = 14}, - [2075] = {.lex_state = 16}, - [2076] = {.lex_state = 14}, - [2077] = {.lex_state = 23}, - [2078] = {.lex_state = 16}, + [2073] = {.lex_state = 16}, + [2074] = {.lex_state = 16}, + [2075] = {.lex_state = 14}, + [2076] = {.lex_state = 27}, + [2077] = {.lex_state = 27}, + [2078] = {.lex_state = 27}, [2079] = {.lex_state = 27}, [2080] = {.lex_state = 27}, - [2081] = {.lex_state = 14}, - [2082] = {.lex_state = 14}, + [2081] = {.lex_state = 27}, + [2082] = {.lex_state = 27}, [2083] = {.lex_state = 27}, [2084] = {.lex_state = 27}, [2085] = {.lex_state = 27}, [2086] = {.lex_state = 27}, - [2087] = {.lex_state = 27}, + [2087] = {.lex_state = 23}, [2088] = {.lex_state = 27}, - [2089] = {.lex_state = 27}, - [2090] = {.lex_state = 27}, + [2089] = {.lex_state = 14}, + [2090] = {.lex_state = 14}, [2091] = {.lex_state = 27}, [2092] = {.lex_state = 27}, - [2093] = {.lex_state = 16}, + [2093] = {.lex_state = 27}, [2094] = {.lex_state = 27}, [2095] = {.lex_state = 27}, [2096] = {.lex_state = 27}, @@ -12124,123 +12143,123 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2102] = {.lex_state = 27}, [2103] = {.lex_state = 27}, [2104] = {.lex_state = 27}, - [2105] = {.lex_state = 27}, - [2106] = {.lex_state = 23}, + [2105] = {.lex_state = 23}, + [2106] = {.lex_state = 27}, [2107] = {.lex_state = 27}, - [2108] = {.lex_state = 27}, - [2109] = {.lex_state = 27}, + [2108] = {.lex_state = 14}, + [2109] = {.lex_state = 14}, [2110] = {.lex_state = 27}, - [2111] = {.lex_state = 27}, + [2111] = {.lex_state = 23}, [2112] = {.lex_state = 27}, - [2113] = {.lex_state = 23}, + [2113] = {.lex_state = 10}, [2114] = {.lex_state = 27}, [2115] = {.lex_state = 27}, - [2116] = {.lex_state = 27}, - [2117] = {.lex_state = 27}, - [2118] = {.lex_state = 17}, - [2119] = {.lex_state = 14}, - [2120] = {.lex_state = 27}, + [2116] = {.lex_state = 14}, + [2117] = {.lex_state = 17}, + [2118] = {.lex_state = 16}, + [2119] = {.lex_state = 16}, + [2120] = {.lex_state = 16}, [2121] = {.lex_state = 27}, - [2122] = {.lex_state = 23}, - [2123] = {.lex_state = 16}, + [2122] = {.lex_state = 27}, + [2123] = {.lex_state = 23}, [2124] = {.lex_state = 16}, - [2125] = {.lex_state = 14}, - [2126] = {.lex_state = 10}, + [2125] = {.lex_state = 27}, + [2126] = {.lex_state = 27}, [2127] = {.lex_state = 27}, - [2128] = {.lex_state = 23}, - [2129] = {.lex_state = 10}, - [2130] = {.lex_state = 14}, - [2131] = {.lex_state = 14}, + [2128] = {.lex_state = 17}, + [2129] = {.lex_state = 23}, + [2130] = {.lex_state = 17}, + [2131] = {.lex_state = 27}, [2132] = {.lex_state = 14}, - [2133] = {.lex_state = 70}, - [2134] = {.lex_state = 14}, - [2135] = {.lex_state = 14}, - [2136] = {.lex_state = 17}, - [2137] = {.lex_state = 10}, - [2138] = {.lex_state = 14}, + [2133] = {.lex_state = 14}, + [2134] = {.lex_state = 17}, + [2135] = {.lex_state = 10}, + [2136] = {.lex_state = 10}, + [2137] = {.lex_state = 6}, + [2138] = {.lex_state = 17}, [2139] = {.lex_state = 14}, - [2140] = {.lex_state = 14}, + [2140] = {.lex_state = 27}, [2141] = {.lex_state = 14}, [2142] = {.lex_state = 14}, [2143] = {.lex_state = 14}, - [2144] = {.lex_state = 6}, + [2144] = {.lex_state = 14}, [2145] = {.lex_state = 14}, - [2146] = {.lex_state = 10}, + [2146] = {.lex_state = 14}, [2147] = {.lex_state = 27}, [2148] = {.lex_state = 14}, - [2149] = {.lex_state = 27}, - [2150] = {.lex_state = 10}, + [2149] = {.lex_state = 17}, + [2150] = {.lex_state = 16}, [2151] = {.lex_state = 6}, - [2152] = {.lex_state = 16}, + [2152] = {.lex_state = 10}, [2153] = {.lex_state = 14}, - [2154] = {.lex_state = 27}, - [2155] = {.lex_state = 27}, - [2156] = {.lex_state = 17}, - [2157] = {.lex_state = 14}, - [2158] = {.lex_state = 27}, - [2159] = {.lex_state = 6}, + [2154] = {.lex_state = 14}, + [2155] = {.lex_state = 70}, + [2156] = {.lex_state = 14}, + [2157] = {.lex_state = 10}, + [2158] = {.lex_state = 14}, + [2159] = {.lex_state = 14}, [2160] = {.lex_state = 14}, [2161] = {.lex_state = 14}, - [2162] = {.lex_state = 27}, + [2162] = {.lex_state = 6}, [2163] = {.lex_state = 14}, [2164] = {.lex_state = 14}, - [2165] = {.lex_state = 17}, + [2165] = {.lex_state = 27}, [2166] = {.lex_state = 14}, - [2167] = {.lex_state = 17}, - [2168] = {.lex_state = 14}, + [2167] = {.lex_state = 14}, + [2168] = {.lex_state = 27}, [2169] = {.lex_state = 14}, - [2170] = {.lex_state = 14}, - [2171] = {.lex_state = 17}, - [2172] = {.lex_state = 14}, - [2173] = {.lex_state = 27}, - [2174] = {.lex_state = 14}, - [2175] = {.lex_state = 27}, - [2176] = {.lex_state = 14}, - [2177] = {.lex_state = 23}, - [2178] = {.lex_state = 23}, + [2170] = {.lex_state = 27}, + [2171] = {.lex_state = 14}, + [2172] = {.lex_state = 27}, + [2173] = {.lex_state = 14}, + [2174] = {.lex_state = 27}, + [2175] = {.lex_state = 14}, + [2176] = {.lex_state = 23}, + [2177] = {.lex_state = 14}, + [2178] = {.lex_state = 14}, [2179] = {.lex_state = 14}, [2180] = {.lex_state = 14}, [2181] = {.lex_state = 14}, - [2182] = {.lex_state = 14}, + [2182] = {.lex_state = 23}, [2183] = {.lex_state = 14}, [2184] = {.lex_state = 14}, - [2185] = {.lex_state = 23}, + [2185] = {.lex_state = 14}, [2186] = {.lex_state = 14}, [2187] = {.lex_state = 14}, [2188] = {.lex_state = 14}, [2189] = {.lex_state = 14}, [2190] = {.lex_state = 14}, [2191] = {.lex_state = 14}, - [2192] = {.lex_state = 23}, - [2193] = {.lex_state = 23}, - [2194] = {.lex_state = 21}, + [2192] = {.lex_state = 14}, + [2193] = {.lex_state = 14}, + [2194] = {.lex_state = 14}, [2195] = {.lex_state = 14}, [2196] = {.lex_state = 14}, [2197] = {.lex_state = 14}, - [2198] = {.lex_state = 14}, + [2198] = {.lex_state = 23}, [2199] = {.lex_state = 23}, - [2200] = {.lex_state = 14}, - [2201] = {.lex_state = 10}, - [2202] = {.lex_state = 23}, + [2200] = {.lex_state = 23}, + [2201] = {.lex_state = 14}, + [2202] = {.lex_state = 14}, [2203] = {.lex_state = 14}, [2204] = {.lex_state = 14}, [2205] = {.lex_state = 14}, - [2206] = {.lex_state = 23}, + [2206] = {.lex_state = 14}, [2207] = {.lex_state = 14}, [2208] = {.lex_state = 14}, [2209] = {.lex_state = 14}, [2210] = {.lex_state = 14}, [2211] = {.lex_state = 23}, [2212] = {.lex_state = 14}, - [2213] = {.lex_state = 14}, - [2214] = {.lex_state = 14}, + [2213] = {.lex_state = 21}, + [2214] = {.lex_state = 23}, [2215] = {.lex_state = 14}, - [2216] = {.lex_state = 23}, + [2216] = {.lex_state = 10}, [2217] = {.lex_state = 14}, [2218] = {.lex_state = 14}, [2219] = {.lex_state = 14}, - [2220] = {.lex_state = 23}, - [2221] = {.lex_state = 14}, + [2220] = {.lex_state = 14}, + [2221] = {.lex_state = 23}, [2222] = {.lex_state = 23}, [2223] = {.lex_state = 14}, [2224] = {.lex_state = 14}, @@ -12248,152 +12267,152 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2226] = {.lex_state = 14}, [2227] = {.lex_state = 14}, [2228] = {.lex_state = 14}, - [2229] = {.lex_state = 14}, - [2230] = {.lex_state = 14}, - [2231] = {.lex_state = 14}, - [2232] = {.lex_state = 70}, - [2233] = {.lex_state = 23}, - [2234] = {.lex_state = 70}, - [2235] = {.lex_state = 70}, - [2236] = {.lex_state = 14}, - [2237] = {.lex_state = 70}, + [2229] = {.lex_state = 23}, + [2230] = {.lex_state = 23}, + [2231] = {.lex_state = 23}, + [2232] = {.lex_state = 10}, + [2233] = {.lex_state = 17}, + [2234] = {.lex_state = 27}, + [2235] = {.lex_state = 23}, + [2236] = {.lex_state = 27}, + [2237] = {.lex_state = 23}, [2238] = {.lex_state = 70}, - [2239] = {.lex_state = 70}, - [2240] = {.lex_state = 70}, - [2241] = {.lex_state = 27}, - [2242] = {.lex_state = 10}, + [2239] = {.lex_state = 14}, + [2240] = {.lex_state = 14}, + [2241] = {.lex_state = 70}, + [2242] = {.lex_state = 70}, [2243] = {.lex_state = 70}, - [2244] = {.lex_state = 14}, + [2244] = {.lex_state = 70}, [2245] = {.lex_state = 70}, [2246] = {.lex_state = 70}, - [2247] = {.lex_state = 23}, - [2248] = {.lex_state = 3}, + [2247] = {.lex_state = 70}, + [2248] = {.lex_state = 70}, [2249] = {.lex_state = 23}, - [2250] = {.lex_state = 70}, - [2251] = {.lex_state = 10}, - [2252] = {.lex_state = 3}, - [2253] = {.lex_state = 23}, + [2250] = {.lex_state = 23}, + [2251] = {.lex_state = 14}, + [2252] = {.lex_state = 70}, + [2253] = {.lex_state = 70}, [2254] = {.lex_state = 70}, - [2255] = {.lex_state = 17}, + [2255] = {.lex_state = 14}, [2256] = {.lex_state = 70}, - [2257] = {.lex_state = 23}, - [2258] = {.lex_state = 14}, - [2259] = {.lex_state = 27}, - [2260] = {.lex_state = 23}, - [2261] = {.lex_state = 70}, - [2262] = {.lex_state = 70}, + [2257] = {.lex_state = 3}, + [2258] = {.lex_state = 70}, + [2259] = {.lex_state = 70}, + [2260] = {.lex_state = 14}, + [2261] = {.lex_state = 23}, + [2262] = {.lex_state = 23}, [2263] = {.lex_state = 70}, - [2264] = {.lex_state = 14}, - [2265] = {.lex_state = 70}, - [2266] = {.lex_state = 23}, + [2264] = {.lex_state = 23}, + [2265] = {.lex_state = 23}, + [2266] = {.lex_state = 14}, [2267] = {.lex_state = 70}, [2268] = {.lex_state = 70}, [2269] = {.lex_state = 70}, [2270] = {.lex_state = 70}, - [2271] = {.lex_state = 14}, - [2272] = {.lex_state = 70}, + [2271] = {.lex_state = 70}, + [2272] = {.lex_state = 14}, [2273] = {.lex_state = 70}, [2274] = {.lex_state = 70}, - [2275] = {.lex_state = 14}, - [2276] = {.lex_state = 14}, - [2277] = {.lex_state = 14}, + [2275] = {.lex_state = 70}, + [2276] = {.lex_state = 70}, + [2277] = {.lex_state = 70}, [2278] = {.lex_state = 70}, [2279] = {.lex_state = 70}, [2280] = {.lex_state = 70}, - [2281] = {.lex_state = 70}, - [2282] = {.lex_state = 3}, - [2283] = {.lex_state = 70}, - [2284] = {.lex_state = 23}, + [2281] = {.lex_state = 3}, + [2282] = {.lex_state = 10}, + [2283] = {.lex_state = 14}, + [2284] = {.lex_state = 3}, [2285] = {.lex_state = 10}, - [2286] = {.lex_state = 14}, - [2287] = {.lex_state = 70}, + [2286] = {.lex_state = 167}, + [2287] = {.lex_state = 14}, [2288] = {.lex_state = 14}, - [2289] = {.lex_state = 27}, + [2289] = {.lex_state = 70}, [2290] = {.lex_state = 14}, [2291] = {.lex_state = 14}, - [2292] = {.lex_state = 14}, - [2293] = {.lex_state = 14}, + [2292] = {.lex_state = 27}, + [2293] = {.lex_state = 18}, [2294] = {.lex_state = 27}, - [2295] = {.lex_state = 18}, + [2295] = {.lex_state = 14}, [2296] = {.lex_state = 14}, [2297] = {.lex_state = 14}, - [2298] = {.lex_state = 14}, - [2299] = {.lex_state = 14}, - [2300] = {.lex_state = 14}, - [2301] = {.lex_state = 14}, - [2302] = {.lex_state = 14}, - [2303] = {.lex_state = 14}, - [2304] = {.lex_state = 14}, + [2298] = {.lex_state = 27}, + [2299] = {.lex_state = 17}, + [2300] = {.lex_state = 27}, + [2301] = {.lex_state = 27}, + [2302] = {.lex_state = 13}, + [2303] = {.lex_state = 27}, + [2304] = {.lex_state = 3}, [2305] = {.lex_state = 14}, [2306] = {.lex_state = 27}, - [2307] = {.lex_state = 18}, - [2308] = {.lex_state = 27}, - [2309] = {.lex_state = 17}, - [2310] = {.lex_state = 14}, - [2311] = {.lex_state = 14}, + [2307] = {.lex_state = 14}, + [2308] = {.lex_state = 14}, + [2309] = {.lex_state = 14}, + [2310] = {.lex_state = 18}, + [2311] = {.lex_state = 13}, [2312] = {.lex_state = 14}, - [2313] = {.lex_state = 70}, + [2313] = {.lex_state = 18}, [2314] = {.lex_state = 14}, - [2315] = {.lex_state = 27}, - [2316] = {.lex_state = 27}, + [2315] = {.lex_state = 17}, + [2316] = {.lex_state = 14}, [2317] = {.lex_state = 14}, [2318] = {.lex_state = 14}, [2319] = {.lex_state = 14}, - [2320] = {.lex_state = 27}, - [2321] = {.lex_state = 27}, - [2322] = {.lex_state = 3}, - [2323] = {.lex_state = 27}, - [2324] = {.lex_state = 3}, - [2325] = {.lex_state = 14}, - [2326] = {.lex_state = 14}, - [2327] = {.lex_state = 14}, + [2320] = {.lex_state = 14}, + [2321] = {.lex_state = 14}, + [2322] = {.lex_state = 14}, + [2323] = {.lex_state = 14}, + [2324] = {.lex_state = 14}, + [2325] = {.lex_state = 18}, + [2326] = {.lex_state = 27}, + [2327] = {.lex_state = 18}, [2328] = {.lex_state = 14}, [2329] = {.lex_state = 14}, - [2330] = {.lex_state = 70}, - [2331] = {.lex_state = 27}, + [2330] = {.lex_state = 14}, + [2331] = {.lex_state = 14}, [2332] = {.lex_state = 14}, - [2333] = {.lex_state = 27}, + [2333] = {.lex_state = 14}, [2334] = {.lex_state = 14}, - [2335] = {.lex_state = 23}, - [2336] = {.lex_state = 18}, - [2337] = {.lex_state = 14}, - [2338] = {.lex_state = 27}, + [2335] = {.lex_state = 14}, + [2336] = {.lex_state = 27}, + [2337] = {.lex_state = 23}, + [2338] = {.lex_state = 14}, [2339] = {.lex_state = 14}, - [2340] = {.lex_state = 13}, + [2340] = {.lex_state = 70}, [2341] = {.lex_state = 14}, - [2342] = {.lex_state = 14}, + [2342] = {.lex_state = 3}, [2343] = {.lex_state = 27}, - [2344] = {.lex_state = 14}, + [2344] = {.lex_state = 27}, [2345] = {.lex_state = 27}, - [2346] = {.lex_state = 14}, - [2347] = {.lex_state = 3}, + [2346] = {.lex_state = 27}, + [2347] = {.lex_state = 14}, [2348] = {.lex_state = 14}, [2349] = {.lex_state = 14}, - [2350] = {.lex_state = 17}, + [2350] = {.lex_state = 14}, [2351] = {.lex_state = 14}, - [2352] = {.lex_state = 14}, - [2353] = {.lex_state = 14}, + [2352] = {.lex_state = 27}, + [2353] = {.lex_state = 27}, [2354] = {.lex_state = 14}, [2355] = {.lex_state = 14}, - [2356] = {.lex_state = 18}, - [2357] = {.lex_state = 17}, - [2358] = {.lex_state = 13}, - [2359] = {.lex_state = 17}, - [2360] = {.lex_state = 3}, - [2361] = {.lex_state = 27}, + [2356] = {.lex_state = 27}, + [2357] = {.lex_state = 14}, + [2358] = {.lex_state = 14}, + [2359] = {.lex_state = 14}, + [2360] = {.lex_state = 17}, + [2361] = {.lex_state = 17}, [2362] = {.lex_state = 17}, - [2363] = {.lex_state = 14}, - [2364] = {.lex_state = 17}, - [2365] = {.lex_state = 14}, - [2366] = {.lex_state = 27}, + [2363] = {.lex_state = 17}, + [2364] = {.lex_state = 14}, + [2365] = {.lex_state = 70}, + [2366] = {.lex_state = 14}, [2367] = {.lex_state = 14}, - [2368] = {.lex_state = 27}, + [2368] = {.lex_state = 14}, [2369] = {.lex_state = 14}, [2370] = {.lex_state = 14}, - [2371] = {.lex_state = 17}, - [2372] = {.lex_state = 14}, - [2373] = {.lex_state = 18}, - [2374] = {.lex_state = 14}, + [2371] = {.lex_state = 14}, + [2372] = {.lex_state = 3}, + [2373] = {.lex_state = 27}, + [2374] = {.lex_state = 3}, [2375] = {.lex_state = 14}, [2376] = {.lex_state = 14}, [2377] = {.lex_state = 14}, @@ -12401,846 +12420,846 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [2379] = {.lex_state = 14}, [2380] = {.lex_state = 14}, [2381] = {.lex_state = 14}, - [2382] = {.lex_state = 18}, - [2383] = {.lex_state = 14}, + [2382] = {.lex_state = 14}, + [2383] = {.lex_state = 27}, [2384] = {.lex_state = 14}, - [2385] = {.lex_state = 27}, + [2385] = {.lex_state = 14}, [2386] = {.lex_state = 14}, - [2387] = {.lex_state = 14}, - [2388] = {.lex_state = 6}, - [2389] = {.lex_state = 6}, - [2390] = {.lex_state = 10}, - [2391] = {.lex_state = 10}, - [2392] = {.lex_state = 14}, + [2387] = {.lex_state = 17}, + [2388] = {.lex_state = 18}, + [2389] = {.lex_state = 10}, + [2390] = {.lex_state = 27}, + [2391] = {.lex_state = 27}, + [2392] = {.lex_state = 3}, [2393] = {.lex_state = 27}, - [2394] = {.lex_state = 14}, - [2395] = {.lex_state = 10}, - [2396] = {.lex_state = 10}, - [2397] = {.lex_state = 14}, - [2398] = {.lex_state = 14}, + [2394] = {.lex_state = 10}, + [2395] = {.lex_state = 14}, + [2396] = {.lex_state = 27}, + [2397] = {.lex_state = 10}, + [2398] = {.lex_state = 10}, [2399] = {.lex_state = 10}, - [2400] = {.lex_state = 70}, - [2401] = {.lex_state = 70}, - [2402] = {.lex_state = 27}, - [2403] = {.lex_state = 10}, + [2400] = {.lex_state = 14}, + [2401] = {.lex_state = 27}, + [2402] = {.lex_state = 10}, + [2403] = {.lex_state = 14}, [2404] = {.lex_state = 10}, - [2405] = {.lex_state = 14}, + [2405] = {.lex_state = 6}, [2406] = {.lex_state = 10}, - [2407] = {.lex_state = 10}, + [2407] = {.lex_state = 27}, [2408] = {.lex_state = 10}, - [2409] = {.lex_state = 14}, + [2409] = {.lex_state = 10}, [2410] = {.lex_state = 10}, - [2411] = {.lex_state = 14}, - [2412] = {.lex_state = 27}, - [2413] = {.lex_state = 3}, - [2414] = {.lex_state = 3}, - [2415] = {.lex_state = 10}, - [2416] = {.lex_state = 10}, + [2411] = {.lex_state = 10}, + [2412] = {.lex_state = 10}, + [2413] = {.lex_state = 10}, + [2414] = {.lex_state = 10}, + [2415] = {.lex_state = 14}, + [2416] = {.lex_state = 27}, [2417] = {.lex_state = 27}, - [2418] = {.lex_state = 10, .external_lex_state = 3}, - [2419] = {.lex_state = 27}, - [2420] = {.lex_state = 14}, + [2418] = {.lex_state = 27}, + [2419] = {.lex_state = 10}, + [2420] = {.lex_state = 10}, [2421] = {.lex_state = 27}, - [2422] = {.lex_state = 14}, - [2423] = {.lex_state = 27}, - [2424] = {.lex_state = 10}, - [2425] = {.lex_state = 14}, + [2422] = {.lex_state = 6}, + [2423] = {.lex_state = 6}, + [2424] = {.lex_state = 70}, + [2425] = {.lex_state = 27}, [2426] = {.lex_state = 27}, - [2427] = {.lex_state = 167}, - [2428] = {.lex_state = 27}, - [2429] = {.lex_state = 10}, + [2427] = {.lex_state = 27}, + [2428] = {.lex_state = 10}, + [2429] = {.lex_state = 27}, [2430] = {.lex_state = 27}, [2431] = {.lex_state = 10}, - [2432] = {.lex_state = 27}, + [2432] = {.lex_state = 10}, [2433] = {.lex_state = 27}, - [2434] = {.lex_state = 14}, - [2435] = {.lex_state = 10}, + [2434] = {.lex_state = 27}, + [2435] = {.lex_state = 14}, [2436] = {.lex_state = 27}, - [2437] = {.lex_state = 27}, - [2438] = {.lex_state = 14}, + [2437] = {.lex_state = 10}, + [2438] = {.lex_state = 10}, [2439] = {.lex_state = 14}, - [2440] = {.lex_state = 14}, + [2440] = {.lex_state = 27}, [2441] = {.lex_state = 27}, - [2442] = {.lex_state = 10}, - [2443] = {.lex_state = 27}, - [2444] = {.lex_state = 6}, - [2445] = {.lex_state = 27}, + [2442] = {.lex_state = 14}, + [2443] = {.lex_state = 14}, + [2444] = {.lex_state = 14}, + [2445] = {.lex_state = 10}, [2446] = {.lex_state = 14}, [2447] = {.lex_state = 27}, [2448] = {.lex_state = 27}, - [2449] = {.lex_state = 14}, - [2450] = {.lex_state = 27}, - [2451] = {.lex_state = 10}, - [2452] = {.lex_state = 14}, - [2453] = {.lex_state = 14}, - [2454] = {.lex_state = 14}, + [2449] = {.lex_state = 27}, + [2450] = {.lex_state = 10}, + [2451] = {.lex_state = 14}, + [2452] = {.lex_state = 27}, + [2453] = {.lex_state = 27}, + [2454] = {.lex_state = 27}, [2455] = {.lex_state = 27}, [2456] = {.lex_state = 27}, - [2457] = {.lex_state = 27}, - [2458] = {.lex_state = 10}, - [2459] = {.lex_state = 27}, - [2460] = {.lex_state = 10}, - [2461] = {.lex_state = 27}, - [2462] = {.lex_state = 27}, - [2463] = {.lex_state = 10}, + [2457] = {.lex_state = 10}, + [2458] = {.lex_state = 14}, + [2459] = {.lex_state = 10}, + [2460] = {.lex_state = 27}, + [2461] = {.lex_state = 14}, + [2462] = {.lex_state = 14}, + [2463] = {.lex_state = 27}, [2464] = {.lex_state = 27}, - [2465] = {.lex_state = 14}, + [2465] = {.lex_state = 10}, [2466] = {.lex_state = 27}, [2467] = {.lex_state = 10}, - [2468] = {.lex_state = 10}, - [2469] = {.lex_state = 27}, - [2470] = {.lex_state = 27}, - [2471] = {.lex_state = 6}, - [2472] = {.lex_state = 27}, - [2473] = {.lex_state = 10}, - [2474] = {.lex_state = 27}, - [2475] = {.lex_state = 27}, - [2476] = {.lex_state = 27}, + [2468] = {.lex_state = 27}, + [2469] = {.lex_state = 3}, + [2470] = {.lex_state = 14}, + [2471] = {.lex_state = 27}, + [2472] = {.lex_state = 14}, + [2473] = {.lex_state = 27}, + [2474] = {.lex_state = 10}, + [2475] = {.lex_state = 70}, + [2476] = {.lex_state = 14}, [2477] = {.lex_state = 14}, [2478] = {.lex_state = 14}, [2479] = {.lex_state = 14}, - [2480] = {.lex_state = 14}, - [2481] = {.lex_state = 27}, - [2482] = {.lex_state = 10}, - [2483] = {.lex_state = 10}, + [2480] = {.lex_state = 27}, + [2481] = {.lex_state = 14}, + [2482] = {.lex_state = 27}, + [2483] = {.lex_state = 10, .external_lex_state = 3}, [2484] = {.lex_state = 10}, - [2485] = {.lex_state = 10}, + [2485] = {.lex_state = 27}, [2486] = {.lex_state = 10}, - [2487] = {.lex_state = 10}, - [2488] = {.lex_state = 27}, - [2489] = {.lex_state = 10}, - [2490] = {.lex_state = 27}, - [2491] = {.lex_state = 10}, - [2492] = {.lex_state = 27}, - [2493] = {.lex_state = 27}, - [2494] = {.lex_state = 10}, - [2495] = {.lex_state = 6}, - [2496] = {.lex_state = 10}, - [2497] = {.lex_state = 10, .external_lex_state = 4}, - [2498] = {.lex_state = 10}, - [2499] = {.lex_state = 10}, - [2500] = {.lex_state = 10}, - [2501] = {.lex_state = 14}, - [2502] = {.lex_state = 14}, - [2503] = {.lex_state = 14}, - [2504] = {.lex_state = 70}, - [2505] = {.lex_state = 70}, - [2506] = {.lex_state = 10}, - [2507] = {.lex_state = 14}, - [2508] = {.lex_state = 14}, - [2509] = {.lex_state = 10, .external_lex_state = 4}, - [2510] = {.lex_state = 70}, - [2511] = {.lex_state = 10}, - [2512] = {.lex_state = 10}, - [2513] = {.lex_state = 10}, - [2514] = {.lex_state = 70}, - [2515] = {.lex_state = 16}, - [2516] = {.lex_state = 6}, + [2487] = {.lex_state = 27}, + [2488] = {.lex_state = 14}, + [2489] = {.lex_state = 14}, + [2490] = {.lex_state = 10}, + [2491] = {.lex_state = 6}, + [2492] = {.lex_state = 10}, + [2493] = {.lex_state = 14}, + [2494] = {.lex_state = 3}, + [2495] = {.lex_state = 10}, + [2496] = {.lex_state = 10, .external_lex_state = 4}, + [2497] = {.lex_state = 70}, + [2498] = {.lex_state = 6}, + [2499] = {.lex_state = 6}, + [2500] = {.lex_state = 70}, + [2501] = {.lex_state = 70}, + [2502] = {.lex_state = 6}, + [2503] = {.lex_state = 6}, + [2504] = {.lex_state = 10}, + [2505] = {.lex_state = 6}, + [2506] = {.lex_state = 70}, + [2507] = {.lex_state = 27}, + [2508] = {.lex_state = 27}, + [2509] = {.lex_state = 6}, + [2510] = {.lex_state = 10, .external_lex_state = 4}, + [2511] = {.lex_state = 14}, + [2512] = {.lex_state = 70}, + [2513] = {.lex_state = 14}, + [2514] = {.lex_state = 14}, + [2515] = {.lex_state = 14}, + [2516] = {.lex_state = 27}, [2517] = {.lex_state = 70}, [2518] = {.lex_state = 10}, - [2519] = {.lex_state = 70}, - [2520] = {.lex_state = 10}, - [2521] = {.lex_state = 14}, - [2522] = {.lex_state = 14}, - [2523] = {.lex_state = 10}, - [2524] = {.lex_state = 14}, - [2525] = {.lex_state = 10, .external_lex_state = 4}, - [2526] = {.lex_state = 29}, - [2527] = {.lex_state = 70}, - [2528] = {.lex_state = 14}, - [2529] = {.lex_state = 10}, - [2530] = {.lex_state = 70}, - [2531] = {.lex_state = 16}, - [2532] = {.lex_state = 6}, - [2533] = {.lex_state = 6}, - [2534] = {.lex_state = 10}, + [2519] = {.lex_state = 10}, + [2520] = {.lex_state = 10, .external_lex_state = 4}, + [2521] = {.lex_state = 70}, + [2522] = {.lex_state = 6}, + [2523] = {.lex_state = 14}, + [2524] = {.lex_state = 70}, + [2525] = {.lex_state = 70}, + [2526] = {.lex_state = 70}, + [2527] = {.lex_state = 6}, + [2528] = {.lex_state = 6}, + [2529] = {.lex_state = 6}, + [2530] = {.lex_state = 14}, + [2531] = {.lex_state = 70}, + [2532] = {.lex_state = 27}, + [2533] = {.lex_state = 70}, + [2534] = {.lex_state = 70}, [2535] = {.lex_state = 6}, - [2536] = {.lex_state = 70}, + [2536] = {.lex_state = 14}, [2537] = {.lex_state = 6}, - [2538] = {.lex_state = 70}, - [2539] = {.lex_state = 70}, - [2540] = {.lex_state = 27}, - [2541] = {.lex_state = 70}, - [2542] = {.lex_state = 70}, - [2543] = {.lex_state = 70}, - [2544] = {.lex_state = 10}, + [2538] = {.lex_state = 14}, + [2539] = {.lex_state = 6}, + [2540] = {.lex_state = 14}, + [2541] = {.lex_state = 14}, + [2542] = {.lex_state = 14}, + [2543] = {.lex_state = 14}, + [2544] = {.lex_state = 14}, [2545] = {.lex_state = 14}, - [2546] = {.lex_state = 10, .external_lex_state = 4}, - [2547] = {.lex_state = 27}, + [2546] = {.lex_state = 10}, + [2547] = {.lex_state = 10}, [2548] = {.lex_state = 10}, - [2549] = {.lex_state = 6}, - [2550] = {.lex_state = 14}, - [2551] = {.lex_state = 10}, - [2552] = {.lex_state = 10}, - [2553] = {.lex_state = 27}, + [2549] = {.lex_state = 27}, + [2550] = {.lex_state = 29}, + [2551] = {.lex_state = 14}, + [2552] = {.lex_state = 70}, + [2553] = {.lex_state = 70}, [2554] = {.lex_state = 70}, [2555] = {.lex_state = 70}, - [2556] = {.lex_state = 27}, - [2557] = {.lex_state = 10}, - [2558] = {.lex_state = 29}, - [2559] = {.lex_state = 6}, - [2560] = {.lex_state = 27}, - [2561] = {.lex_state = 70}, - [2562] = {.lex_state = 70}, - [2563] = {.lex_state = 14}, - [2564] = {.lex_state = 70}, - [2565] = {.lex_state = 10}, - [2566] = {.lex_state = 10}, - [2567] = {.lex_state = 14}, - [2568] = {.lex_state = 14}, - [2569] = {.lex_state = 10}, + [2556] = {.lex_state = 6}, + [2557] = {.lex_state = 14}, + [2558] = {.lex_state = 14}, + [2559] = {.lex_state = 14}, + [2560] = {.lex_state = 14}, + [2561] = {.lex_state = 14}, + [2562] = {.lex_state = 14}, + [2563] = {.lex_state = 10, .external_lex_state = 4}, + [2564] = {.lex_state = 27}, + [2565] = {.lex_state = 27}, + [2566] = {.lex_state = 14}, + [2567] = {.lex_state = 10}, + [2568] = {.lex_state = 70}, + [2569] = {.lex_state = 27}, [2570] = {.lex_state = 14}, - [2571] = {.lex_state = 6}, - [2572] = {.lex_state = 14}, + [2571] = {.lex_state = 14}, + [2572] = {.lex_state = 6}, [2573] = {.lex_state = 10}, - [2574] = {.lex_state = 27}, - [2575] = {.lex_state = 10}, - [2576] = {.lex_state = 14}, - [2577] = {.lex_state = 27}, - [2578] = {.lex_state = 14}, - [2579] = {.lex_state = 29}, - [2580] = {.lex_state = 10}, - [2581] = {.lex_state = 14}, - [2582] = {.lex_state = 70}, - [2583] = {.lex_state = 3}, - [2584] = {.lex_state = 14}, + [2574] = {.lex_state = 14}, + [2575] = {.lex_state = 27}, + [2576] = {.lex_state = 70}, + [2577] = {.lex_state = 14}, + [2578] = {.lex_state = 6}, + [2579] = {.lex_state = 70}, + [2580] = {.lex_state = 70}, + [2581] = {.lex_state = 27}, + [2582] = {.lex_state = 10}, + [2583] = {.lex_state = 10}, + [2584] = {.lex_state = 10, .external_lex_state = 4}, [2585] = {.lex_state = 10}, - [2586] = {.lex_state = 14}, - [2587] = {.lex_state = 10}, + [2586] = {.lex_state = 10}, + [2587] = {.lex_state = 29}, [2588] = {.lex_state = 6}, [2589] = {.lex_state = 70}, - [2590] = {.lex_state = 10}, + [2590] = {.lex_state = 16}, [2591] = {.lex_state = 10}, - [2592] = {.lex_state = 10, .external_lex_state = 4}, - [2593] = {.lex_state = 14}, - [2594] = {.lex_state = 70}, - [2595] = {.lex_state = 6}, - [2596] = {.lex_state = 10}, - [2597] = {.lex_state = 29}, - [2598] = {.lex_state = 10}, - [2599] = {.lex_state = 70}, - [2600] = {.lex_state = 10}, - [2601] = {.lex_state = 10, .external_lex_state = 4}, + [2592] = {.lex_state = 70}, + [2593] = {.lex_state = 10}, + [2594] = {.lex_state = 10}, + [2595] = {.lex_state = 10, .external_lex_state = 4}, + [2596] = {.lex_state = 70}, + [2597] = {.lex_state = 6}, + [2598] = {.lex_state = 6}, + [2599] = {.lex_state = 6}, + [2600] = {.lex_state = 6}, + [2601] = {.lex_state = 70}, [2602] = {.lex_state = 10}, - [2603] = {.lex_state = 70}, + [2603] = {.lex_state = 6}, [2604] = {.lex_state = 10}, - [2605] = {.lex_state = 10}, + [2605] = {.lex_state = 27}, [2606] = {.lex_state = 10}, [2607] = {.lex_state = 10}, [2608] = {.lex_state = 10}, [2609] = {.lex_state = 10}, - [2610] = {.lex_state = 14}, - [2611] = {.lex_state = 10, .external_lex_state = 4}, - [2612] = {.lex_state = 6}, - [2613] = {.lex_state = 70}, - [2614] = {.lex_state = 10}, + [2610] = {.lex_state = 70}, + [2611] = {.lex_state = 14}, + [2612] = {.lex_state = 10}, + [2613] = {.lex_state = 16}, + [2614] = {.lex_state = 70}, [2615] = {.lex_state = 10}, [2616] = {.lex_state = 10}, - [2617] = {.lex_state = 10}, - [2618] = {.lex_state = 70}, - [2619] = {.lex_state = 70}, - [2620] = {.lex_state = 14}, - [2621] = {.lex_state = 3}, - [2622] = {.lex_state = 6}, - [2623] = {.lex_state = 14}, - [2624] = {.lex_state = 3}, + [2617] = {.lex_state = 10, .external_lex_state = 4}, + [2618] = {.lex_state = 10}, + [2619] = {.lex_state = 10}, + [2620] = {.lex_state = 70}, + [2621] = {.lex_state = 10}, + [2622] = {.lex_state = 70}, + [2623] = {.lex_state = 10, .external_lex_state = 4}, + [2624] = {.lex_state = 70}, [2625] = {.lex_state = 6}, - [2626] = {.lex_state = 14}, - [2627] = {.lex_state = 10}, - [2628] = {.lex_state = 17}, + [2626] = {.lex_state = 6}, + [2627] = {.lex_state = 6}, + [2628] = {.lex_state = 10}, [2629] = {.lex_state = 10}, - [2630] = {.lex_state = 16}, - [2631] = {.lex_state = 70}, - [2632] = {.lex_state = 14}, - [2633] = {.lex_state = 14}, - [2634] = {.lex_state = 10}, - [2635] = {.lex_state = 17}, - [2636] = {.lex_state = 70}, - [2637] = {.lex_state = 70}, - [2638] = {.lex_state = 14}, - [2639] = {.lex_state = 14}, - [2640] = {.lex_state = 10}, - [2641] = {.lex_state = 70}, - [2642] = {.lex_state = 6}, - [2643] = {.lex_state = 17}, - [2644] = {.lex_state = 10}, - [2645] = {.lex_state = 17}, - [2646] = {.lex_state = 3}, + [2630] = {.lex_state = 10, .external_lex_state = 4}, + [2631] = {.lex_state = 10}, + [2632] = {.lex_state = 27}, + [2633] = {.lex_state = 70}, + [2634] = {.lex_state = 10, .external_lex_state = 4}, + [2635] = {.lex_state = 70}, + [2636] = {.lex_state = 6}, + [2637] = {.lex_state = 6}, + [2638] = {.lex_state = 10}, + [2639] = {.lex_state = 70}, + [2640] = {.lex_state = 70}, + [2641] = {.lex_state = 10, .external_lex_state = 4}, + [2642] = {.lex_state = 10, .external_lex_state = 4}, + [2643] = {.lex_state = 6}, + [2644] = {.lex_state = 6}, + [2645] = {.lex_state = 10}, + [2646] = {.lex_state = 14}, [2647] = {.lex_state = 14}, - [2648] = {.lex_state = 10, .external_lex_state = 4}, - [2649] = {.lex_state = 17}, - [2650] = {.lex_state = 14}, - [2651] = {.lex_state = 14}, - [2652] = {.lex_state = 10}, - [2653] = {.lex_state = 10, .external_lex_state = 4}, - [2654] = {.lex_state = 10, .external_lex_state = 4}, - [2655] = {.lex_state = 27}, - [2656] = {.lex_state = 70}, + [2648] = {.lex_state = 6}, + [2649] = {.lex_state = 6}, + [2650] = {.lex_state = 6}, + [2651] = {.lex_state = 6}, + [2652] = {.lex_state = 6}, + [2653] = {.lex_state = 6}, + [2654] = {.lex_state = 6}, + [2655] = {.lex_state = 6}, + [2656] = {.lex_state = 6}, [2657] = {.lex_state = 6}, - [2658] = {.lex_state = 10}, + [2658] = {.lex_state = 6}, [2659] = {.lex_state = 6}, - [2660] = {.lex_state = 17}, - [2661] = {.lex_state = 70}, - [2662] = {.lex_state = 70}, - [2663] = {.lex_state = 17}, - [2664] = {.lex_state = 10, .external_lex_state = 4}, - [2665] = {.lex_state = 17}, - [2666] = {.lex_state = 6}, - [2667] = {.lex_state = 70}, - [2668] = {.lex_state = 10}, + [2660] = {.lex_state = 14}, + [2661] = {.lex_state = 29}, + [2662] = {.lex_state = 10}, + [2663] = {.lex_state = 3}, + [2664] = {.lex_state = 70}, + [2665] = {.lex_state = 70}, + [2666] = {.lex_state = 17}, + [2667] = {.lex_state = 14}, + [2668] = {.lex_state = 14}, [2669] = {.lex_state = 14}, - [2670] = {.lex_state = 6}, - [2671] = {.lex_state = 6}, - [2672] = {.lex_state = 14}, - [2673] = {.lex_state = 27}, - [2674] = {.lex_state = 6}, - [2675] = {.lex_state = 70}, - [2676] = {.lex_state = 6}, + [2670] = {.lex_state = 17}, + [2671] = {.lex_state = 70}, + [2672] = {.lex_state = 70}, + [2673] = {.lex_state = 10}, + [2674] = {.lex_state = 70}, + [2675] = {.lex_state = 10}, + [2676] = {.lex_state = 10}, [2677] = {.lex_state = 6}, [2678] = {.lex_state = 70}, [2679] = {.lex_state = 70}, [2680] = {.lex_state = 70}, - [2681] = {.lex_state = 70}, - [2682] = {.lex_state = 70}, - [2683] = {.lex_state = 70}, - [2684] = {.lex_state = 70}, - [2685] = {.lex_state = 6}, - [2686] = {.lex_state = 10, .external_lex_state = 4}, - [2687] = {.lex_state = 27}, - [2688] = {.lex_state = 6}, + [2681] = {.lex_state = 27}, + [2682] = {.lex_state = 17}, + [2683] = {.lex_state = 14}, + [2684] = {.lex_state = 10}, + [2685] = {.lex_state = 14}, + [2686] = {.lex_state = 10}, + [2687] = {.lex_state = 10}, + [2688] = {.lex_state = 10, .external_lex_state = 4}, [2689] = {.lex_state = 70}, - [2690] = {.lex_state = 6}, - [2691] = {.lex_state = 6}, + [2690] = {.lex_state = 10}, + [2691] = {.lex_state = 29}, [2692] = {.lex_state = 70}, [2693] = {.lex_state = 70}, - [2694] = {.lex_state = 27}, - [2695] = {.lex_state = 10, .external_lex_state = 4}, - [2696] = {.lex_state = 6}, - [2697] = {.lex_state = 6}, - [2698] = {.lex_state = 27}, - [2699] = {.lex_state = 6}, - [2700] = {.lex_state = 6}, - [2701] = {.lex_state = 6}, - [2702] = {.lex_state = 6}, - [2703] = {.lex_state = 14}, - [2704] = {.lex_state = 6}, - [2705] = {.lex_state = 6}, - [2706] = {.lex_state = 6}, - [2707] = {.lex_state = 6}, - [2708] = {.lex_state = 6}, - [2709] = {.lex_state = 6}, - [2710] = {.lex_state = 6}, - [2711] = {.lex_state = 6}, + [2694] = {.lex_state = 10}, + [2695] = {.lex_state = 10}, + [2696] = {.lex_state = 17}, + [2697] = {.lex_state = 10}, + [2698] = {.lex_state = 70}, + [2699] = {.lex_state = 10}, + [2700] = {.lex_state = 10}, + [2701] = {.lex_state = 10}, + [2702] = {.lex_state = 10}, + [2703] = {.lex_state = 10}, + [2704] = {.lex_state = 10}, + [2705] = {.lex_state = 70}, + [2706] = {.lex_state = 10}, + [2707] = {.lex_state = 3}, + [2708] = {.lex_state = 3}, + [2709] = {.lex_state = 14}, + [2710] = {.lex_state = 16}, + [2711] = {.lex_state = 14}, [2712] = {.lex_state = 10}, - [2713] = {.lex_state = 70}, + [2713] = {.lex_state = 3}, [2714] = {.lex_state = 14}, - [2715] = {.lex_state = 6}, - [2716] = {.lex_state = 10}, - [2717] = {.lex_state = 6}, - [2718] = {.lex_state = 70}, - [2719] = {.lex_state = 6}, + [2715] = {.lex_state = 10}, + [2716] = {.lex_state = 17}, + [2717] = {.lex_state = 70}, + [2718] = {.lex_state = 17}, + [2719] = {.lex_state = 14}, [2720] = {.lex_state = 6}, - [2721] = {.lex_state = 27}, + [2721] = {.lex_state = 10}, [2722] = {.lex_state = 10}, - [2723] = {.lex_state = 6}, - [2724] = {.lex_state = 14}, - [2725] = {.lex_state = 10}, - [2726] = {.lex_state = 3}, - [2727] = {.lex_state = 14}, + [2723] = {.lex_state = 17}, + [2724] = {.lex_state = 6}, + [2725] = {.lex_state = 6}, + [2726] = {.lex_state = 17}, + [2727] = {.lex_state = 70}, [2728] = {.lex_state = 6}, - [2729] = {.lex_state = 10}, - [2730] = {.lex_state = 70}, + [2729] = {.lex_state = 6}, + [2730] = {.lex_state = 10}, [2731] = {.lex_state = 70}, [2732] = {.lex_state = 70}, - [2733] = {.lex_state = 17}, - [2734] = {.lex_state = 14}, - [2735] = {.lex_state = 14}, - [2736] = {.lex_state = 17}, - [2737] = {.lex_state = 17}, - [2738] = {.lex_state = 6}, - [2739] = {.lex_state = 17}, - [2740] = {.lex_state = 17}, + [2733] = {.lex_state = 70}, + [2734] = {.lex_state = 70}, + [2735] = {.lex_state = 70}, + [2736] = {.lex_state = 70}, + [2737] = {.lex_state = 70}, + [2738] = {.lex_state = 70}, + [2739] = {.lex_state = 70}, + [2740] = {.lex_state = 70}, [2741] = {.lex_state = 70}, - [2742] = {.lex_state = 17}, - [2743] = {.lex_state = 14}, + [2742] = {.lex_state = 70}, + [2743] = {.lex_state = 70}, [2744] = {.lex_state = 70}, - [2745] = {.lex_state = 6}, + [2745] = {.lex_state = 70}, [2746] = {.lex_state = 70}, - [2747] = {.lex_state = 17}, - [2748] = {.lex_state = 6}, - [2749] = {.lex_state = 17}, + [2747] = {.lex_state = 70}, + [2748] = {.lex_state = 18}, + [2749] = {.lex_state = 70}, [2750] = {.lex_state = 70}, [2751] = {.lex_state = 70}, [2752] = {.lex_state = 70}, - [2753] = {.lex_state = 17}, - [2754] = {.lex_state = 17}, - [2755] = {.lex_state = 6}, - [2756] = {.lex_state = 18}, - [2757] = {.lex_state = 70}, - [2758] = {.lex_state = 17}, - [2759] = {.lex_state = 17}, - [2760] = {.lex_state = 17}, + [2753] = {.lex_state = 6}, + [2754] = {.lex_state = 70}, + [2755] = {.lex_state = 70}, + [2756] = {.lex_state = 17}, + [2757] = {.lex_state = 14}, + [2758] = {.lex_state = 70}, + [2759] = {.lex_state = 70}, + [2760] = {.lex_state = 70}, [2761] = {.lex_state = 17}, - [2762] = {.lex_state = 17}, - [2763] = {.lex_state = 17}, - [2764] = {.lex_state = 14}, - [2765] = {.lex_state = 17}, + [2762] = {.lex_state = 70}, + [2763] = {.lex_state = 70}, + [2764] = {.lex_state = 70}, + [2765] = {.lex_state = 18}, [2766] = {.lex_state = 17}, - [2767] = {.lex_state = 6}, - [2768] = {.lex_state = 70}, + [2767] = {.lex_state = 70}, + [2768] = {.lex_state = 18}, [2769] = {.lex_state = 70}, [2770] = {.lex_state = 70}, [2771] = {.lex_state = 70}, [2772] = {.lex_state = 70}, [2773] = {.lex_state = 70}, - [2774] = {.lex_state = 17}, - [2775] = {.lex_state = 17}, - [2776] = {.lex_state = 27}, - [2777] = {.lex_state = 17}, + [2774] = {.lex_state = 70}, + [2775] = {.lex_state = 70}, + [2776] = {.lex_state = 70}, + [2777] = {.lex_state = 70}, [2778] = {.lex_state = 70}, - [2779] = {.lex_state = 17}, + [2779] = {.lex_state = 70}, [2780] = {.lex_state = 70}, [2781] = {.lex_state = 70}, - [2782] = {.lex_state = 70}, - [2783] = {.lex_state = 17}, - [2784] = {.lex_state = 70}, + [2782] = {.lex_state = 14}, + [2783] = {.lex_state = 70}, + [2784] = {.lex_state = 6}, [2785] = {.lex_state = 17}, [2786] = {.lex_state = 70}, [2787] = {.lex_state = 70}, [2788] = {.lex_state = 70}, - [2789] = {.lex_state = 17}, + [2789] = {.lex_state = 70}, [2790] = {.lex_state = 70}, [2791] = {.lex_state = 70}, - [2792] = {.lex_state = 17}, - [2793] = {.lex_state = 17}, - [2794] = {.lex_state = 14}, - [2795] = {.lex_state = 17}, - [2796] = {.lex_state = 17}, - [2797] = {.lex_state = 70}, - [2798] = {.lex_state = 27}, + [2792] = {.lex_state = 70}, + [2793] = {.lex_state = 14}, + [2794] = {.lex_state = 17}, + [2795] = {.lex_state = 70}, + [2796] = {.lex_state = 70}, + [2797] = {.lex_state = 17}, + [2798] = {.lex_state = 70}, [2799] = {.lex_state = 70}, - [2800] = {.lex_state = 70}, - [2801] = {.lex_state = 70}, - [2802] = {.lex_state = 70}, - [2803] = {.lex_state = 70}, - [2804] = {.lex_state = 17}, + [2800] = {.lex_state = 17}, + [2801] = {.lex_state = 14}, + [2802] = {.lex_state = 17}, + [2803] = {.lex_state = 17}, + [2804] = {.lex_state = 70}, [2805] = {.lex_state = 70}, - [2806] = {.lex_state = 17}, + [2806] = {.lex_state = 70}, [2807] = {.lex_state = 70}, - [2808] = {.lex_state = 17}, - [2809] = {.lex_state = 6}, + [2808] = {.lex_state = 70}, + [2809] = {.lex_state = 70}, [2810] = {.lex_state = 70}, - [2811] = {.lex_state = 17}, + [2811] = {.lex_state = 70}, [2812] = {.lex_state = 70}, - [2813] = {.lex_state = 70}, + [2813] = {.lex_state = 14}, [2814] = {.lex_state = 70}, [2815] = {.lex_state = 70}, [2816] = {.lex_state = 70}, - [2817] = {.lex_state = 14}, + [2817] = {.lex_state = 70}, [2818] = {.lex_state = 70}, - [2819] = {.lex_state = 70}, + [2819] = {.lex_state = 14}, [2820] = {.lex_state = 70}, [2821] = {.lex_state = 70}, [2822] = {.lex_state = 70}, - [2823] = {.lex_state = 14}, - [2824] = {.lex_state = 70}, + [2823] = {.lex_state = 10}, + [2824] = {.lex_state = 14}, [2825] = {.lex_state = 70}, - [2826] = {.lex_state = 70}, - [2827] = {.lex_state = 70}, + [2826] = {.lex_state = 14}, + [2827] = {.lex_state = 18}, [2828] = {.lex_state = 70}, [2829] = {.lex_state = 70}, - [2830] = {.lex_state = 10}, - [2831] = {.lex_state = 10}, + [2830] = {.lex_state = 70}, + [2831] = {.lex_state = 70}, [2832] = {.lex_state = 70}, - [2833] = {.lex_state = 70}, - [2834] = {.lex_state = 70}, + [2833] = {.lex_state = 14}, + [2834] = {.lex_state = 14}, [2835] = {.lex_state = 70}, - [2836] = {.lex_state = 70}, - [2837] = {.lex_state = 14}, + [2836] = {.lex_state = 6}, + [2837] = {.lex_state = 70}, [2838] = {.lex_state = 70}, - [2839] = {.lex_state = 17}, + [2839] = {.lex_state = 70}, [2840] = {.lex_state = 70}, - [2841] = {.lex_state = 70}, + [2841] = {.lex_state = 17}, [2842] = {.lex_state = 70}, [2843] = {.lex_state = 70}, [2844] = {.lex_state = 70}, - [2845] = {.lex_state = 14}, + [2845] = {.lex_state = 17}, [2846] = {.lex_state = 70}, [2847] = {.lex_state = 70}, - [2848] = {.lex_state = 17}, + [2848] = {.lex_state = 70}, [2849] = {.lex_state = 70}, - [2850] = {.lex_state = 70}, + [2850] = {.lex_state = 14}, [2851] = {.lex_state = 70}, - [2852] = {.lex_state = 14}, + [2852] = {.lex_state = 70}, [2853] = {.lex_state = 70}, [2854] = {.lex_state = 70}, [2855] = {.lex_state = 70}, - [2856] = {.lex_state = 10, .external_lex_state = 4}, - [2857] = {.lex_state = 14}, - [2858] = {.lex_state = 70}, - [2859] = {.lex_state = 6}, + [2856] = {.lex_state = 70}, + [2857] = {.lex_state = 70}, + [2858] = {.lex_state = 10, .external_lex_state = 4}, + [2859] = {.lex_state = 70}, [2860] = {.lex_state = 70}, - [2861] = {.lex_state = 70}, - [2862] = {.lex_state = 70}, + [2861] = {.lex_state = 27}, + [2862] = {.lex_state = 14}, [2863] = {.lex_state = 70}, [2864] = {.lex_state = 70}, - [2865] = {.lex_state = 70}, + [2865] = {.lex_state = 6}, [2866] = {.lex_state = 70}, [2867] = {.lex_state = 70}, - [2868] = {.lex_state = 14}, + [2868] = {.lex_state = 18}, [2869] = {.lex_state = 70}, [2870] = {.lex_state = 70}, - [2871] = {.lex_state = 70}, + [2871] = {.lex_state = 17}, [2872] = {.lex_state = 70}, [2873] = {.lex_state = 70}, [2874] = {.lex_state = 70}, - [2875] = {.lex_state = 70}, - [2876] = {.lex_state = 10}, - [2877] = {.lex_state = 70}, - [2878] = {.lex_state = 70}, + [2875] = {.lex_state = 14}, + [2876] = {.lex_state = 70}, + [2877] = {.lex_state = 17}, + [2878] = {.lex_state = 17}, [2879] = {.lex_state = 70}, [2880] = {.lex_state = 70}, - [2881] = {.lex_state = 70}, - [2882] = {.lex_state = 70}, + [2881] = {.lex_state = 6}, + [2882] = {.lex_state = 17}, [2883] = {.lex_state = 70}, [2884] = {.lex_state = 70}, [2885] = {.lex_state = 70}, [2886] = {.lex_state = 70}, - [2887] = {.lex_state = 18}, + [2887] = {.lex_state = 10}, [2888] = {.lex_state = 70}, [2889] = {.lex_state = 70}, [2890] = {.lex_state = 70}, [2891] = {.lex_state = 70}, [2892] = {.lex_state = 70}, [2893] = {.lex_state = 70}, - [2894] = {.lex_state = 70}, - [2895] = {.lex_state = 70}, - [2896] = {.lex_state = 14}, - [2897] = {.lex_state = 70}, + [2894] = {.lex_state = 17}, + [2895] = {.lex_state = 17}, + [2896] = {.lex_state = 70}, + [2897] = {.lex_state = 17}, [2898] = {.lex_state = 70}, - [2899] = {.lex_state = 70}, + [2899] = {.lex_state = 17}, [2900] = {.lex_state = 70}, - [2901] = {.lex_state = 14}, + [2901] = {.lex_state = 70}, [2902] = {.lex_state = 70}, [2903] = {.lex_state = 70}, - [2904] = {.lex_state = 14}, + [2904] = {.lex_state = 70}, [2905] = {.lex_state = 70}, [2906] = {.lex_state = 70}, [2907] = {.lex_state = 70}, - [2908] = {.lex_state = 14}, + [2908] = {.lex_state = 6}, [2909] = {.lex_state = 70}, [2910] = {.lex_state = 70}, [2911] = {.lex_state = 70}, - [2912] = {.lex_state = 70}, + [2912] = {.lex_state = 17}, [2913] = {.lex_state = 70}, [2914] = {.lex_state = 70}, - [2915] = {.lex_state = 70}, + [2915] = {.lex_state = 27}, [2916] = {.lex_state = 70}, [2917] = {.lex_state = 70}, [2918] = {.lex_state = 70}, - [2919] = {.lex_state = 70}, + [2919] = {.lex_state = 17}, [2920] = {.lex_state = 70}, [2921] = {.lex_state = 70}, - [2922] = {.lex_state = 6}, - [2923] = {.lex_state = 6}, + [2922] = {.lex_state = 70}, + [2923] = {.lex_state = 17}, [2924] = {.lex_state = 70}, [2925] = {.lex_state = 70}, - [2926] = {.lex_state = 6}, + [2926] = {.lex_state = 17}, [2927] = {.lex_state = 70}, [2928] = {.lex_state = 70}, - [2929] = {.lex_state = 70}, - [2930] = {.lex_state = 14}, - [2931] = {.lex_state = 14}, + [2929] = {.lex_state = 10}, + [2930] = {.lex_state = 70}, + [2931] = {.lex_state = 70}, [2932] = {.lex_state = 70}, - [2933] = {.lex_state = 70}, + [2933] = {.lex_state = 14}, [2934] = {.lex_state = 70}, - [2935] = {.lex_state = 70}, + [2935] = {.lex_state = 14}, [2936] = {.lex_state = 70}, [2937] = {.lex_state = 70}, [2938] = {.lex_state = 70}, - [2939] = {.lex_state = 70}, + [2939] = {.lex_state = 10}, [2940] = {.lex_state = 70}, [2941] = {.lex_state = 70}, - [2942] = {.lex_state = 70}, + [2942] = {.lex_state = 6}, [2943] = {.lex_state = 70}, [2944] = {.lex_state = 70}, - [2945] = {.lex_state = 14}, + [2945] = {.lex_state = 70}, [2946] = {.lex_state = 70}, [2947] = {.lex_state = 70}, [2948] = {.lex_state = 70}, - [2949] = {.lex_state = 70}, + [2949] = {.lex_state = 17}, [2950] = {.lex_state = 70}, [2951] = {.lex_state = 70}, [2952] = {.lex_state = 70}, - [2953] = {.lex_state = 14}, + [2953] = {.lex_state = 17}, [2954] = {.lex_state = 70}, [2955] = {.lex_state = 14}, [2956] = {.lex_state = 70}, - [2957] = {.lex_state = 17}, - [2958] = {.lex_state = 70}, + [2957] = {.lex_state = 14}, + [2958] = {.lex_state = 17}, [2959] = {.lex_state = 70}, [2960] = {.lex_state = 70}, [2961] = {.lex_state = 70}, - [2962] = {.lex_state = 70}, + [2962] = {.lex_state = 17}, [2963] = {.lex_state = 70}, - [2964] = {.lex_state = 70}, - [2965] = {.lex_state = 18}, - [2966] = {.lex_state = 6}, + [2964] = {.lex_state = 17}, + [2965] = {.lex_state = 70}, + [2966] = {.lex_state = 70}, [2967] = {.lex_state = 70}, - [2968] = {.lex_state = 70}, + [2968] = {.lex_state = 14}, [2969] = {.lex_state = 70}, - [2970] = {.lex_state = 10}, - [2971] = {.lex_state = 70}, - [2972] = {.lex_state = 70}, - [2973] = {.lex_state = 70}, + [2970] = {.lex_state = 6}, + [2971] = {.lex_state = 17}, + [2972] = {.lex_state = 14}, + [2973] = {.lex_state = 17}, [2974] = {.lex_state = 17}, [2975] = {.lex_state = 70}, - [2976] = {.lex_state = 70}, + [2976] = {.lex_state = 14}, [2977] = {.lex_state = 70}, - [2978] = {.lex_state = 70}, - [2979] = {.lex_state = 70}, + [2978] = {.lex_state = 17}, + [2979] = {.lex_state = 6}, [2980] = {.lex_state = 70}, [2981] = {.lex_state = 70}, [2982] = {.lex_state = 70}, - [2983] = {.lex_state = 70}, + [2983] = {.lex_state = 17}, [2984] = {.lex_state = 70}, - [2985] = {.lex_state = 70}, + [2985] = {.lex_state = 14}, [2986] = {.lex_state = 70}, [2987] = {.lex_state = 70}, - [2988] = {.lex_state = 18}, + [2988] = {.lex_state = 70}, [2989] = {.lex_state = 70}, - [2990] = {.lex_state = 6}, + [2990] = {.lex_state = 17}, [2991] = {.lex_state = 70}, [2992] = {.lex_state = 70}, [2993] = {.lex_state = 70}, [2994] = {.lex_state = 70}, - [2995] = {.lex_state = 70}, + [2995] = {.lex_state = 17}, [2996] = {.lex_state = 70}, [2997] = {.lex_state = 70}, - [2998] = {.lex_state = 70}, + [2998] = {.lex_state = 17}, [2999] = {.lex_state = 70}, [3000] = {.lex_state = 70}, - [3001] = {.lex_state = 14}, - [3002] = {.lex_state = 70}, - [3003] = {.lex_state = 14}, - [3004] = {.lex_state = 6}, - [3005] = {.lex_state = 14}, + [3001] = {.lex_state = 70}, + [3002] = {.lex_state = 14}, + [3003] = {.lex_state = 70}, + [3004] = {.lex_state = 70}, + [3005] = {.lex_state = 70}, [3006] = {.lex_state = 14}, - [3007] = {.lex_state = 14}, - [3008] = {.lex_state = 18}, - [3009] = {.lex_state = 70}, + [3007] = {.lex_state = 70}, + [3008] = {.lex_state = 14}, + [3009] = {.lex_state = 14}, [3010] = {.lex_state = 70}, [3011] = {.lex_state = 70}, [3012] = {.lex_state = 70}, - [3013] = {.lex_state = 70}, + [3013] = {.lex_state = 6}, [3014] = {.lex_state = 70}, [3015] = {.lex_state = 70}, [3016] = {.lex_state = 70}, - [3017] = {.lex_state = 14}, + [3017] = {.lex_state = 70}, [3018] = {.lex_state = 70}, - [3019] = {.lex_state = 70}, + [3019] = {.lex_state = 6}, [3020] = {.lex_state = 70}, - [3021] = {.lex_state = 70}, + [3021] = {.lex_state = 6}, [3022] = {.lex_state = 70}, [3023] = {.lex_state = 70}, - [3024] = {.lex_state = 6}, - [3025] = {.lex_state = 70}, + [3024] = {.lex_state = 70}, + [3025] = {.lex_state = 6}, [3026] = {.lex_state = 70}, [3027] = {.lex_state = 70}, - [3028] = {.lex_state = 70}, - [3029] = {.lex_state = 70}, + [3028] = {.lex_state = 14}, + [3029] = {.lex_state = 6}, [3030] = {.lex_state = 70}, - [3031] = {.lex_state = 70}, - [3032] = {.lex_state = 70}, - [3033] = {.lex_state = 70}, - [3034] = {.lex_state = 70}, + [3031] = {.lex_state = 14}, + [3032] = {.lex_state = 17}, + [3033] = {.lex_state = 14}, + [3034] = {.lex_state = 14}, [3035] = {.lex_state = 70}, [3036] = {.lex_state = 14}, - [3037] = {.lex_state = 70}, - [3038] = {.lex_state = 14}, - [3039] = {.lex_state = 70}, - [3040] = {.lex_state = 70}, - [3041] = {.lex_state = 14}, + [3037] = {.lex_state = 14}, + [3038] = {.lex_state = 70}, + [3039] = {.lex_state = 14}, + [3040] = {.lex_state = 14}, + [3041] = {.lex_state = 10, .external_lex_state = 5}, [3042] = {.lex_state = 14}, - [3043] = {.lex_state = 70}, - [3044] = {.lex_state = 14}, - [3045] = {.lex_state = 70}, + [3043] = {.lex_state = 14}, + [3044] = {.lex_state = 70}, + [3045] = {.lex_state = 14}, [3046] = {.lex_state = 70}, - [3047] = {.lex_state = 14}, - [3048] = {.lex_state = 14}, + [3047] = {.lex_state = 70}, + [3048] = {.lex_state = 27}, [3049] = {.lex_state = 70}, [3050] = {.lex_state = 14}, - [3051] = {.lex_state = 70}, + [3051] = {.lex_state = 14}, [3052] = {.lex_state = 70}, - [3053] = {.lex_state = 14}, - [3054] = {.lex_state = 14}, - [3055] = {.lex_state = 14}, + [3053] = {.lex_state = 70}, + [3054] = {.lex_state = 70}, + [3055] = {.lex_state = 70}, [3056] = {.lex_state = 70}, [3057] = {.lex_state = 70}, - [3058] = {.lex_state = 70}, - [3059] = {.lex_state = 70}, - [3060] = {.lex_state = 14}, - [3061] = {.lex_state = 70}, + [3058] = {.lex_state = 14}, + [3059] = {.lex_state = 27}, + [3060] = {.lex_state = 70}, + [3061] = {.lex_state = 27}, [3062] = {.lex_state = 14}, - [3063] = {.lex_state = 70}, - [3064] = {.lex_state = 70}, - [3065] = {.lex_state = 14}, + [3063] = {.lex_state = 14}, + [3064] = {.lex_state = 14}, + [3065] = {.lex_state = 70}, [3066] = {.lex_state = 14}, [3067] = {.lex_state = 14}, [3068] = {.lex_state = 14}, - [3069] = {.lex_state = 14}, - [3070] = {.lex_state = 14}, + [3069] = {.lex_state = 27}, + [3070] = {.lex_state = 70}, [3071] = {.lex_state = 70}, - [3072] = {.lex_state = 27}, - [3073] = {.lex_state = 14}, + [3072] = {.lex_state = 14}, + [3073] = {.lex_state = 70}, [3074] = {.lex_state = 70}, - [3075] = {.lex_state = 14}, - [3076] = {.lex_state = 14}, - [3077] = {.lex_state = 70}, - [3078] = {.lex_state = 14}, + [3075] = {.lex_state = 10}, + [3076] = {.lex_state = 10, .external_lex_state = 5}, + [3077] = {.lex_state = 14}, + [3078] = {.lex_state = 70}, [3079] = {.lex_state = 14}, [3080] = {.lex_state = 70}, [3081] = {.lex_state = 70}, - [3082] = {.lex_state = 70}, + [3082] = {.lex_state = 14}, [3083] = {.lex_state = 70}, [3084] = {.lex_state = 70}, - [3085] = {.lex_state = 14}, - [3086] = {.lex_state = 70}, + [3085] = {.lex_state = 70}, + [3086] = {.lex_state = 14}, [3087] = {.lex_state = 70}, - [3088] = {.lex_state = 14}, - [3089] = {.lex_state = 14}, + [3088] = {.lex_state = 70}, + [3089] = {.lex_state = 70}, [3090] = {.lex_state = 70}, [3091] = {.lex_state = 70}, [3092] = {.lex_state = 14}, - [3093] = {.lex_state = 14}, - [3094] = {.lex_state = 14}, - [3095] = {.lex_state = 70}, + [3093] = {.lex_state = 70}, + [3094] = {.lex_state = 70}, + [3095] = {.lex_state = 14}, [3096] = {.lex_state = 14}, - [3097] = {.lex_state = 14}, + [3097] = {.lex_state = 70}, [3098] = {.lex_state = 70}, - [3099] = {.lex_state = 14}, + [3099] = {.lex_state = 70}, [3100] = {.lex_state = 70}, - [3101] = {.lex_state = 14}, - [3102] = {.lex_state = 70}, + [3101] = {.lex_state = 70}, + [3102] = {.lex_state = 14}, [3103] = {.lex_state = 70}, - [3104] = {.lex_state = 14}, - [3105] = {.lex_state = 14}, + [3104] = {.lex_state = 70}, + [3105] = {.lex_state = 70}, [3106] = {.lex_state = 70}, - [3107] = {.lex_state = 14}, + [3107] = {.lex_state = 70}, [3108] = {.lex_state = 70}, - [3109] = {.lex_state = 70}, - [3110] = {.lex_state = 70}, - [3111] = {.lex_state = 70}, - [3112] = {.lex_state = 70}, + [3109] = {.lex_state = 14}, + [3110] = {.lex_state = 14}, + [3111] = {.lex_state = 14}, + [3112] = {.lex_state = 14}, [3113] = {.lex_state = 70}, [3114] = {.lex_state = 70}, [3115] = {.lex_state = 70}, [3116] = {.lex_state = 70}, [3117] = {.lex_state = 70}, [3118] = {.lex_state = 14}, - [3119] = {.lex_state = 14}, + [3119] = {.lex_state = 70}, [3120] = {.lex_state = 70}, [3121] = {.lex_state = 70}, [3122] = {.lex_state = 70}, [3123] = {.lex_state = 70}, [3124] = {.lex_state = 14}, - [3125] = {.lex_state = 10, .external_lex_state = 5}, - [3126] = {.lex_state = 70}, - [3127] = {.lex_state = 10, .external_lex_state = 5}, + [3125] = {.lex_state = 14}, + [3126] = {.lex_state = 14}, + [3127] = {.lex_state = 70}, [3128] = {.lex_state = 70}, - [3129] = {.lex_state = 14}, - [3130] = {.lex_state = 10, .external_lex_state = 5}, - [3131] = {.lex_state = 70}, - [3132] = {.lex_state = 70}, - [3133] = {.lex_state = 70}, + [3129] = {.lex_state = 70}, + [3130] = {.lex_state = 14}, + [3131] = {.lex_state = 70, .external_lex_state = 6}, + [3132] = {.lex_state = 14}, + [3133] = {.lex_state = 14}, [3134] = {.lex_state = 14}, [3135] = {.lex_state = 14}, - [3136] = {.lex_state = 14}, + [3136] = {.lex_state = 70}, [3137] = {.lex_state = 70}, - [3138] = {.lex_state = 14}, - [3139] = {.lex_state = 70}, - [3140] = {.lex_state = 70}, - [3141] = {.lex_state = 27}, + [3138] = {.lex_state = 70}, + [3139] = {.lex_state = 14}, + [3140] = {.lex_state = 14}, + [3141] = {.lex_state = 70}, [3142] = {.lex_state = 14}, - [3143] = {.lex_state = 70}, - [3144] = {.lex_state = 14}, + [3143] = {.lex_state = 14}, + [3144] = {.lex_state = 70}, [3145] = {.lex_state = 14}, - [3146] = {.lex_state = 70}, - [3147] = {.lex_state = 70}, + [3146] = {.lex_state = 14}, + [3147] = {.lex_state = 14}, [3148] = {.lex_state = 70}, [3149] = {.lex_state = 70}, - [3150] = {.lex_state = 70, .external_lex_state = 6}, + [3150] = {.lex_state = 70}, [3151] = {.lex_state = 70}, - [3152] = {.lex_state = 70}, - [3153] = {.lex_state = 14}, + [3152] = {.lex_state = 6}, + [3153] = {.lex_state = 70}, [3154] = {.lex_state = 70}, [3155] = {.lex_state = 70}, [3156] = {.lex_state = 70}, - [3157] = {.lex_state = 70}, - [3158] = {.lex_state = 70}, + [3157] = {.lex_state = 14}, + [3158] = {.lex_state = 14}, [3159] = {.lex_state = 70}, - [3160] = {.lex_state = 70}, - [3161] = {.lex_state = 6}, - [3162] = {.lex_state = 14}, - [3163] = {.lex_state = 14}, + [3160] = {.lex_state = 14}, + [3161] = {.lex_state = 14}, + [3162] = {.lex_state = 70}, + [3163] = {.lex_state = 70}, [3164] = {.lex_state = 14}, - [3165] = {.lex_state = 70}, - [3166] = {.lex_state = 70}, + [3165] = {.lex_state = 14}, + [3166] = {.lex_state = 27}, [3167] = {.lex_state = 14}, - [3168] = {.lex_state = 70}, - [3169] = {.lex_state = 27}, - [3170] = {.lex_state = 27}, - [3171] = {.lex_state = 14}, - [3172] = {.lex_state = 18}, + [3168] = {.lex_state = 14}, + [3169] = {.lex_state = 70}, + [3170] = {.lex_state = 14}, + [3171] = {.lex_state = 70}, + [3172] = {.lex_state = 14}, [3173] = {.lex_state = 14}, - [3174] = {.lex_state = 70}, - [3175] = {.lex_state = 70}, + [3174] = {.lex_state = 14}, + [3175] = {.lex_state = 14}, [3176] = {.lex_state = 14}, - [3177] = {.lex_state = 70}, - [3178] = {.lex_state = 70}, - [3179] = {.lex_state = 70}, - [3180] = {.lex_state = 70}, - [3181] = {.lex_state = 70}, - [3182] = {.lex_state = 70}, - [3183] = {.lex_state = 70}, + [3177] = {.lex_state = 14}, + [3178] = {.lex_state = 14}, + [3179] = {.lex_state = 5}, + [3180] = {.lex_state = 14}, + [3181] = {.lex_state = 5}, + [3182] = {.lex_state = 14}, + [3183] = {.lex_state = 14}, [3184] = {.lex_state = 70}, - [3185] = {.lex_state = 70}, + [3185] = {.lex_state = 14}, [3186] = {.lex_state = 14}, - [3187] = {.lex_state = 70}, + [3187] = {.lex_state = 14}, [3188] = {.lex_state = 14}, - [3189] = {.lex_state = 14}, - [3190] = {.lex_state = 14}, + [3189] = {.lex_state = 70}, + [3190] = {.lex_state = 70}, [3191] = {.lex_state = 14}, [3192] = {.lex_state = 70}, [3193] = {.lex_state = 70}, - [3194] = {.lex_state = 70}, + [3194] = {.lex_state = 18}, [3195] = {.lex_state = 70}, [3196] = {.lex_state = 70}, - [3197] = {.lex_state = 14}, + [3197] = {.lex_state = 70}, [3198] = {.lex_state = 70}, - [3199] = {.lex_state = 70}, - [3200] = {.lex_state = 70}, + [3199] = {.lex_state = 14}, + [3200] = {.lex_state = 14}, [3201] = {.lex_state = 70}, - [3202] = {.lex_state = 10}, + [3202] = {.lex_state = 70}, [3203] = {.lex_state = 70}, - [3204] = {.lex_state = 70}, - [3205] = {.lex_state = 70}, - [3206] = {.lex_state = 70}, + [3204] = {.lex_state = 14}, + [3205] = {.lex_state = 14}, + [3206] = {.lex_state = 14}, [3207] = {.lex_state = 70}, [3208] = {.lex_state = 70}, [3209] = {.lex_state = 70}, [3210] = {.lex_state = 70}, - [3211] = {.lex_state = 14}, + [3211] = {.lex_state = 70}, [3212] = {.lex_state = 70}, - [3213] = {.lex_state = 70}, + [3213] = {.lex_state = 6}, [3214] = {.lex_state = 70}, [3215] = {.lex_state = 70}, [3216] = {.lex_state = 70}, [3217] = {.lex_state = 70}, - [3218] = {.lex_state = 14}, - [3219] = {.lex_state = 14}, + [3218] = {.lex_state = 70}, + [3219] = {.lex_state = 70}, [3220] = {.lex_state = 70}, - [3221] = {.lex_state = 14}, + [3221] = {.lex_state = 70}, [3222] = {.lex_state = 70}, [3223] = {.lex_state = 70}, [3224] = {.lex_state = 70}, @@ -13248,145 +13267,145 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3226] = {.lex_state = 70}, [3227] = {.lex_state = 14}, [3228] = {.lex_state = 70}, - [3229] = {.lex_state = 14}, - [3230] = {.lex_state = 14}, + [3229] = {.lex_state = 70}, + [3230] = {.lex_state = 70}, [3231] = {.lex_state = 70}, [3232] = {.lex_state = 70}, [3233] = {.lex_state = 70}, [3234] = {.lex_state = 70}, - [3235] = {.lex_state = 70}, - [3236] = {.lex_state = 70}, - [3237] = {.lex_state = 5}, + [3235] = {.lex_state = 14}, + [3236] = {.lex_state = 14}, + [3237] = {.lex_state = 70}, [3238] = {.lex_state = 14}, [3239] = {.lex_state = 14}, [3240] = {.lex_state = 70}, [3241] = {.lex_state = 70}, [3242] = {.lex_state = 70}, - [3243] = {.lex_state = 14}, + [3243] = {.lex_state = 70}, [3244] = {.lex_state = 70}, [3245] = {.lex_state = 70}, - [3246] = {.lex_state = 70}, - [3247] = {.lex_state = 27}, - [3248] = {.lex_state = 14}, - [3249] = {.lex_state = 70}, + [3246] = {.lex_state = 14}, + [3247] = {.lex_state = 14}, + [3248] = {.lex_state = 70}, + [3249] = {.lex_state = 14}, [3250] = {.lex_state = 70}, - [3251] = {.lex_state = 14}, + [3251] = {.lex_state = 70}, [3252] = {.lex_state = 70}, - [3253] = {.lex_state = 14}, + [3253] = {.lex_state = 70}, [3254] = {.lex_state = 14}, - [3255] = {.lex_state = 14}, - [3256] = {.lex_state = 10}, - [3257] = {.lex_state = 5}, + [3255] = {.lex_state = 70}, + [3256] = {.lex_state = 70}, + [3257] = {.lex_state = 70}, [3258] = {.lex_state = 70}, [3259] = {.lex_state = 70}, - [3260] = {.lex_state = 70}, + [3260] = {.lex_state = 14}, [3261] = {.lex_state = 14}, [3262] = {.lex_state = 70}, - [3263] = {.lex_state = 70}, + [3263] = {.lex_state = 70, .external_lex_state = 6}, [3264] = {.lex_state = 70}, - [3265] = {.lex_state = 70}, + [3265] = {.lex_state = 10, .external_lex_state = 5}, [3266] = {.lex_state = 70}, [3267] = {.lex_state = 14}, - [3268] = {.lex_state = 14}, - [3269] = {.lex_state = 14}, - [3270] = {.lex_state = 6}, - [3271] = {.lex_state = 14}, - [3272] = {.lex_state = 14}, - [3273] = {.lex_state = 14}, - [3274] = {.lex_state = 14}, - [3275] = {.lex_state = 14}, + [3268] = {.lex_state = 27}, + [3269] = {.lex_state = 70}, + [3270] = {.lex_state = 14}, + [3271] = {.lex_state = 70}, + [3272] = {.lex_state = 70}, + [3273] = {.lex_state = 70}, + [3274] = {.lex_state = 70}, + [3275] = {.lex_state = 70}, [3276] = {.lex_state = 70}, [3277] = {.lex_state = 70}, [3278] = {.lex_state = 70}, - [3279] = {.lex_state = 14}, - [3280] = {.lex_state = 14}, + [3279] = {.lex_state = 70}, + [3280] = {.lex_state = 70}, [3281] = {.lex_state = 14}, [3282] = {.lex_state = 70}, [3283] = {.lex_state = 14}, - [3284] = {.lex_state = 14}, - [3285] = {.lex_state = 70}, - [3286] = {.lex_state = 14}, - [3287] = {.lex_state = 70}, - [3288] = {.lex_state = 14}, + [3284] = {.lex_state = 70}, + [3285] = {.lex_state = 14}, + [3286] = {.lex_state = 70}, + [3287] = {.lex_state = 14}, + [3288] = {.lex_state = 70}, [3289] = {.lex_state = 14}, - [3290] = {.lex_state = 14}, - [3291] = {.lex_state = 70}, + [3290] = {.lex_state = 70}, + [3291] = {.lex_state = 14}, [3292] = {.lex_state = 14}, - [3293] = {.lex_state = 14}, - [3294] = {.lex_state = 70}, - [3295] = {.lex_state = 14}, + [3293] = {.lex_state = 70}, + [3294] = {.lex_state = 14}, + [3295] = {.lex_state = 70}, [3296] = {.lex_state = 14}, [3297] = {.lex_state = 14}, - [3298] = {.lex_state = 14}, - [3299] = {.lex_state = 70}, + [3298] = {.lex_state = 70}, + [3299] = {.lex_state = 14}, [3300] = {.lex_state = 14}, [3301] = {.lex_state = 14}, [3302] = {.lex_state = 14}, - [3303] = {.lex_state = 14}, - [3304] = {.lex_state = 70}, + [3303] = {.lex_state = 70}, + [3304] = {.lex_state = 14}, [3305] = {.lex_state = 70}, - [3306] = {.lex_state = 70}, - [3307] = {.lex_state = 70, .external_lex_state = 6}, + [3306] = {.lex_state = 14}, + [3307] = {.lex_state = 10}, [3308] = {.lex_state = 14}, - [3309] = {.lex_state = 14}, + [3309] = {.lex_state = 70}, [3310] = {.lex_state = 14}, - [3311] = {.lex_state = 27}, + [3311] = {.lex_state = 14}, [3312] = {.lex_state = 70}, - [3313] = {.lex_state = 70, .external_lex_state = 7}, + [3313] = {.lex_state = 71}, [3314] = {.lex_state = 14}, [3315] = {.lex_state = 14}, [3316] = {.lex_state = 14}, [3317] = {.lex_state = 14}, - [3318] = {.lex_state = 14}, - [3319] = {.lex_state = 71}, - [3320] = {.lex_state = 14}, + [3318] = {.lex_state = 18}, + [3319] = {.lex_state = 70, .external_lex_state = 7}, + [3320] = {.lex_state = 70}, [3321] = {.lex_state = 70}, - [3322] = {.lex_state = 14}, + [3322] = {.lex_state = 70}, [3323] = {.lex_state = 70}, - [3324] = {.lex_state = 70, .external_lex_state = 7}, - [3325] = {.lex_state = 70}, - [3326] = {.lex_state = 14}, + [3324] = {.lex_state = 70}, + [3325] = {.lex_state = 71}, + [3326] = {.lex_state = 70}, [3327] = {.lex_state = 70}, - [3328] = {.lex_state = 14}, + [3328] = {.lex_state = 70}, [3329] = {.lex_state = 70}, [3330] = {.lex_state = 14}, - [3331] = {.lex_state = 70}, - [3332] = {.lex_state = 14}, - [3333] = {.lex_state = 70}, + [3331] = {.lex_state = 18}, + [3332] = {.lex_state = 70}, + [3333] = {.lex_state = 70, .external_lex_state = 7}, [3334] = {.lex_state = 70}, - [3335] = {.lex_state = 70}, + [3335] = {.lex_state = 14}, [3336] = {.lex_state = 70}, - [3337] = {.lex_state = 14}, - [3338] = {.lex_state = 70}, + [3337] = {.lex_state = 71}, + [3338] = {.lex_state = 14}, [3339] = {.lex_state = 70}, - [3340] = {.lex_state = 70, .external_lex_state = 7}, - [3341] = {.lex_state = 71}, - [3342] = {.lex_state = 71}, + [3340] = {.lex_state = 70}, + [3341] = {.lex_state = 70, .external_lex_state = 7}, + [3342] = {.lex_state = 14}, [3343] = {.lex_state = 70}, [3344] = {.lex_state = 14}, - [3345] = {.lex_state = 70}, - [3346] = {.lex_state = 10}, - [3347] = {.lex_state = 14}, - [3348] = {.lex_state = 14}, - [3349] = {.lex_state = 70}, - [3350] = {.lex_state = 14}, + [3345] = {.lex_state = 71}, + [3346] = {.lex_state = 70}, + [3347] = {.lex_state = 70}, + [3348] = {.lex_state = 70}, + [3349] = {.lex_state = 14}, + [3350] = {.lex_state = 70}, [3351] = {.lex_state = 14}, [3352] = {.lex_state = 14}, [3353] = {.lex_state = 14}, [3354] = {.lex_state = 14}, - [3355] = {.lex_state = 70}, + [3355] = {.lex_state = 14}, [3356] = {.lex_state = 14}, [3357] = {.lex_state = 70}, - [3358] = {.lex_state = 14}, - [3359] = {.lex_state = 14}, - [3360] = {.lex_state = 70}, + [3358] = {.lex_state = 70}, + [3359] = {.lex_state = 70}, + [3360] = {.lex_state = 14}, [3361] = {.lex_state = 70}, [3362] = {.lex_state = 70}, [3363] = {.lex_state = 70}, [3364] = {.lex_state = 70}, [3365] = {.lex_state = 70}, - [3366] = {.lex_state = 70}, - [3367] = {.lex_state = 70}, + [3366] = {.lex_state = 18}, + [3367] = {.lex_state = 14}, [3368] = {.lex_state = 70}, [3369] = {.lex_state = 70}, [3370] = {.lex_state = 14}, @@ -13394,249 +13413,251 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3372] = {.lex_state = 70}, [3373] = {.lex_state = 70}, [3374] = {.lex_state = 70}, - [3375] = {.lex_state = 70, .external_lex_state = 8}, - [3376] = {.lex_state = 14}, + [3375] = {.lex_state = 70}, + [3376] = {.lex_state = 70, .external_lex_state = 8}, [3377] = {.lex_state = 70}, [3378] = {.lex_state = 70}, [3379] = {.lex_state = 70}, - [3380] = {.lex_state = 70}, - [3381] = {.lex_state = 18}, + [3380] = {.lex_state = 70, .external_lex_state = 9}, + [3381] = {.lex_state = 70}, [3382] = {.lex_state = 70}, [3383] = {.lex_state = 70}, - [3384] = {.lex_state = 14}, + [3384] = {.lex_state = 70}, [3385] = {.lex_state = 70}, - [3386] = {.lex_state = 71}, - [3387] = {.lex_state = 70, .external_lex_state = 8}, + [3386] = {.lex_state = 18}, + [3387] = {.lex_state = 14}, [3388] = {.lex_state = 70}, [3389] = {.lex_state = 14}, [3390] = {.lex_state = 14}, [3391] = {.lex_state = 70}, [3392] = {.lex_state = 70}, - [3393] = {.lex_state = 18}, - [3394] = {.lex_state = 14}, - [3395] = {.lex_state = 70}, - [3396] = {.lex_state = 70, .external_lex_state = 8}, - [3397] = {.lex_state = 18}, - [3398] = {.lex_state = 14}, - [3399] = {.lex_state = 70}, + [3393] = {.lex_state = 70}, + [3394] = {.lex_state = 70}, + [3395] = {.lex_state = 14}, + [3396] = {.lex_state = 10}, + [3397] = {.lex_state = 70}, + [3398] = {.lex_state = 70}, + [3399] = {.lex_state = 14}, [3400] = {.lex_state = 70}, [3401] = {.lex_state = 70}, - [3402] = {.lex_state = 70}, - [3403] = {.lex_state = 71}, + [3402] = {.lex_state = 165}, + [3403] = {.lex_state = 70}, [3404] = {.lex_state = 70}, [3405] = {.lex_state = 70}, [3406] = {.lex_state = 70}, [3407] = {.lex_state = 14}, [3408] = {.lex_state = 70}, [3409] = {.lex_state = 14}, - [3410] = {.lex_state = 70}, + [3410] = {.lex_state = 71}, [3411] = {.lex_state = 70}, - [3412] = {.lex_state = 70}, - [3413] = {.lex_state = 18}, - [3414] = {.lex_state = 18}, + [3412] = {.lex_state = 18}, + [3413] = {.lex_state = 70}, + [3414] = {.lex_state = 70}, [3415] = {.lex_state = 70}, [3416] = {.lex_state = 70}, [3417] = {.lex_state = 70}, [3418] = {.lex_state = 70}, - [3419] = {.lex_state = 70}, - [3420] = {.lex_state = 70}, - [3421] = {.lex_state = 14}, + [3419] = {.lex_state = 10}, + [3420] = {.lex_state = 14}, + [3421] = {.lex_state = 70}, [3422] = {.lex_state = 70}, - [3423] = {.lex_state = 70}, + [3423] = {.lex_state = 71}, [3424] = {.lex_state = 70}, [3425] = {.lex_state = 70}, [3426] = {.lex_state = 70}, - [3427] = {.lex_state = 70}, + [3427] = {.lex_state = 14}, [3428] = {.lex_state = 70}, - [3429] = {.lex_state = 70}, - [3430] = {.lex_state = 18}, - [3431] = {.lex_state = 14}, - [3432] = {.lex_state = 14}, - [3433] = {.lex_state = 14}, - [3434] = {.lex_state = 70}, - [3435] = {.lex_state = 70}, - [3436] = {.lex_state = 70}, - [3437] = {.lex_state = 70, .external_lex_state = 8}, + [3429] = {.lex_state = 70, .external_lex_state = 9}, + [3430] = {.lex_state = 70}, + [3431] = {.lex_state = 70}, + [3432] = {.lex_state = 70}, + [3433] = {.lex_state = 70}, + [3434] = {.lex_state = 14}, + [3435] = {.lex_state = 18}, + [3436] = {.lex_state = 14}, + [3437] = {.lex_state = 70}, [3438] = {.lex_state = 70}, [3439] = {.lex_state = 70}, - [3440] = {.lex_state = 14}, - [3441] = {.lex_state = 14}, - [3442] = {.lex_state = 71}, + [3440] = {.lex_state = 70}, + [3441] = {.lex_state = 70}, + [3442] = {.lex_state = 70}, [3443] = {.lex_state = 70}, - [3444] = {.lex_state = 70}, - [3445] = {.lex_state = 10}, - [3446] = {.lex_state = 14}, + [3444] = {.lex_state = 14}, + [3445] = {.lex_state = 14}, + [3446] = {.lex_state = 70}, [3447] = {.lex_state = 70}, - [3448] = {.lex_state = 70}, - [3449] = {.lex_state = 70}, + [3448] = {.lex_state = 14}, + [3449] = {.lex_state = 14}, [3450] = {.lex_state = 70}, - [3451] = {.lex_state = 70}, - [3452] = {.lex_state = 70}, - [3453] = {.lex_state = 70}, + [3451] = {.lex_state = 70, .external_lex_state = 9}, + [3452] = {.lex_state = 14}, + [3453] = {.lex_state = 14}, [3454] = {.lex_state = 70}, [3455] = {.lex_state = 70}, [3456] = {.lex_state = 70}, - [3457] = {.lex_state = 18}, - [3458] = {.lex_state = 70}, - [3459] = {.lex_state = 70}, - [3460] = {.lex_state = 70}, - [3461] = {.lex_state = 70}, + [3457] = {.lex_state = 70}, + [3458] = {.lex_state = 14}, + [3459] = {.lex_state = 14}, + [3460] = {.lex_state = 14}, + [3461] = {.lex_state = 70, .external_lex_state = 8}, [3462] = {.lex_state = 70}, [3463] = {.lex_state = 70}, [3464] = {.lex_state = 70}, - [3465] = {.lex_state = 14}, + [3465] = {.lex_state = 70}, [3466] = {.lex_state = 70}, [3467] = {.lex_state = 70}, [3468] = {.lex_state = 70}, [3469] = {.lex_state = 70}, - [3470] = {.lex_state = 70}, + [3470] = {.lex_state = 14}, [3471] = {.lex_state = 70}, [3472] = {.lex_state = 70}, - [3473] = {.lex_state = 70}, + [3473] = {.lex_state = 14}, [3474] = {.lex_state = 70}, [3475] = {.lex_state = 70}, - [3476] = {.lex_state = 14}, + [3476] = {.lex_state = 70}, [3477] = {.lex_state = 70}, - [3478] = {.lex_state = 14}, - [3479] = {.lex_state = 70, .external_lex_state = 8}, - [3480] = {.lex_state = 70}, + [3478] = {.lex_state = 70}, + [3479] = {.lex_state = 70}, + [3480] = {.lex_state = 18}, [3481] = {.lex_state = 70}, - [3482] = {.lex_state = 18}, + [3482] = {.lex_state = 70}, [3483] = {.lex_state = 70}, - [3484] = {.lex_state = 70}, - [3485] = {.lex_state = 70}, + [3484] = {.lex_state = 14}, + [3485] = {.lex_state = 18}, [3486] = {.lex_state = 70}, [3487] = {.lex_state = 70}, [3488] = {.lex_state = 70}, - [3489] = {.lex_state = 14}, + [3489] = {.lex_state = 70, .external_lex_state = 7}, [3490] = {.lex_state = 70}, [3491] = {.lex_state = 70}, [3492] = {.lex_state = 70}, - [3493] = {.lex_state = 71}, - [3494] = {.lex_state = 70, .external_lex_state = 9}, - [3495] = {.lex_state = 70, .external_lex_state = 9}, + [3493] = {.lex_state = 14}, + [3494] = {.lex_state = 70, .external_lex_state = 8}, + [3495] = {.lex_state = 70}, [3496] = {.lex_state = 70}, - [3497] = {.lex_state = 70, .external_lex_state = 9}, - [3498] = {.lex_state = 14}, - [3499] = {.lex_state = 165}, - [3500] = {.lex_state = 70, .external_lex_state = 7}, + [3497] = {.lex_state = 14}, + [3498] = {.lex_state = 70}, + [3499] = {.lex_state = 70}, + [3500] = {.lex_state = 70}, [3501] = {.lex_state = 70}, - [3502] = {.lex_state = 18}, + [3502] = {.lex_state = 70, .external_lex_state = 7}, [3503] = {.lex_state = 70}, [3504] = {.lex_state = 70}, [3505] = {.lex_state = 70}, - [3506] = {.lex_state = 14}, + [3506] = {.lex_state = 70}, [3507] = {.lex_state = 70}, - [3508] = {.lex_state = 18}, + [3508] = {.lex_state = 70}, [3509] = {.lex_state = 14}, - [3510] = {.lex_state = 70}, + [3510] = {.lex_state = 18}, [3511] = {.lex_state = 70}, [3512] = {.lex_state = 70}, - [3513] = {.lex_state = 70}, + [3513] = {.lex_state = 70, .external_lex_state = 8}, [3514] = {.lex_state = 70}, [3515] = {.lex_state = 70}, - [3516] = {.lex_state = 14}, - [3517] = {.lex_state = 14}, + [3516] = {.lex_state = 70}, + [3517] = {.lex_state = 70}, [3518] = {.lex_state = 70}, - [3519] = {.lex_state = 70, .external_lex_state = 7}, + [3519] = {.lex_state = 70, .external_lex_state = 8}, [3520] = {.lex_state = 70}, [3521] = {.lex_state = 70}, [3522] = {.lex_state = 70}, [3523] = {.lex_state = 70}, [3524] = {.lex_state = 70}, - [3525] = {.lex_state = 70, .external_lex_state = 7}, + [3525] = {.lex_state = 70}, [3526] = {.lex_state = 70}, [3527] = {.lex_state = 70}, [3528] = {.lex_state = 70}, [3529] = {.lex_state = 70}, [3530] = {.lex_state = 70}, - [3531] = {.lex_state = 70}, + [3531] = {.lex_state = 14}, [3532] = {.lex_state = 70}, [3533] = {.lex_state = 70}, - [3534] = {.lex_state = 70}, - [3535] = {.lex_state = 70}, + [3534] = {.lex_state = 14}, + [3535] = {.lex_state = 18}, [3536] = {.lex_state = 70}, - [3537] = {.lex_state = 70}, - [3538] = {.lex_state = 14}, - [3539] = {.lex_state = 14}, - [3540] = {.lex_state = 70}, - [3541] = {.lex_state = 18}, + [3537] = {.lex_state = 14}, + [3538] = {.lex_state = 70}, + [3539] = {.lex_state = 18}, + [3540] = {.lex_state = 18}, + [3541] = {.lex_state = 70}, [3542] = {.lex_state = 70}, - [3543] = {.lex_state = 14}, - [3544] = {.lex_state = 70}, + [3543] = {.lex_state = 70}, + [3544] = {.lex_state = 18}, [3545] = {.lex_state = 18}, - [3546] = {.lex_state = 18}, - [3547] = {.lex_state = 70}, + [3546] = {.lex_state = 70}, + [3547] = {.lex_state = 14}, [3548] = {.lex_state = 70}, - [3549] = {.lex_state = 18}, - [3550] = {.lex_state = 70}, - [3551] = {.lex_state = 18}, - [3552] = {.lex_state = 14}, - [3553] = {.lex_state = 70}, - [3554] = {.lex_state = 14}, - [3555] = {.lex_state = 14}, + [3549] = {.lex_state = 14}, + [3550] = {.lex_state = 70, .external_lex_state = 9}, + [3551] = {.lex_state = 14}, + [3552] = {.lex_state = 70}, + [3553] = {.lex_state = 70, .external_lex_state = 9}, + [3554] = {.lex_state = 18}, + [3555] = {.lex_state = 18}, [3556] = {.lex_state = 70}, - [3557] = {.lex_state = 70}, + [3557] = {.lex_state = 14}, [3558] = {.lex_state = 14}, - [3559] = {.lex_state = 70}, - [3560] = {.lex_state = 70}, - [3561] = {.lex_state = 18}, + [3559] = {.lex_state = 18}, + [3560] = {.lex_state = 14}, + [3561] = {.lex_state = 70, .external_lex_state = 9}, [3562] = {.lex_state = 14}, [3563] = {.lex_state = 70}, [3564] = {.lex_state = 14}, [3565] = {.lex_state = 18}, - [3566] = {.lex_state = 18}, + [3566] = {.lex_state = 14}, [3567] = {.lex_state = 70}, [3568] = {.lex_state = 70}, - [3569] = {.lex_state = 70}, + [3569] = {.lex_state = 14}, [3570] = {.lex_state = 70}, - [3571] = {.lex_state = 18}, + [3571] = {.lex_state = 70}, [3572] = {.lex_state = 70}, [3573] = {.lex_state = 70}, [3574] = {.lex_state = 70}, [3575] = {.lex_state = 70}, [3576] = {.lex_state = 70}, - [3577] = {.lex_state = 71}, + [3577] = {.lex_state = 18}, [3578] = {.lex_state = 70}, - [3579] = {.lex_state = 14}, + [3579] = {.lex_state = 18}, [3580] = {.lex_state = 70}, [3581] = {.lex_state = 70}, - [3582] = {.lex_state = 70}, - [3583] = {.lex_state = 18}, - [3584] = {.lex_state = 70, .external_lex_state = 8}, + [3582] = {.lex_state = 18}, + [3583] = {.lex_state = 70}, + [3584] = {.lex_state = 70}, [3585] = {.lex_state = 18}, - [3586] = {.lex_state = 70}, - [3587] = {.lex_state = 70}, + [3586] = {.lex_state = 18}, + [3587] = {.lex_state = 14}, [3588] = {.lex_state = 18}, - [3589] = {.lex_state = 14}, - [3590] = {.lex_state = 14}, + [3589] = {.lex_state = 18}, + [3590] = {.lex_state = 18}, [3591] = {.lex_state = 18}, [3592] = {.lex_state = 18}, - [3593] = {.lex_state = 70}, - [3594] = {.lex_state = 18}, - [3595] = {.lex_state = 18}, - [3596] = {.lex_state = 18}, - [3597] = {.lex_state = 18}, - [3598] = {.lex_state = 14}, + [3593] = {.lex_state = 14}, + [3594] = {.lex_state = 71}, + [3595] = {.lex_state = 14}, + [3596] = {.lex_state = 14}, + [3597] = {.lex_state = 70}, + [3598] = {.lex_state = 70}, [3599] = {.lex_state = 14}, - [3600] = {.lex_state = 70}, - [3601] = {.lex_state = 14}, + [3600] = {.lex_state = 14}, + [3601] = {.lex_state = 70, .external_lex_state = 8}, [3602] = {.lex_state = 14}, - [3603] = {.lex_state = 70}, - [3604] = {.lex_state = 70}, - [3605] = {.lex_state = 14}, - [3606] = {.lex_state = 14}, + [3603] = {.lex_state = 14}, + [3604] = {.lex_state = 14}, + [3605] = {.lex_state = 71}, + [3606] = {.lex_state = 70}, [3607] = {.lex_state = 14}, - [3608] = {.lex_state = 14}, - [3609] = {.lex_state = 14}, + [3608] = {.lex_state = 70}, + [3609] = {.lex_state = 70}, [3610] = {.lex_state = 70}, - [3611] = {(TSStateId)(-1)}, - [3612] = {(TSStateId)(-1)}, + [3611] = {.lex_state = 14}, + [3612] = {.lex_state = 70}, [3613] = {(TSStateId)(-1)}, [3614] = {(TSStateId)(-1)}, [3615] = {(TSStateId)(-1)}, [3616] = {(TSStateId)(-1)}, [3617] = {(TSStateId)(-1)}, + [3618] = {(TSStateId)(-1)}, + [3619] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -13773,8 +13794,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_true] = ACTIONS(1), [anon_sym_false] = ACTIONS(1), [anon_sym_SLASH_SLASH] = ACTIONS(3), - [sym__inner_line_doc_comment_marker] = ACTIONS(1), - [sym__outer_line_doc_comment_marker] = ACTIONS(1), + [anon_sym_BANG2] = ACTIONS(1), + [anon_sym_SLASH2] = ACTIONS(1), [anon_sym_SLASH_STAR] = ACTIONS(5), [sym_shebang] = ACTIONS(1), [sym_self] = ACTIONS(1), @@ -13793,82 +13814,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__error_sentinel] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(3518), - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(392), + [sym_source_file] = STATE(3512), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(1), [sym_block_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(5), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(34), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [ts_builtin_sym_end] = ACTIONS(7), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), @@ -13947,81 +13968,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [2] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1822), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1838), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(2), [sym_block_comment] = STATE(2), - [aux_sym_source_file_repeat1] = STATE(32), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14099,81 +14120,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [3] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1643), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1837), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(3), [sym_block_comment] = STATE(3), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(2), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14251,88 +14272,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [4] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1724), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(4), [sym_block_comment] = STATE(4), - [aux_sym_source_file_repeat1] = STATE(31), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(7), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [ts_builtin_sym_end] = ACTIONS(123), [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), @@ -14403,88 +14424,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [5] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1748), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(5), [sym_block_comment] = STATE(5), - [aux_sym_source_file_repeat1] = STATE(20), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [ts_builtin_sym_end] = ACTIONS(125), + [aux_sym_source_file_repeat1] = STATE(6), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(125), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14555,81 +14576,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [6] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1684), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1660), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(6), [sym_block_comment] = STATE(6), - [aux_sym_source_file_repeat1] = STATE(15), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(9), [anon_sym_SEMI] = ACTIONS(11), [anon_sym_macro_rules_BANG] = ACTIONS(13), @@ -14707,88 +14728,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [7] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1690), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(7), [sym_block_comment] = STATE(7), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [ts_builtin_sym_end] = ACTIONS(129), [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(129), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -14859,240 +14880,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [8] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1710), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(8), [sym_block_comment] = STATE(8), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [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(131), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = 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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [ts_builtin_sym_end] = ACTIONS(131), + [sym_identifier] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(136), + [anon_sym_macro_rules_BANG] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(148), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_u8] = ACTIONS(154), + [anon_sym_i8] = ACTIONS(154), + [anon_sym_u16] = ACTIONS(154), + [anon_sym_i16] = ACTIONS(154), + [anon_sym_u32] = ACTIONS(154), + [anon_sym_i32] = ACTIONS(154), + [anon_sym_u64] = ACTIONS(154), + [anon_sym_i64] = ACTIONS(154), + [anon_sym_u128] = ACTIONS(154), + [anon_sym_i128] = ACTIONS(154), + [anon_sym_isize] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_f32] = ACTIONS(154), + [anon_sym_f64] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_str] = ACTIONS(154), + [anon_sym_char] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_POUND] = ACTIONS(172), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_async] = ACTIONS(178), + [anon_sym_break] = ACTIONS(181), + [anon_sym_const] = ACTIONS(184), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_default] = ACTIONS(190), + [anon_sym_enum] = ACTIONS(193), + [anon_sym_fn] = ACTIONS(196), + [anon_sym_for] = ACTIONS(199), + [anon_sym_if] = ACTIONS(202), + [anon_sym_impl] = ACTIONS(205), + [anon_sym_let] = ACTIONS(208), + [anon_sym_loop] = ACTIONS(211), + [anon_sym_match] = ACTIONS(214), + [anon_sym_mod] = ACTIONS(217), + [anon_sym_pub] = ACTIONS(220), + [anon_sym_return] = ACTIONS(223), + [anon_sym_static] = ACTIONS(226), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_trait] = ACTIONS(232), + [anon_sym_type] = ACTIONS(235), + [anon_sym_union] = ACTIONS(238), + [anon_sym_unsafe] = ACTIONS(241), + [anon_sym_use] = ACTIONS(244), + [anon_sym_while] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(250), + [anon_sym_yield] = ACTIONS(253), + [anon_sym_move] = ACTIONS(256), + [anon_sym_try] = ACTIONS(259), + [sym_integer_literal] = ACTIONS(262), + [aux_sym_string_literal_token1] = ACTIONS(265), + [sym_char_literal] = ACTIONS(262), + [anon_sym_true] = ACTIONS(268), + [anon_sym_false] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(271), + [sym_super] = ACTIONS(274), + [sym_crate] = ACTIONS(277), + [sym_metavariable] = ACTIONS(280), + [sym__raw_string_literal_start] = ACTIONS(283), + [sym_float_literal] = ACTIONS(262), }, [9] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1837), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1674), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(9), [sym_block_comment] = STATE(9), - [aux_sym_source_file_repeat1] = STATE(27), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(10), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(133), + [anon_sym_RBRACE] = ACTIONS(286), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15163,88 +15184,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [10] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1758), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1702), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(10), [sym_block_comment] = STATE(10), - [aux_sym_source_file_repeat1] = STATE(12), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(135), + [anon_sym_RBRACE] = ACTIONS(288), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15315,88 +15336,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [11] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1649), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1794), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(11), [sym_block_comment] = STATE(11), - [aux_sym_source_file_repeat1] = STATE(13), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(12), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(137), + [anon_sym_RBRACE] = ACTIONS(290), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15467,88 +15488,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [12] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1720), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1797), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(12), [sym_block_comment] = STATE(12), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(139), + [anon_sym_RBRACE] = ACTIONS(292), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15619,240 +15640,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [13] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1653), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(404), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(13), [sym_block_comment] = STATE(13), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [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(141), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(119), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(39), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(43), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_enum] = ACTIONS(49), - [anon_sym_fn] = ACTIONS(51), - [anon_sym_for] = ACTIONS(53), - [anon_sym_if] = ACTIONS(55), - [anon_sym_impl] = ACTIONS(57), - [anon_sym_let] = ACTIONS(59), - [anon_sym_loop] = ACTIONS(61), - [anon_sym_match] = ACTIONS(63), - [anon_sym_mod] = ACTIONS(65), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(71), - [anon_sym_struct] = ACTIONS(73), - [anon_sym_trait] = ACTIONS(75), - [anon_sym_type] = ACTIONS(77), - [anon_sym_union] = ACTIONS(79), - [anon_sym_unsafe] = ACTIONS(81), - [anon_sym_use] = ACTIONS(83), - [anon_sym_while] = ACTIONS(85), - [anon_sym_extern] = 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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(133), + [anon_sym_SEMI] = ACTIONS(136), + [anon_sym_macro_rules_BANG] = ACTIONS(139), + [anon_sym_LPAREN] = ACTIONS(142), + [anon_sym_LBRACK] = ACTIONS(145), + [anon_sym_LBRACE] = ACTIONS(148), + [anon_sym_RBRACE] = ACTIONS(131), + [anon_sym_STAR] = ACTIONS(151), + [anon_sym_u8] = ACTIONS(154), + [anon_sym_i8] = ACTIONS(154), + [anon_sym_u16] = ACTIONS(154), + [anon_sym_i16] = ACTIONS(154), + [anon_sym_u32] = ACTIONS(154), + [anon_sym_i32] = ACTIONS(154), + [anon_sym_u64] = ACTIONS(154), + [anon_sym_i64] = ACTIONS(154), + [anon_sym_u128] = ACTIONS(154), + [anon_sym_i128] = ACTIONS(154), + [anon_sym_isize] = ACTIONS(154), + [anon_sym_usize] = ACTIONS(154), + [anon_sym_f32] = ACTIONS(154), + [anon_sym_f64] = ACTIONS(154), + [anon_sym_bool] = ACTIONS(154), + [anon_sym_str] = ACTIONS(154), + [anon_sym_char] = ACTIONS(154), + [anon_sym_DASH] = ACTIONS(151), + [anon_sym_BANG] = ACTIONS(151), + [anon_sym_AMP] = ACTIONS(157), + [anon_sym_PIPE] = ACTIONS(160), + [anon_sym_LT] = ACTIONS(163), + [anon_sym_DOT_DOT] = ACTIONS(166), + [anon_sym_COLON_COLON] = ACTIONS(169), + [anon_sym_POUND] = ACTIONS(172), + [anon_sym_SQUOTE] = ACTIONS(175), + [anon_sym_async] = ACTIONS(178), + [anon_sym_break] = ACTIONS(181), + [anon_sym_const] = ACTIONS(184), + [anon_sym_continue] = ACTIONS(187), + [anon_sym_default] = ACTIONS(190), + [anon_sym_enum] = ACTIONS(193), + [anon_sym_fn] = ACTIONS(196), + [anon_sym_for] = ACTIONS(199), + [anon_sym_if] = ACTIONS(202), + [anon_sym_impl] = ACTIONS(205), + [anon_sym_let] = ACTIONS(208), + [anon_sym_loop] = ACTIONS(211), + [anon_sym_match] = ACTIONS(214), + [anon_sym_mod] = ACTIONS(217), + [anon_sym_pub] = ACTIONS(220), + [anon_sym_return] = ACTIONS(223), + [anon_sym_static] = ACTIONS(226), + [anon_sym_struct] = ACTIONS(229), + [anon_sym_trait] = ACTIONS(232), + [anon_sym_type] = ACTIONS(235), + [anon_sym_union] = ACTIONS(238), + [anon_sym_unsafe] = ACTIONS(241), + [anon_sym_use] = ACTIONS(244), + [anon_sym_while] = ACTIONS(247), + [anon_sym_extern] = ACTIONS(250), + [anon_sym_yield] = ACTIONS(253), + [anon_sym_move] = ACTIONS(256), + [anon_sym_try] = ACTIONS(259), + [sym_integer_literal] = ACTIONS(262), + [aux_sym_string_literal_token1] = ACTIONS(265), + [sym_char_literal] = ACTIONS(262), + [anon_sym_true] = ACTIONS(268), + [anon_sym_false] = ACTIONS(268), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(271), + [sym_super] = ACTIONS(274), + [sym_crate] = ACTIONS(277), + [sym_metavariable] = ACTIONS(280), + [sym__raw_string_literal_start] = ACTIONS(283), + [sym_float_literal] = ACTIONS(262), }, [14] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1815), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1802), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(14), [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(17), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(15), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(143), + [anon_sym_RBRACE] = ACTIONS(294), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -15923,88 +15944,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [15] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1714), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1805), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(15), [sym_block_comment] = STATE(15), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(145), + [anon_sym_RBRACE] = ACTIONS(296), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16075,88 +16096,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [16] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1744), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1810), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(16), [sym_block_comment] = STATE(16), - [aux_sym_source_file_repeat1] = STATE(28), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(17), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(147), + [anon_sym_RBRACE] = ACTIONS(298), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16227,88 +16248,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [17] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1834), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1816), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(17), [sym_block_comment] = STATE(17), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(149), + [anon_sym_RBRACE] = ACTIONS(300), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16379,88 +16400,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [18] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1646), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1819), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(18), [sym_block_comment] = STATE(18), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(19), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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_RBRACE] = ACTIONS(302), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16531,88 +16552,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [19] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1820), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(19), [sym_block_comment] = STATE(19), - [aux_sym_source_file_repeat1] = STATE(20), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [ts_builtin_sym_end] = ACTIONS(153), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(304), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16683,240 +16704,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [20] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1821), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(20), [sym_block_comment] = STATE(20), - [aux_sym_source_file_repeat1] = STATE(20), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [ts_builtin_sym_end] = ACTIONS(155), - [sym_identifier] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(160), - [anon_sym_macro_rules_BANG] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(172), - [anon_sym_STAR] = ACTIONS(175), - [anon_sym_u8] = ACTIONS(178), - [anon_sym_i8] = ACTIONS(178), - [anon_sym_u16] = ACTIONS(178), - [anon_sym_i16] = ACTIONS(178), - [anon_sym_u32] = ACTIONS(178), - [anon_sym_i32] = ACTIONS(178), - [anon_sym_u64] = ACTIONS(178), - [anon_sym_i64] = ACTIONS(178), - [anon_sym_u128] = ACTIONS(178), - [anon_sym_i128] = ACTIONS(178), - [anon_sym_isize] = ACTIONS(178), - [anon_sym_usize] = ACTIONS(178), - [anon_sym_f32] = ACTIONS(178), - [anon_sym_f64] = ACTIONS(178), - [anon_sym_bool] = ACTIONS(178), - [anon_sym_str] = ACTIONS(178), - [anon_sym_char] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(190), - [anon_sym_COLON_COLON] = ACTIONS(193), - [anon_sym_POUND] = ACTIONS(196), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_async] = ACTIONS(202), - [anon_sym_break] = ACTIONS(205), - [anon_sym_const] = ACTIONS(208), - [anon_sym_continue] = ACTIONS(211), - [anon_sym_default] = ACTIONS(214), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_fn] = ACTIONS(220), - [anon_sym_for] = ACTIONS(223), - [anon_sym_if] = ACTIONS(226), - [anon_sym_impl] = ACTIONS(229), - [anon_sym_let] = ACTIONS(232), - [anon_sym_loop] = ACTIONS(235), - [anon_sym_match] = ACTIONS(238), - [anon_sym_mod] = ACTIONS(241), - [anon_sym_pub] = ACTIONS(244), - [anon_sym_return] = ACTIONS(247), - [anon_sym_static] = ACTIONS(250), - [anon_sym_struct] = ACTIONS(253), - [anon_sym_trait] = ACTIONS(256), - [anon_sym_type] = ACTIONS(259), - [anon_sym_union] = ACTIONS(262), - [anon_sym_unsafe] = ACTIONS(265), - [anon_sym_use] = ACTIONS(268), - [anon_sym_while] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_yield] = ACTIONS(277), - [anon_sym_move] = ACTIONS(280), - [anon_sym_try] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(286), - [aux_sym_string_literal_token1] = ACTIONS(289), - [sym_char_literal] = ACTIONS(286), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(295), - [sym_super] = ACTIONS(298), - [sym_crate] = ACTIONS(301), - [sym_metavariable] = ACTIONS(304), - [sym__raw_string_literal_start] = ACTIONS(307), - [sym_float_literal] = ACTIONS(286), + [aux_sym_source_file_repeat1] = STATE(21), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [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(306), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_impl] = ACTIONS(57), + [anon_sym_let] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_mod] = ACTIONS(65), + [anon_sym_pub] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(75), + [anon_sym_type] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [anon_sym_unsafe] = ACTIONS(81), + [anon_sym_use] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), + [anon_sym_extern] = 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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [21] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1756), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1823), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(21), [sym_block_comment] = STATE(21), - [aux_sym_source_file_repeat1] = STATE(8), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(310), + [anon_sym_RBRACE] = ACTIONS(308), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -16987,88 +17008,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [22] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1644), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1824), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(22), [sym_block_comment] = STATE(22), - [aux_sym_source_file_repeat1] = STATE(18), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(23), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(312), + [anon_sym_RBRACE] = ACTIONS(310), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17139,88 +17160,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [23] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1636), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(23), [sym_block_comment] = STATE(23), - [aux_sym_source_file_repeat1] = STATE(19), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [ts_builtin_sym_end] = ACTIONS(125), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(312), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17291,240 +17312,240 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [24] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1848), - [sym_macro_invocation] = STATE(401), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1826), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(24), [sym_block_comment] = STATE(24), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(157), - [anon_sym_SEMI] = ACTIONS(160), - [anon_sym_macro_rules_BANG] = ACTIONS(163), - [anon_sym_LPAREN] = ACTIONS(166), - [anon_sym_LBRACK] = ACTIONS(169), - [anon_sym_LBRACE] = ACTIONS(172), - [anon_sym_RBRACE] = ACTIONS(155), - [anon_sym_STAR] = ACTIONS(175), - [anon_sym_u8] = ACTIONS(178), - [anon_sym_i8] = ACTIONS(178), - [anon_sym_u16] = ACTIONS(178), - [anon_sym_i16] = ACTIONS(178), - [anon_sym_u32] = ACTIONS(178), - [anon_sym_i32] = ACTIONS(178), - [anon_sym_u64] = ACTIONS(178), - [anon_sym_i64] = ACTIONS(178), - [anon_sym_u128] = ACTIONS(178), - [anon_sym_i128] = ACTIONS(178), - [anon_sym_isize] = ACTIONS(178), - [anon_sym_usize] = ACTIONS(178), - [anon_sym_f32] = ACTIONS(178), - [anon_sym_f64] = ACTIONS(178), - [anon_sym_bool] = ACTIONS(178), - [anon_sym_str] = ACTIONS(178), - [anon_sym_char] = ACTIONS(178), - [anon_sym_DASH] = ACTIONS(175), - [anon_sym_BANG] = ACTIONS(175), - [anon_sym_AMP] = ACTIONS(181), - [anon_sym_PIPE] = ACTIONS(184), - [anon_sym_LT] = ACTIONS(187), - [anon_sym_DOT_DOT] = ACTIONS(190), - [anon_sym_COLON_COLON] = ACTIONS(193), - [anon_sym_POUND] = ACTIONS(196), - [anon_sym_SQUOTE] = ACTIONS(199), - [anon_sym_async] = ACTIONS(202), - [anon_sym_break] = ACTIONS(205), - [anon_sym_const] = ACTIONS(208), - [anon_sym_continue] = ACTIONS(211), - [anon_sym_default] = ACTIONS(214), - [anon_sym_enum] = ACTIONS(217), - [anon_sym_fn] = ACTIONS(220), - [anon_sym_for] = ACTIONS(223), - [anon_sym_if] = ACTIONS(226), - [anon_sym_impl] = ACTIONS(229), - [anon_sym_let] = ACTIONS(232), - [anon_sym_loop] = ACTIONS(235), - [anon_sym_match] = ACTIONS(238), - [anon_sym_mod] = ACTIONS(241), - [anon_sym_pub] = ACTIONS(244), - [anon_sym_return] = ACTIONS(247), - [anon_sym_static] = ACTIONS(250), - [anon_sym_struct] = ACTIONS(253), - [anon_sym_trait] = ACTIONS(256), - [anon_sym_type] = ACTIONS(259), - [anon_sym_union] = ACTIONS(262), - [anon_sym_unsafe] = ACTIONS(265), - [anon_sym_use] = ACTIONS(268), - [anon_sym_while] = ACTIONS(271), - [anon_sym_extern] = ACTIONS(274), - [anon_sym_yield] = ACTIONS(277), - [anon_sym_move] = ACTIONS(280), - [anon_sym_try] = ACTIONS(283), - [sym_integer_literal] = ACTIONS(286), - [aux_sym_string_literal_token1] = ACTIONS(289), - [sym_char_literal] = ACTIONS(286), - [anon_sym_true] = ACTIONS(292), - [anon_sym_false] = ACTIONS(292), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(295), - [sym_super] = ACTIONS(298), - [sym_crate] = ACTIONS(301), - [sym_metavariable] = ACTIONS(304), - [sym__raw_string_literal_start] = ACTIONS(307), - [sym_float_literal] = ACTIONS(286), + [aux_sym_source_file_repeat1] = STATE(25), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [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(314), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(119), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(39), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(43), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_enum] = ACTIONS(49), + [anon_sym_fn] = ACTIONS(51), + [anon_sym_for] = ACTIONS(53), + [anon_sym_if] = ACTIONS(55), + [anon_sym_impl] = ACTIONS(57), + [anon_sym_let] = ACTIONS(59), + [anon_sym_loop] = ACTIONS(61), + [anon_sym_match] = ACTIONS(63), + [anon_sym_mod] = ACTIONS(65), + [anon_sym_pub] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(71), + [anon_sym_struct] = ACTIONS(73), + [anon_sym_trait] = ACTIONS(75), + [anon_sym_type] = ACTIONS(77), + [anon_sym_union] = ACTIONS(79), + [anon_sym_unsafe] = ACTIONS(81), + [anon_sym_use] = ACTIONS(83), + [anon_sym_while] = ACTIONS(85), + [anon_sym_extern] = 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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [25] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1682), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1827), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(25), [sym_block_comment] = STATE(25), - [aux_sym_source_file_repeat1] = STATE(7), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(314), + [anon_sym_RBRACE] = ACTIONS(316), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17595,88 +17616,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [26] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1642), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1828), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(26), [sym_block_comment] = STATE(26), - [aux_sym_source_file_repeat1] = STATE(3), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(27), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(316), + [anon_sym_RBRACE] = ACTIONS(318), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17747,88 +17768,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [27] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1833), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1830), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(27), [sym_block_comment] = STATE(27), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(318), + [anon_sym_RBRACE] = ACTIONS(320), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -17899,88 +17920,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [28] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1711), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1831), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(28), [sym_block_comment] = STATE(28), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(29), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(320), + [anon_sym_RBRACE] = ACTIONS(322), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18051,88 +18072,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [29] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1830), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1832), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(29), [sym_block_comment] = STATE(29), - [aux_sym_source_file_repeat1] = STATE(34), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(322), + [anon_sym_RBRACE] = ACTIONS(324), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18203,88 +18224,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [30] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1686), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1833), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(30), [sym_block_comment] = STATE(30), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(31), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(324), + [anon_sym_RBRACE] = ACTIONS(326), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18355,88 +18376,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [31] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1774), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1834), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(31), [sym_block_comment] = STATE(31), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(326), + [anon_sym_RBRACE] = ACTIONS(328), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18507,88 +18528,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [32] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1773), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1835), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(32), [sym_block_comment] = STATE(32), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(33), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(328), + [anon_sym_RBRACE] = ACTIONS(330), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18659,88 +18680,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [33] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1691), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1836), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(33), [sym_block_comment] = STATE(33), - [aux_sym_source_file_repeat1] = STATE(30), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(13), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [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(330), + [anon_sym_RBRACE] = ACTIONS(332), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18811,88 +18832,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [34] = { - [sym__statement] = STATE(605), - [sym_empty_statement] = STATE(609), - [sym_expression_statement] = STATE(609), - [sym_macro_definition] = STATE(609), - [sym_attribute_item] = STATE(609), - [sym_inner_attribute_item] = STATE(609), - [sym_mod_item] = STATE(609), - [sym_foreign_mod_item] = STATE(609), - [sym_struct_item] = STATE(609), - [sym_union_item] = STATE(609), - [sym_enum_item] = STATE(609), - [sym_extern_crate_declaration] = STATE(609), - [sym_const_item] = STATE(609), - [sym_static_item] = STATE(609), - [sym_type_item] = STATE(609), - [sym_function_item] = STATE(609), - [sym_function_signature_item] = STATE(609), - [sym_function_modifiers] = STATE(3517), - [sym_impl_item] = STATE(609), - [sym_trait_item] = STATE(609), - [sym_associated_type] = STATE(609), - [sym_let_declaration] = STATE(609), - [sym_use_declaration] = STATE(609), - [sym_extern_modifier] = STATE(2142), - [sym_visibility_modifier] = STATE(1931), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1824), - [sym_macro_invocation] = STATE(392), + [sym__statement] = STATE(651), + [sym_empty_statement] = STATE(652), + [sym_expression_statement] = STATE(652), + [sym_macro_definition] = STATE(652), + [sym_attribute_item] = STATE(652), + [sym_inner_attribute_item] = STATE(652), + [sym_mod_item] = STATE(652), + [sym_foreign_mod_item] = STATE(652), + [sym_struct_item] = STATE(652), + [sym_union_item] = STATE(652), + [sym_enum_item] = STATE(652), + [sym_extern_crate_declaration] = STATE(652), + [sym_const_item] = STATE(652), + [sym_static_item] = STATE(652), + [sym_type_item] = STATE(652), + [sym_function_item] = STATE(652), + [sym_function_signature_item] = STATE(652), + [sym_function_modifiers] = STATE(3452), + [sym_impl_item] = STATE(652), + [sym_trait_item] = STATE(652), + [sym_associated_type] = STATE(652), + [sym_let_declaration] = STATE(652), + [sym_use_declaration] = STATE(652), + [sym_extern_modifier] = STATE(2160), + [sym_visibility_modifier] = STATE(1932), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1845), + [sym_macro_invocation] = STATE(395), [sym_scoped_identifier] = STATE(1534), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(384), - [sym_match_expression] = STATE(384), - [sym_while_expression] = STATE(384), - [sym_loop_expression] = STATE(384), - [sym_for_expression] = STATE(384), - [sym_const_block] = STATE(384), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3502), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(384), - [sym_async_block] = STATE(384), - [sym_try_block] = STATE(384), - [sym_block] = STATE(384), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(391), + [sym_match_expression] = STATE(391), + [sym_while_expression] = STATE(391), + [sym_loop_expression] = STATE(391), + [sym_for_expression] = STATE(391), + [sym_const_block] = STATE(391), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3544), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(391), + [sym_async_block] = STATE(391), + [sym_try_block] = STATE(391), + [sym_block] = STATE(391), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(34), [sym_block_comment] = STATE(34), - [aux_sym_source_file_repeat1] = STATE(24), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_source_file_repeat1] = STATE(8), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [ts_builtin_sym_end] = ACTIONS(123), [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(332), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -18963,52 +18984,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [35] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1492), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1483), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(35), [sym_block_comment] = STATE(35), [sym_identifier] = ACTIONS(334), @@ -19109,52 +19130,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [36] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1491), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(35), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1482), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(36), [sym_block_comment] = STATE(36), [sym_identifier] = ACTIONS(334), @@ -19219,7 +19240,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(368), [anon_sym_COMMA] = ACTIONS(368), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(372), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(370), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -19254,65 +19275,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [37] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1494), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1499), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(37), [sym_block_comment] = STATE(37), [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(372), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_RBRACK] = ACTIONS(374), + [anon_sym_RPAREN] = ACTIONS(372), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(372), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_STAR] = ACTIONS(344), + [anon_sym_QMARK] = ACTIONS(372), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19330,42 +19351,42 @@ 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(376), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PERCENT] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(344), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_PERCENT] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(374), [anon_sym_BANG] = ACTIONS(344), [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_AMP_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(374), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_PLUS_EQ] = ACTIONS(374), - [anon_sym_DASH_EQ] = ACTIONS(374), - [anon_sym_STAR_EQ] = ACTIONS(374), - [anon_sym_SLASH_EQ] = ACTIONS(374), - [anon_sym_PERCENT_EQ] = ACTIONS(374), - [anon_sym_CARET_EQ] = ACTIONS(374), - [anon_sym_AMP_EQ] = ACTIONS(374), - [anon_sym_PIPE_EQ] = ACTIONS(374), - [anon_sym_LT_LT_EQ] = ACTIONS(374), - [anon_sym_GT_GT_EQ] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(376), - [anon_sym_EQ_EQ] = ACTIONS(374), - [anon_sym_BANG_EQ] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(374), - [anon_sym_COMMA] = ACTIONS(374), + [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(374), + [anon_sym_PLUS_EQ] = ACTIONS(372), + [anon_sym_DASH_EQ] = ACTIONS(372), + [anon_sym_STAR_EQ] = ACTIONS(372), + [anon_sym_SLASH_EQ] = ACTIONS(372), + [anon_sym_PERCENT_EQ] = ACTIONS(372), + [anon_sym_CARET_EQ] = ACTIONS(372), + [anon_sym_AMP_EQ] = ACTIONS(372), + [anon_sym_PIPE_EQ] = ACTIONS(372), + [anon_sym_LT_LT_EQ] = ACTIONS(372), + [anon_sym_GT_GT_EQ] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_DOT] = ACTIONS(374), + [anon_sym_DOT_DOT] = ACTIONS(382), + [anon_sym_DOT_DOT_DOT] = ACTIONS(372), + [anon_sym_DOT_DOT_EQ] = ACTIONS(372), + [anon_sym_COMMA] = ACTIONS(372), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(376), + [anon_sym_as] = ACTIONS(374), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), @@ -19380,7 +19401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(376), + [anon_sym_else] = ACTIONS(374), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -19399,65 +19420,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [38] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1493), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(38), [sym_block_comment] = STATE(38), [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(378), + [anon_sym_SEMI] = ACTIONS(384), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(378), - [anon_sym_LBRACK] = ACTIONS(378), - [anon_sym_RBRACK] = ACTIONS(378), + [anon_sym_RPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_RBRACK] = ACTIONS(384), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(378), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_QMARK] = ACTIONS(378), + [anon_sym_RBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19475,42 +19496,42 @@ 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(380), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_CARET] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(380), - [anon_sym_AMP_AMP] = ACTIONS(378), - [anon_sym_PIPE_PIPE] = ACTIONS(378), - [anon_sym_LT_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_PLUS_EQ] = ACTIONS(378), - [anon_sym_DASH_EQ] = ACTIONS(378), - [anon_sym_STAR_EQ] = ACTIONS(378), - [anon_sym_SLASH_EQ] = ACTIONS(378), - [anon_sym_PERCENT_EQ] = ACTIONS(378), - [anon_sym_CARET_EQ] = ACTIONS(378), - [anon_sym_AMP_EQ] = ACTIONS(378), - [anon_sym_PIPE_EQ] = ACTIONS(378), - [anon_sym_LT_LT_EQ] = ACTIONS(378), - [anon_sym_GT_GT_EQ] = ACTIONS(378), - [anon_sym_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(378), - [anon_sym_BANG_EQ] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(378), - [anon_sym_LT_EQ] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(378), - [anon_sym_COMMA] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(384), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(380), + [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), @@ -19525,7 +19546,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(380), + [anon_sym_else] = ACTIONS(386), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -19544,65 +19565,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [39] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1494), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1493), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(39), [sym_block_comment] = STATE(39), [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(374), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_RPAREN] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_RBRACK] = ACTIONS(374), + [anon_sym_SEMI] = ACTIONS(384), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_RPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_RBRACK] = ACTIONS(384), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(374), + [anon_sym_RBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19620,42 +19641,42 @@ 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(376), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PERCENT] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_AMP_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(374), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_PLUS_EQ] = ACTIONS(374), - [anon_sym_DASH_EQ] = ACTIONS(374), - [anon_sym_STAR_EQ] = ACTIONS(374), - [anon_sym_SLASH_EQ] = ACTIONS(374), - [anon_sym_PERCENT_EQ] = ACTIONS(374), - [anon_sym_CARET_EQ] = ACTIONS(374), - [anon_sym_AMP_EQ] = ACTIONS(374), - [anon_sym_PIPE_EQ] = ACTIONS(374), - [anon_sym_LT_LT_EQ] = ACTIONS(374), - [anon_sym_GT_GT_EQ] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(376), - [anon_sym_EQ_EQ] = ACTIONS(374), - [anon_sym_BANG_EQ] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(374), - [anon_sym_COMMA] = ACTIONS(374), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COMMA] = ACTIONS(384), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(376), + [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), @@ -19670,7 +19691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(376), + [anon_sym_else] = ACTIONS(386), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -19689,65 +19710,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [40] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1502), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1482), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(40), [sym_block_comment] = STATE(40), [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(382), + [anon_sym_SEMI] = ACTIONS(368), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(382), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(382), + [anon_sym_RPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(368), + [anon_sym_RBRACK] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(344), - [anon_sym_QMARK] = ACTIONS(382), + [anon_sym_RBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_QMARK] = ACTIONS(368), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19765,42 +19786,42 @@ 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(344), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(370), + [anon_sym_PERCENT] = ACTIONS(370), + [anon_sym_CARET] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(382), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(382), - [anon_sym_DASH_EQ] = ACTIONS(382), - [anon_sym_STAR_EQ] = ACTIONS(382), - [anon_sym_SLASH_EQ] = ACTIONS(382), - [anon_sym_PERCENT_EQ] = ACTIONS(382), - [anon_sym_CARET_EQ] = ACTIONS(382), - [anon_sym_AMP_EQ] = ACTIONS(382), - [anon_sym_PIPE_EQ] = ACTIONS(382), - [anon_sym_LT_LT_EQ] = ACTIONS(382), - [anon_sym_GT_GT_EQ] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(382), - [anon_sym_BANG_EQ] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(382), - [anon_sym_COMMA] = ACTIONS(382), + [anon_sym_AMP] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(370), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_PLUS_EQ] = ACTIONS(368), + [anon_sym_DASH_EQ] = ACTIONS(368), + [anon_sym_STAR_EQ] = ACTIONS(368), + [anon_sym_SLASH_EQ] = ACTIONS(368), + [anon_sym_PERCENT_EQ] = ACTIONS(368), + [anon_sym_CARET_EQ] = ACTIONS(368), + [anon_sym_AMP_EQ] = ACTIONS(368), + [anon_sym_PIPE_EQ] = ACTIONS(368), + [anon_sym_LT_LT_EQ] = ACTIONS(368), + [anon_sym_GT_GT_EQ] = ACTIONS(368), + [anon_sym_EQ] = ACTIONS(370), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_GT] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(370), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(368), + [anon_sym_COMMA] = ACTIONS(368), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(384), + [anon_sym_as] = ACTIONS(370), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), @@ -19815,7 +19836,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(384), + [anon_sym_else] = ACTIONS(370), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -19834,65 +19855,65 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [41] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1502), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(35), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(41), [sym_block_comment] = STATE(41), [sym_identifier] = ACTIONS(334), - [anon_sym_SEMI] = ACTIONS(378), - [anon_sym_LPAREN] = ACTIONS(378), - [anon_sym_RPAREN] = ACTIONS(378), - [anon_sym_LBRACK] = ACTIONS(378), - [anon_sym_RBRACK] = ACTIONS(378), + [anon_sym_SEMI] = ACTIONS(388), + [anon_sym_LPAREN] = ACTIONS(388), + [anon_sym_RPAREN] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_RBRACK] = ACTIONS(388), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_RBRACE] = ACTIONS(378), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_QMARK] = ACTIONS(378), + [anon_sym_RBRACE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(390), + [anon_sym_QMARK] = ACTIONS(388), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), [anon_sym_u16] = ACTIONS(23), @@ -19910,42 +19931,42 @@ 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(380), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_CARET] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_PERCENT] = ACTIONS(390), + [anon_sym_CARET] = ACTIONS(390), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(380), - [anon_sym_AMP_AMP] = ACTIONS(378), - [anon_sym_PIPE_PIPE] = ACTIONS(378), - [anon_sym_LT_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_PLUS_EQ] = ACTIONS(378), - [anon_sym_DASH_EQ] = ACTIONS(378), - [anon_sym_STAR_EQ] = ACTIONS(378), - [anon_sym_SLASH_EQ] = ACTIONS(378), - [anon_sym_PERCENT_EQ] = ACTIONS(378), - [anon_sym_CARET_EQ] = ACTIONS(378), - [anon_sym_AMP_EQ] = ACTIONS(378), - [anon_sym_PIPE_EQ] = ACTIONS(378), - [anon_sym_LT_LT_EQ] = ACTIONS(378), - [anon_sym_GT_GT_EQ] = ACTIONS(378), - [anon_sym_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(378), - [anon_sym_BANG_EQ] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(378), - [anon_sym_LT_EQ] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(378), - [anon_sym_COMMA] = ACTIONS(378), + [anon_sym_AMP] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_PLUS_EQ] = ACTIONS(388), + [anon_sym_DASH_EQ] = ACTIONS(388), + [anon_sym_STAR_EQ] = ACTIONS(388), + [anon_sym_SLASH_EQ] = ACTIONS(388), + [anon_sym_PERCENT_EQ] = ACTIONS(388), + [anon_sym_CARET_EQ] = ACTIONS(388), + [anon_sym_AMP_EQ] = ACTIONS(388), + [anon_sym_PIPE_EQ] = ACTIONS(388), + [anon_sym_LT_LT_EQ] = ACTIONS(388), + [anon_sym_GT_GT_EQ] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(390), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(388), + [anon_sym_COMMA] = ACTIONS(388), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(380), + [anon_sym_SQUOTE] = ACTIONS(392), + [anon_sym_as] = ACTIONS(390), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), @@ -19960,7 +19981,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_else] = ACTIONS(380), + [anon_sym_else] = ACTIONS(390), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), @@ -19979,52 +20000,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [42] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1497), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1489), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(42), [sym_block_comment] = STATE(42), [sym_identifier] = ACTIONS(334), @@ -20060,8 +20081,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PERCENT] = ACTIONS(396), [anon_sym_CARET] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(344), - [anon_sym_AMP] = ACTIONS(386), - [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_AMP] = ACTIONS(376), + [anon_sym_PIPE] = ACTIONS(378), [anon_sym_AMP_AMP] = ACTIONS(394), [anon_sym_PIPE_PIPE] = ACTIONS(394), [anon_sym_LT_LT] = ACTIONS(396), @@ -20080,11 +20101,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(394), [anon_sym_BANG_EQ] = ACTIONS(394), [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(380), [anon_sym_GT_EQ] = ACTIONS(394), [anon_sym_LT_EQ] = ACTIONS(394), [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(392), + [anon_sym_DOT_DOT] = ACTIONS(382), [anon_sym_DOT_DOT_DOT] = ACTIONS(394), [anon_sym_DOT_DOT_EQ] = ACTIONS(394), [anon_sym_COMMA] = ACTIONS(394), @@ -20124,52 +20145,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [43] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1799), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1749), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), [sym_line_comment] = STATE(43), [sym_block_comment] = STATE(43), [sym_identifier] = ACTIONS(398), @@ -20265,202 +20286,202 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(442), }, [44] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1740), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1710), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(44), [sym_block_comment] = STATE(44), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(382), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_PIPE] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(382), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(382), - [anon_sym_DASH_EQ] = ACTIONS(382), - [anon_sym_STAR_EQ] = ACTIONS(382), - [anon_sym_SLASH_EQ] = ACTIONS(382), - [anon_sym_PERCENT_EQ] = ACTIONS(382), - [anon_sym_CARET_EQ] = ACTIONS(382), - [anon_sym_AMP_EQ] = ACTIONS(382), - [anon_sym_PIPE_EQ] = ACTIONS(382), - [anon_sym_LT_LT_EQ] = ACTIONS(382), - [anon_sym_GT_GT_EQ] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(382), - [anon_sym_BANG_EQ] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(462), - [anon_sym_DOT_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(408), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(336), + [anon_sym_LBRACK] = ACTIONS(336), + [anon_sym_LBRACE] = ACTIONS(336), + [anon_sym_COLON] = ACTIONS(340), + [anon_sym_PLUS] = ACTIONS(342), + [anon_sym_STAR] = ACTIONS(342), + [anon_sym_QMARK] = ACTIONS(336), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(342), + [anon_sym_SLASH] = ACTIONS(342), + [anon_sym_PERCENT] = ACTIONS(342), + [anon_sym_CARET] = ACTIONS(342), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_AMP] = ACTIONS(342), + [anon_sym_PIPE] = ACTIONS(342), + [anon_sym_AMP_AMP] = ACTIONS(336), + [anon_sym_PIPE_PIPE] = ACTIONS(336), + [anon_sym_LT_LT] = ACTIONS(342), + [anon_sym_GT_GT] = ACTIONS(342), + [anon_sym_PLUS_EQ] = ACTIONS(336), + [anon_sym_DASH_EQ] = ACTIONS(336), + [anon_sym_STAR_EQ] = ACTIONS(336), + [anon_sym_SLASH_EQ] = ACTIONS(336), + [anon_sym_PERCENT_EQ] = ACTIONS(336), + [anon_sym_CARET_EQ] = ACTIONS(336), + [anon_sym_AMP_EQ] = ACTIONS(336), + [anon_sym_PIPE_EQ] = ACTIONS(336), + [anon_sym_LT_LT_EQ] = ACTIONS(336), + [anon_sym_GT_GT_EQ] = ACTIONS(336), + [anon_sym_EQ] = ACTIONS(342), + [anon_sym_EQ_EQ] = ACTIONS(336), + [anon_sym_BANG_EQ] = ACTIONS(336), + [anon_sym_GT] = ACTIONS(342), + [anon_sym_LT] = ACTIONS(342), + [anon_sym_GT_EQ] = ACTIONS(336), + [anon_sym_LT_EQ] = ACTIONS(336), + [anon_sym_DOT] = ACTIONS(342), + [anon_sym_DOT_DOT] = ACTIONS(342), + [anon_sym_DOT_DOT_DOT] = ACTIONS(336), + [anon_sym_DOT_DOT_EQ] = ACTIONS(336), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(384), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_as] = ACTIONS(342), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), + [anon_sym_try] = ACTIONS(366), + [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(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [45] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1648), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), [sym_line_comment] = STATE(45), [sym_block_comment] = STATE(45), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(378), - [anon_sym_LBRACK] = ACTIONS(378), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(378), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_QMARK] = ACTIONS(378), + [anon_sym_EQ_GT] = ACTIONS(394), + [anon_sym_PLUS] = ACTIONS(396), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(394), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -20478,41 +20499,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_CARET] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(396), + [anon_sym_PERCENT] = ACTIONS(396), + [anon_sym_CARET] = ACTIONS(396), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(380), - [anon_sym_AMP_AMP] = ACTIONS(378), - [anon_sym_PIPE_PIPE] = ACTIONS(378), - [anon_sym_LT_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_PLUS_EQ] = ACTIONS(378), - [anon_sym_DASH_EQ] = ACTIONS(378), - [anon_sym_STAR_EQ] = ACTIONS(378), - [anon_sym_SLASH_EQ] = ACTIONS(378), - [anon_sym_PERCENT_EQ] = ACTIONS(378), - [anon_sym_CARET_EQ] = ACTIONS(378), - [anon_sym_AMP_EQ] = ACTIONS(378), - [anon_sym_PIPE_EQ] = ACTIONS(378), - [anon_sym_LT_LT_EQ] = ACTIONS(378), - [anon_sym_GT_GT_EQ] = ACTIONS(378), - [anon_sym_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(378), - [anon_sym_BANG_EQ] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(486), + [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_AMP_AMP] = ACTIONS(394), + [anon_sym_PIPE_PIPE] = ACTIONS(394), + [anon_sym_LT_LT] = ACTIONS(396), + [anon_sym_GT_GT] = ACTIONS(396), + [anon_sym_PLUS_EQ] = ACTIONS(394), + [anon_sym_DASH_EQ] = ACTIONS(394), + [anon_sym_STAR_EQ] = ACTIONS(394), + [anon_sym_SLASH_EQ] = ACTIONS(394), + [anon_sym_PERCENT_EQ] = ACTIONS(394), + [anon_sym_CARET_EQ] = ACTIONS(394), + [anon_sym_AMP_EQ] = ACTIONS(394), + [anon_sym_PIPE_EQ] = ACTIONS(394), + [anon_sym_LT_LT_EQ] = ACTIONS(394), + [anon_sym_GT_GT_EQ] = ACTIONS(394), + [anon_sym_EQ] = ACTIONS(396), + [anon_sym_EQ_EQ] = ACTIONS(394), + [anon_sym_BANG_EQ] = ACTIONS(394), + [anon_sym_GT] = ACTIONS(396), [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(378), - [anon_sym_LT_EQ] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(378), + [anon_sym_GT_EQ] = ACTIONS(394), + [anon_sym_LT_EQ] = ACTIONS(394), + [anon_sym_DOT] = ACTIONS(396), + [anon_sym_DOT_DOT] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(394), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(380), + [anon_sym_as] = ACTIONS(396), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), [anon_sym_const] = ACTIONS(414), @@ -20545,202 +20566,62 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(442), }, [46] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1649), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), [sym_line_comment] = STATE(46), [sym_block_comment] = STATE(46), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(374), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PERCENT] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(376), - [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_AMP_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(374), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_PLUS_EQ] = ACTIONS(374), - [anon_sym_DASH_EQ] = ACTIONS(374), - [anon_sym_STAR_EQ] = ACTIONS(374), - [anon_sym_SLASH_EQ] = ACTIONS(374), - [anon_sym_PERCENT_EQ] = ACTIONS(374), - [anon_sym_CARET_EQ] = ACTIONS(374), - [anon_sym_AMP_EQ] = ACTIONS(374), - [anon_sym_PIPE_EQ] = ACTIONS(374), - [anon_sym_LT_LT_EQ] = ACTIONS(374), - [anon_sym_GT_GT_EQ] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(376), - [anon_sym_EQ_EQ] = ACTIONS(374), - [anon_sym_BANG_EQ] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(374), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(376), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [47] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(47), - [sym_block_comment] = STATE(47), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(378), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(378), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_QMARK] = ACTIONS(378), + [anon_sym_EQ_GT] = ACTIONS(372), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_STAR] = ACTIONS(406), + [anon_sym_QMARK] = ACTIONS(372), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -20758,41 +20639,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_CARET] = ACTIONS(380), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_PERCENT] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(374), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(380), - [anon_sym_AMP_AMP] = ACTIONS(378), - [anon_sym_PIPE_PIPE] = ACTIONS(378), - [anon_sym_LT_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_PLUS_EQ] = ACTIONS(378), - [anon_sym_DASH_EQ] = ACTIONS(378), - [anon_sym_STAR_EQ] = ACTIONS(378), - [anon_sym_SLASH_EQ] = ACTIONS(378), - [anon_sym_PERCENT_EQ] = ACTIONS(378), - [anon_sym_CARET_EQ] = ACTIONS(378), - [anon_sym_AMP_EQ] = ACTIONS(378), - [anon_sym_PIPE_EQ] = ACTIONS(378), - [anon_sym_LT_LT_EQ] = ACTIONS(378), - [anon_sym_GT_GT_EQ] = ACTIONS(378), - [anon_sym_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(378), - [anon_sym_BANG_EQ] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(486), + [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(374), + [anon_sym_PLUS_EQ] = ACTIONS(372), + [anon_sym_DASH_EQ] = ACTIONS(372), + [anon_sym_STAR_EQ] = ACTIONS(372), + [anon_sym_SLASH_EQ] = ACTIONS(372), + [anon_sym_PERCENT_EQ] = ACTIONS(372), + [anon_sym_CARET_EQ] = ACTIONS(372), + [anon_sym_AMP_EQ] = ACTIONS(372), + [anon_sym_PIPE_EQ] = ACTIONS(372), + [anon_sym_LT_LT_EQ] = ACTIONS(372), + [anon_sym_GT_GT_EQ] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(374), [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(378), - [anon_sym_LT_EQ] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(378), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_DOT] = ACTIONS(374), + [anon_sym_DOT_DOT] = ACTIONS(488), + [anon_sym_DOT_DOT_DOT] = ACTIONS(372), + [anon_sym_DOT_DOT_EQ] = ACTIONS(372), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(380), + [anon_sym_as] = ACTIONS(374), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), [anon_sym_const] = ACTIONS(414), @@ -20824,203 +20705,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [48] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1728), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(48), - [sym_block_comment] = STATE(48), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(336), - [anon_sym_LBRACK] = ACTIONS(336), - [anon_sym_LBRACE] = ACTIONS(336), - [anon_sym_COLON] = ACTIONS(340), - [anon_sym_PLUS] = ACTIONS(342), - [anon_sym_STAR] = ACTIONS(342), - [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(342), - [anon_sym_SLASH] = ACTIONS(342), - [anon_sym_PERCENT] = ACTIONS(342), - [anon_sym_CARET] = ACTIONS(342), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(342), - [anon_sym_PIPE] = ACTIONS(342), - [anon_sym_AMP_AMP] = ACTIONS(336), - [anon_sym_PIPE_PIPE] = ACTIONS(336), - [anon_sym_LT_LT] = ACTIONS(342), - [anon_sym_GT_GT] = ACTIONS(342), - [anon_sym_PLUS_EQ] = ACTIONS(336), - [anon_sym_DASH_EQ] = ACTIONS(336), - [anon_sym_STAR_EQ] = ACTIONS(336), - [anon_sym_SLASH_EQ] = ACTIONS(336), - [anon_sym_PERCENT_EQ] = ACTIONS(336), - [anon_sym_CARET_EQ] = ACTIONS(336), - [anon_sym_AMP_EQ] = ACTIONS(336), - [anon_sym_PIPE_EQ] = ACTIONS(336), - [anon_sym_LT_LT_EQ] = ACTIONS(336), - [anon_sym_GT_GT_EQ] = ACTIONS(336), - [anon_sym_EQ] = ACTIONS(342), - [anon_sym_EQ_EQ] = ACTIONS(336), - [anon_sym_BANG_EQ] = ACTIONS(336), - [anon_sym_GT] = ACTIONS(342), - [anon_sym_LT] = ACTIONS(342), - [anon_sym_GT_EQ] = ACTIONS(336), - [anon_sym_LT_EQ] = ACTIONS(336), - [anon_sym_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT] = ACTIONS(342), - [anon_sym_DOT_DOT_DOT] = ACTIONS(336), - [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(342), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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), + [47] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1646), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(43), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(47), + [sym_block_comment] = STATE(47), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(390), + [anon_sym_QMARK] = ACTIONS(388), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_PERCENT] = ACTIONS(390), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_PLUS_EQ] = ACTIONS(388), + [anon_sym_DASH_EQ] = ACTIONS(388), + [anon_sym_STAR_EQ] = ACTIONS(388), + [anon_sym_SLASH_EQ] = ACTIONS(388), + [anon_sym_PERCENT_EQ] = ACTIONS(388), + [anon_sym_CARET_EQ] = ACTIONS(388), + [anon_sym_AMP_EQ] = ACTIONS(388), + [anon_sym_PIPE_EQ] = ACTIONS(388), + [anon_sym_LT_LT_EQ] = ACTIONS(388), + [anon_sym_GT_GT_EQ] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(390), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(490), + [anon_sym_as] = ACTIONS(390), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [49] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1727), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(49), - [sym_block_comment] = STATE(49), + [48] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1645), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(48), + [sym_block_comment] = STATE(48), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(374), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(384), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(374), + [anon_sym_EQ_GT] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -21038,41 +20919,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PERCENT] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(376), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_AMP_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(374), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_PLUS_EQ] = ACTIONS(374), - [anon_sym_DASH_EQ] = ACTIONS(374), - [anon_sym_STAR_EQ] = ACTIONS(374), - [anon_sym_SLASH_EQ] = ACTIONS(374), - [anon_sym_PERCENT_EQ] = ACTIONS(374), - [anon_sym_CARET_EQ] = ACTIONS(374), - [anon_sym_AMP_EQ] = ACTIONS(374), - [anon_sym_PIPE_EQ] = ACTIONS(374), - [anon_sym_LT_LT_EQ] = ACTIONS(374), - [anon_sym_GT_GT_EQ] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(376), - [anon_sym_EQ_EQ] = ACTIONS(374), - [anon_sym_BANG_EQ] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(374), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(376), + [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), [anon_sym_const] = ACTIONS(414), @@ -21104,57 +20985,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [50] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1732), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(43), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(50), - [sym_block_comment] = STATE(50), + [49] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(49), + [sym_block_comment] = STATE(49), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_LPAREN] = ACTIONS(482), [anon_sym_LBRACK] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(400), [anon_sym_EQ_GT] = ACTIONS(368), @@ -21211,7 +21092,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_DOT] = ACTIONS(368), [anon_sym_DOT_DOT_EQ] = ACTIONS(368), [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(490), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(370), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), @@ -21244,63 +21125,203 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, + [50] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1645), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(50), + [sym_block_comment] = STATE(50), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_EQ_GT] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(406), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(386), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, [51] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1743), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), [sym_line_comment] = STATE(51), [sym_block_comment] = STATE(51), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_EQ_GT] = ACTIONS(394), - [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(406), - [anon_sym_QMARK] = ACTIONS(394), + [anon_sym_EQ_GT] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_QMARK] = ACTIONS(368), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -21318,41 +21339,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_SLASH] = ACTIONS(396), - [anon_sym_PERCENT] = ACTIONS(396), - [anon_sym_CARET] = ACTIONS(396), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(370), + [anon_sym_PERCENT] = ACTIONS(370), + [anon_sym_CARET] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(406), - [anon_sym_AMP] = ACTIONS(460), - [anon_sym_PIPE] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(394), - [anon_sym_PIPE_PIPE] = ACTIONS(394), - [anon_sym_LT_LT] = ACTIONS(396), - [anon_sym_GT_GT] = ACTIONS(396), - [anon_sym_PLUS_EQ] = ACTIONS(394), - [anon_sym_DASH_EQ] = ACTIONS(394), - [anon_sym_STAR_EQ] = ACTIONS(394), - [anon_sym_SLASH_EQ] = ACTIONS(394), - [anon_sym_PERCENT_EQ] = ACTIONS(394), - [anon_sym_CARET_EQ] = ACTIONS(394), - [anon_sym_AMP_EQ] = ACTIONS(394), - [anon_sym_PIPE_EQ] = ACTIONS(394), - [anon_sym_LT_LT_EQ] = ACTIONS(394), - [anon_sym_GT_GT_EQ] = ACTIONS(394), - [anon_sym_EQ] = ACTIONS(396), - [anon_sym_EQ_EQ] = ACTIONS(394), - [anon_sym_BANG_EQ] = ACTIONS(394), - [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(394), - [anon_sym_LT_EQ] = ACTIONS(394), - [anon_sym_DOT] = ACTIONS(396), - [anon_sym_DOT_DOT] = ACTIONS(462), - [anon_sym_DOT_DOT_DOT] = ACTIONS(394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(394), + [anon_sym_AMP] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(370), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_PLUS_EQ] = ACTIONS(368), + [anon_sym_DASH_EQ] = ACTIONS(368), + [anon_sym_STAR_EQ] = ACTIONS(368), + [anon_sym_SLASH_EQ] = ACTIONS(368), + [anon_sym_PERCENT_EQ] = ACTIONS(368), + [anon_sym_CARET_EQ] = ACTIONS(368), + [anon_sym_AMP_EQ] = ACTIONS(368), + [anon_sym_PIPE_EQ] = ACTIONS(368), + [anon_sym_LT_LT_EQ] = ACTIONS(368), + [anon_sym_GT_GT_EQ] = ACTIONS(368), + [anon_sym_EQ] = ACTIONS(370), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_GT] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(370), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(368), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(396), + [anon_sym_as] = ACTIONS(370), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), [anon_sym_const] = ACTIONS(414), @@ -21385,55 +21406,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(442), }, [52] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1608), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1625), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(52), [sym_block_comment] = STATE(52), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(336), [anon_sym_LBRACK] = ACTIONS(336), [anon_sym_LBRACE] = ACTIONS(336), @@ -21441,23 +21462,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS] = ACTIONS(342), [anon_sym_STAR] = ACTIONS(342), [anon_sym_QMARK] = ACTIONS(336), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), [anon_sym_DASH] = ACTIONS(342), [anon_sym_SLASH] = ACTIONS(342), [anon_sym_PERCENT] = ACTIONS(342), @@ -21490,21 +21511,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(342), [anon_sym_DOT_DOT_DOT] = ACTIONS(336), [anon_sym_DOT_DOT_EQ] = ACTIONS(336), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(342), [anon_sym_as] = ACTIONS(342), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -21517,93 +21538,93 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [53] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1786), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1575), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(53), [sym_block_comment] = STATE(53), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(468), + [anon_sym_STAR] = ACTIONS(492), [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(468), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(492), [anon_sym_SLASH] = ACTIONS(396), [anon_sym_PERCENT] = ACTIONS(396), [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(468), + [anon_sym_BANG] = ACTIONS(492), [anon_sym_AMP] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(378), [anon_sym_AMP_AMP] = ACTIONS(394), [anon_sym_PIPE_PIPE] = ACTIONS(394), [anon_sym_LT_LT] = ACTIONS(396), @@ -21622,32 +21643,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(394), [anon_sym_BANG_EQ] = ACTIONS(394), [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(380), [anon_sym_GT_EQ] = ACTIONS(394), [anon_sym_LT_EQ] = ACTIONS(394), [anon_sym_DOT] = ACTIONS(396), [anon_sym_DOT_DOT] = ACTIONS(508), [anon_sym_DOT_DOT_DOT] = ACTIONS(394), [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(396), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -21656,137 +21677,137 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [54] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1679), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1815), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(54), [sym_block_comment] = STATE(54), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(468), - [anon_sym_QMARK] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(506), - [anon_sym_PIPE] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(382), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(382), - [anon_sym_DASH_EQ] = ACTIONS(382), - [anon_sym_STAR_EQ] = ACTIONS(382), - [anon_sym_SLASH_EQ] = ACTIONS(382), - [anon_sym_PERCENT_EQ] = ACTIONS(382), - [anon_sym_CARET_EQ] = ACTIONS(382), - [anon_sym_AMP_EQ] = ACTIONS(382), - [anon_sym_PIPE_EQ] = ACTIONS(382), - [anon_sym_LT_LT_EQ] = ACTIONS(382), - [anon_sym_GT_GT_EQ] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(382), - [anon_sym_BANG_EQ] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(508), - [anon_sym_DOT_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_STAR] = ACTIONS(460), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_PERCENT] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_AMP] = ACTIONS(510), + [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(374), + [anon_sym_PLUS_EQ] = ACTIONS(372), + [anon_sym_DASH_EQ] = ACTIONS(372), + [anon_sym_STAR_EQ] = ACTIONS(372), + [anon_sym_SLASH_EQ] = ACTIONS(372), + [anon_sym_PERCENT_EQ] = ACTIONS(372), + [anon_sym_CARET_EQ] = ACTIONS(372), + [anon_sym_AMP_EQ] = ACTIONS(372), + [anon_sym_PIPE_EQ] = ACTIONS(372), + [anon_sym_LT_LT_EQ] = ACTIONS(372), + [anon_sym_GT_GT_EQ] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(374), + [anon_sym_LT] = ACTIONS(380), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_DOT] = ACTIONS(374), + [anon_sym_DOT_DOT] = ACTIONS(512), + [anon_sym_DOT_DOT_DOT] = ACTIONS(372), + [anon_sym_DOT_DOT_EQ] = ACTIONS(372), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(384), + [anon_sym_as] = ACTIONS(374), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -21795,91 +21816,91 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [55] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1610), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(52), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(55), [sym_block_comment] = STATE(55), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(368), [anon_sym_LBRACK] = ACTIONS(368), [anon_sym_LBRACE] = ACTIONS(368), [anon_sym_PLUS] = ACTIONS(370), [anon_sym_STAR] = ACTIONS(370), [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), [anon_sym_DASH] = ACTIONS(370), [anon_sym_SLASH] = ACTIONS(370), [anon_sym_PERCENT] = ACTIONS(370), [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(460), [anon_sym_AMP] = ACTIONS(370), [anon_sym_PIPE] = ACTIONS(370), [anon_sym_AMP_AMP] = ACTIONS(368), @@ -21907,25 +21928,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(370), [anon_sym_DOT_DOT_DOT] = ACTIONS(368), [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(370), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -21934,133 +21955,133 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [56] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1613), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(56), [sym_block_comment] = STATE(56), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_PLUS] = ACTIONS(384), - [anon_sym_STAR] = ACTIONS(492), - [anon_sym_QMARK] = ACTIONS(382), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_SLASH] = ACTIONS(384), - [anon_sym_PERCENT] = ACTIONS(384), - [anon_sym_CARET] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_QMARK] = ACTIONS(368), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(370), + [anon_sym_PERCENT] = ACTIONS(370), + [anon_sym_CARET] = ACTIONS(370), [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(388), - [anon_sym_AMP_AMP] = ACTIONS(382), - [anon_sym_PIPE_PIPE] = ACTIONS(382), - [anon_sym_LT_LT] = ACTIONS(384), - [anon_sym_GT_GT] = ACTIONS(384), - [anon_sym_PLUS_EQ] = ACTIONS(382), - [anon_sym_DASH_EQ] = ACTIONS(382), - [anon_sym_STAR_EQ] = ACTIONS(382), - [anon_sym_SLASH_EQ] = ACTIONS(382), - [anon_sym_PERCENT_EQ] = ACTIONS(382), - [anon_sym_CARET_EQ] = ACTIONS(382), - [anon_sym_AMP_EQ] = ACTIONS(382), - [anon_sym_PIPE_EQ] = ACTIONS(382), - [anon_sym_LT_LT_EQ] = ACTIONS(382), - [anon_sym_GT_GT_EQ] = ACTIONS(382), - [anon_sym_EQ] = ACTIONS(384), - [anon_sym_EQ_EQ] = ACTIONS(382), - [anon_sym_BANG_EQ] = ACTIONS(382), - [anon_sym_GT] = ACTIONS(384), - [anon_sym_LT] = ACTIONS(390), - [anon_sym_GT_EQ] = ACTIONS(382), - [anon_sym_LT_EQ] = ACTIONS(382), - [anon_sym_DOT] = ACTIONS(384), - [anon_sym_DOT_DOT] = ACTIONS(512), - [anon_sym_DOT_DOT_DOT] = ACTIONS(382), - [anon_sym_DOT_DOT_EQ] = ACTIONS(382), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(384), + [anon_sym_AMP] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(370), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_PLUS_EQ] = ACTIONS(368), + [anon_sym_DASH_EQ] = ACTIONS(368), + [anon_sym_STAR_EQ] = ACTIONS(368), + [anon_sym_SLASH_EQ] = ACTIONS(368), + [anon_sym_PERCENT_EQ] = ACTIONS(368), + [anon_sym_CARET_EQ] = ACTIONS(368), + [anon_sym_AMP_EQ] = ACTIONS(368), + [anon_sym_PIPE_EQ] = ACTIONS(368), + [anon_sym_LT_LT_EQ] = ACTIONS(368), + [anon_sym_GT_GT_EQ] = ACTIONS(368), + [anon_sym_EQ] = ACTIONS(370), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_GT] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(370), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(368), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_as] = ACTIONS(370), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -22073,137 +22094,137 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [57] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(57), [sym_block_comment] = STATE(57), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(374), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PERCENT] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(376), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_AMP_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(374), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_PLUS_EQ] = ACTIONS(374), - [anon_sym_DASH_EQ] = ACTIONS(374), - [anon_sym_STAR_EQ] = ACTIONS(374), - [anon_sym_SLASH_EQ] = ACTIONS(374), - [anon_sym_PERCENT_EQ] = ACTIONS(374), - [anon_sym_CARET_EQ] = ACTIONS(374), - [anon_sym_AMP_EQ] = ACTIONS(374), - [anon_sym_PIPE_EQ] = ACTIONS(374), - [anon_sym_LT_LT_EQ] = ACTIONS(374), - [anon_sym_GT_GT_EQ] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(376), - [anon_sym_EQ_EQ] = ACTIONS(374), - [anon_sym_BANG_EQ] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(374), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(376), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(386), + [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22212,137 +22233,137 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [58] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1737), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(58), [sym_block_comment] = STATE(58), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(374), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PERCENT] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(376), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_AMP_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(374), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_PLUS_EQ] = ACTIONS(374), - [anon_sym_DASH_EQ] = ACTIONS(374), - [anon_sym_STAR_EQ] = ACTIONS(374), - [anon_sym_SLASH_EQ] = ACTIONS(374), - [anon_sym_PERCENT_EQ] = ACTIONS(374), - [anon_sym_CARET_EQ] = ACTIONS(374), - [anon_sym_AMP_EQ] = ACTIONS(374), - [anon_sym_PIPE_EQ] = ACTIONS(374), - [anon_sym_LT_LT_EQ] = ACTIONS(374), - [anon_sym_GT_GT_EQ] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(376), - [anon_sym_EQ_EQ] = ACTIONS(374), - [anon_sym_BANG_EQ] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(374), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(376), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(368), + [anon_sym_LBRACK] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_QMARK] = ACTIONS(368), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(370), + [anon_sym_PERCENT] = ACTIONS(370), + [anon_sym_CARET] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(370), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_PLUS_EQ] = ACTIONS(368), + [anon_sym_DASH_EQ] = ACTIONS(368), + [anon_sym_STAR_EQ] = ACTIONS(368), + [anon_sym_SLASH_EQ] = ACTIONS(368), + [anon_sym_PERCENT_EQ] = ACTIONS(368), + [anon_sym_CARET_EQ] = ACTIONS(368), + [anon_sym_AMP_EQ] = ACTIONS(368), + [anon_sym_PIPE_EQ] = ACTIONS(368), + [anon_sym_LT_LT_EQ] = ACTIONS(368), + [anon_sym_GT_GT_EQ] = ACTIONS(368), + [anon_sym_EQ] = ACTIONS(370), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_GT] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(370), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(368), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(370), + [anon_sym_as] = ACTIONS(370), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22351,137 +22372,137 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [59] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1577), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(59), [sym_block_comment] = STATE(59), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(378), - [anon_sym_LBRACK] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_CARET] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(380), - [anon_sym_AMP_AMP] = ACTIONS(378), - [anon_sym_PIPE_PIPE] = ACTIONS(378), - [anon_sym_LT_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_PLUS_EQ] = ACTIONS(378), - [anon_sym_DASH_EQ] = ACTIONS(378), - [anon_sym_STAR_EQ] = ACTIONS(378), - [anon_sym_SLASH_EQ] = ACTIONS(378), - [anon_sym_PERCENT_EQ] = ACTIONS(378), - [anon_sym_CARET_EQ] = ACTIONS(378), - [anon_sym_AMP_EQ] = ACTIONS(378), - [anon_sym_PIPE_EQ] = ACTIONS(378), - [anon_sym_LT_LT_EQ] = ACTIONS(378), - [anon_sym_GT_GT_EQ] = ACTIONS(378), - [anon_sym_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(378), - [anon_sym_BANG_EQ] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_PLUS] = ACTIONS(374), + [anon_sym_STAR] = ACTIONS(492), + [anon_sym_QMARK] = ACTIONS(372), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_SLASH] = ACTIONS(374), + [anon_sym_PERCENT] = ACTIONS(374), + [anon_sym_CARET] = ACTIONS(374), + [anon_sym_BANG] = ACTIONS(492), + [anon_sym_AMP] = ACTIONS(506), + [anon_sym_PIPE] = ACTIONS(378), + [anon_sym_AMP_AMP] = ACTIONS(372), + [anon_sym_PIPE_PIPE] = ACTIONS(372), + [anon_sym_LT_LT] = ACTIONS(374), + [anon_sym_GT_GT] = ACTIONS(374), + [anon_sym_PLUS_EQ] = ACTIONS(372), + [anon_sym_DASH_EQ] = ACTIONS(372), + [anon_sym_STAR_EQ] = ACTIONS(372), + [anon_sym_SLASH_EQ] = ACTIONS(372), + [anon_sym_PERCENT_EQ] = ACTIONS(372), + [anon_sym_CARET_EQ] = ACTIONS(372), + [anon_sym_AMP_EQ] = ACTIONS(372), + [anon_sym_PIPE_EQ] = ACTIONS(372), + [anon_sym_LT_LT_EQ] = ACTIONS(372), + [anon_sym_GT_GT_EQ] = ACTIONS(372), + [anon_sym_EQ] = ACTIONS(374), + [anon_sym_EQ_EQ] = ACTIONS(372), + [anon_sym_BANG_EQ] = ACTIONS(372), + [anon_sym_GT] = ACTIONS(374), [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(378), - [anon_sym_LT_EQ] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(378), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_GT_EQ] = ACTIONS(372), + [anon_sym_LT_EQ] = ACTIONS(372), + [anon_sym_DOT] = ACTIONS(374), + [anon_sym_DOT_DOT] = ACTIONS(508), + [anon_sym_DOT_DOT_DOT] = ACTIONS(372), + [anon_sym_DOT_DOT_EQ] = ACTIONS(372), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(380), + [anon_sym_as] = ACTIONS(374), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22490,137 +22511,137 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [60] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1609), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(60), [sym_block_comment] = STATE(60), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(374), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(374), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PERCENT] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(376), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_AMP_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(374), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_PLUS_EQ] = ACTIONS(374), - [anon_sym_DASH_EQ] = ACTIONS(374), - [anon_sym_STAR_EQ] = ACTIONS(374), - [anon_sym_SLASH_EQ] = ACTIONS(374), - [anon_sym_PERCENT_EQ] = ACTIONS(374), - [anon_sym_CARET_EQ] = ACTIONS(374), - [anon_sym_AMP_EQ] = ACTIONS(374), - [anon_sym_PIPE_EQ] = ACTIONS(374), - [anon_sym_LT_LT_EQ] = ACTIONS(374), - [anon_sym_GT_GT_EQ] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(376), - [anon_sym_EQ_EQ] = ACTIONS(374), - [anon_sym_BANG_EQ] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(374), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(376), - [anon_sym_as] = ACTIONS(376), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22629,137 +22650,137 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [61] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(61), [sym_block_comment] = STATE(61), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_CARET] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(380), - [anon_sym_AMP_AMP] = ACTIONS(378), - [anon_sym_PIPE_PIPE] = ACTIONS(378), - [anon_sym_LT_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_PLUS_EQ] = ACTIONS(378), - [anon_sym_DASH_EQ] = ACTIONS(378), - [anon_sym_STAR_EQ] = ACTIONS(378), - [anon_sym_SLASH_EQ] = ACTIONS(378), - [anon_sym_PERCENT_EQ] = ACTIONS(378), - [anon_sym_CARET_EQ] = ACTIONS(378), - [anon_sym_AMP_EQ] = ACTIONS(378), - [anon_sym_PIPE_EQ] = ACTIONS(378), - [anon_sym_LT_LT_EQ] = ACTIONS(378), - [anon_sym_GT_GT_EQ] = ACTIONS(378), - [anon_sym_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(378), - [anon_sym_BANG_EQ] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(378), - [anon_sym_LT_EQ] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(378), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_LBRACK] = ACTIONS(368), + [anon_sym_LBRACE] = ACTIONS(368), + [anon_sym_PLUS] = ACTIONS(370), + [anon_sym_STAR] = ACTIONS(370), + [anon_sym_QMARK] = ACTIONS(368), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(370), + [anon_sym_SLASH] = ACTIONS(370), + [anon_sym_PERCENT] = ACTIONS(370), + [anon_sym_CARET] = ACTIONS(370), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_AMP] = ACTIONS(370), + [anon_sym_PIPE] = ACTIONS(370), + [anon_sym_AMP_AMP] = ACTIONS(368), + [anon_sym_PIPE_PIPE] = ACTIONS(368), + [anon_sym_LT_LT] = ACTIONS(370), + [anon_sym_GT_GT] = ACTIONS(370), + [anon_sym_PLUS_EQ] = ACTIONS(368), + [anon_sym_DASH_EQ] = ACTIONS(368), + [anon_sym_STAR_EQ] = ACTIONS(368), + [anon_sym_SLASH_EQ] = ACTIONS(368), + [anon_sym_PERCENT_EQ] = ACTIONS(368), + [anon_sym_CARET_EQ] = ACTIONS(368), + [anon_sym_AMP_EQ] = ACTIONS(368), + [anon_sym_PIPE_EQ] = ACTIONS(368), + [anon_sym_LT_LT_EQ] = ACTIONS(368), + [anon_sym_GT_GT_EQ] = ACTIONS(368), + [anon_sym_EQ] = ACTIONS(370), + [anon_sym_EQ_EQ] = ACTIONS(368), + [anon_sym_BANG_EQ] = ACTIONS(368), + [anon_sym_GT] = ACTIONS(370), + [anon_sym_LT] = ACTIONS(370), + [anon_sym_GT_EQ] = ACTIONS(368), + [anon_sym_LT_EQ] = ACTIONS(368), + [anon_sym_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT] = ACTIONS(370), + [anon_sym_DOT_DOT_DOT] = ACTIONS(368), + [anon_sym_DOT_DOT_EQ] = ACTIONS(368), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_as] = ACTIONS(380), + [anon_sym_as] = ACTIONS(370), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22768,137 +22789,137 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [62] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1587), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1811), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(62), [sym_block_comment] = STATE(62), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(378), - [anon_sym_LBRACK] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_CARET] = ACTIONS(380), - [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(380), - [anon_sym_AMP_AMP] = ACTIONS(378), - [anon_sym_PIPE_PIPE] = ACTIONS(378), - [anon_sym_LT_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_PLUS_EQ] = ACTIONS(378), - [anon_sym_DASH_EQ] = ACTIONS(378), - [anon_sym_STAR_EQ] = ACTIONS(378), - [anon_sym_SLASH_EQ] = ACTIONS(378), - [anon_sym_PERCENT_EQ] = ACTIONS(378), - [anon_sym_CARET_EQ] = ACTIONS(378), - [anon_sym_AMP_EQ] = ACTIONS(378), - [anon_sym_PIPE_EQ] = ACTIONS(378), - [anon_sym_LT_LT_EQ] = ACTIONS(378), - [anon_sym_GT_GT_EQ] = ACTIONS(378), - [anon_sym_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(378), - [anon_sym_BANG_EQ] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(378), - [anon_sym_LT_EQ] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(378), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(380), - [anon_sym_as] = ACTIONS(380), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -22907,133 +22928,133 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [63] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1587), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1627), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(63), [sym_block_comment] = STATE(63), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(378), - [anon_sym_LBRACE] = ACTIONS(378), - [anon_sym_PLUS] = ACTIONS(380), - [anon_sym_STAR] = ACTIONS(380), - [anon_sym_QMARK] = ACTIONS(378), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(380), - [anon_sym_SLASH] = ACTIONS(380), - [anon_sym_PERCENT] = ACTIONS(380), - [anon_sym_CARET] = ACTIONS(380), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(384), + [anon_sym_LBRACK] = ACTIONS(384), + [anon_sym_LBRACE] = ACTIONS(384), + [anon_sym_PLUS] = ACTIONS(386), + [anon_sym_STAR] = ACTIONS(386), + [anon_sym_QMARK] = ACTIONS(384), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(386), + [anon_sym_SLASH] = ACTIONS(386), + [anon_sym_PERCENT] = ACTIONS(386), + [anon_sym_CARET] = ACTIONS(386), [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(380), - [anon_sym_PIPE] = ACTIONS(380), - [anon_sym_AMP_AMP] = ACTIONS(378), - [anon_sym_PIPE_PIPE] = ACTIONS(378), - [anon_sym_LT_LT] = ACTIONS(380), - [anon_sym_GT_GT] = ACTIONS(380), - [anon_sym_PLUS_EQ] = ACTIONS(378), - [anon_sym_DASH_EQ] = ACTIONS(378), - [anon_sym_STAR_EQ] = ACTIONS(378), - [anon_sym_SLASH_EQ] = ACTIONS(378), - [anon_sym_PERCENT_EQ] = ACTIONS(378), - [anon_sym_CARET_EQ] = ACTIONS(378), - [anon_sym_AMP_EQ] = ACTIONS(378), - [anon_sym_PIPE_EQ] = ACTIONS(378), - [anon_sym_LT_LT_EQ] = ACTIONS(378), - [anon_sym_GT_GT_EQ] = ACTIONS(378), - [anon_sym_EQ] = ACTIONS(380), - [anon_sym_EQ_EQ] = ACTIONS(378), - [anon_sym_BANG_EQ] = ACTIONS(378), - [anon_sym_GT] = ACTIONS(380), - [anon_sym_LT] = ACTIONS(380), - [anon_sym_GT_EQ] = ACTIONS(378), - [anon_sym_LT_EQ] = ACTIONS(378), - [anon_sym_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT] = ACTIONS(380), - [anon_sym_DOT_DOT_DOT] = ACTIONS(378), - [anon_sym_DOT_DOT_EQ] = ACTIONS(378), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(380), - [anon_sym_as] = ACTIONS(380), + [anon_sym_AMP] = ACTIONS(386), + [anon_sym_PIPE] = ACTIONS(386), + [anon_sym_AMP_AMP] = ACTIONS(384), + [anon_sym_PIPE_PIPE] = ACTIONS(384), + [anon_sym_LT_LT] = ACTIONS(386), + [anon_sym_GT_GT] = ACTIONS(386), + [anon_sym_PLUS_EQ] = ACTIONS(384), + [anon_sym_DASH_EQ] = ACTIONS(384), + [anon_sym_STAR_EQ] = ACTIONS(384), + [anon_sym_SLASH_EQ] = ACTIONS(384), + [anon_sym_PERCENT_EQ] = ACTIONS(384), + [anon_sym_CARET_EQ] = ACTIONS(384), + [anon_sym_AMP_EQ] = ACTIONS(384), + [anon_sym_PIPE_EQ] = ACTIONS(384), + [anon_sym_LT_LT_EQ] = ACTIONS(384), + [anon_sym_GT_GT_EQ] = ACTIONS(384), + [anon_sym_EQ] = ACTIONS(386), + [anon_sym_EQ_EQ] = ACTIONS(384), + [anon_sym_BANG_EQ] = ACTIONS(384), + [anon_sym_GT] = ACTIONS(386), + [anon_sym_LT] = ACTIONS(386), + [anon_sym_GT_EQ] = ACTIONS(384), + [anon_sym_LT_EQ] = ACTIONS(384), + [anon_sym_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT] = ACTIONS(386), + [anon_sym_DOT_DOT_DOT] = ACTIONS(384), + [anon_sym_DOT_DOT_EQ] = ACTIONS(384), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(386), + [anon_sym_as] = ACTIONS(386), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -23046,133 +23067,133 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [64] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1609), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1601), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(52), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(64), [sym_block_comment] = STATE(64), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(374), - [anon_sym_LBRACE] = ACTIONS(374), - [anon_sym_PLUS] = ACTIONS(376), - [anon_sym_STAR] = ACTIONS(376), - [anon_sym_QMARK] = ACTIONS(374), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(376), - [anon_sym_SLASH] = ACTIONS(376), - [anon_sym_PERCENT] = ACTIONS(376), - [anon_sym_CARET] = ACTIONS(376), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(390), + [anon_sym_QMARK] = ACTIONS(388), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_PERCENT] = ACTIONS(390), + [anon_sym_CARET] = ACTIONS(390), [anon_sym_BANG] = ACTIONS(492), - [anon_sym_AMP] = ACTIONS(376), - [anon_sym_PIPE] = ACTIONS(376), - [anon_sym_AMP_AMP] = ACTIONS(374), - [anon_sym_PIPE_PIPE] = ACTIONS(374), - [anon_sym_LT_LT] = ACTIONS(376), - [anon_sym_GT_GT] = ACTIONS(376), - [anon_sym_PLUS_EQ] = ACTIONS(374), - [anon_sym_DASH_EQ] = ACTIONS(374), - [anon_sym_STAR_EQ] = ACTIONS(374), - [anon_sym_SLASH_EQ] = ACTIONS(374), - [anon_sym_PERCENT_EQ] = ACTIONS(374), - [anon_sym_CARET_EQ] = ACTIONS(374), - [anon_sym_AMP_EQ] = ACTIONS(374), - [anon_sym_PIPE_EQ] = ACTIONS(374), - [anon_sym_LT_LT_EQ] = ACTIONS(374), - [anon_sym_GT_GT_EQ] = ACTIONS(374), - [anon_sym_EQ] = ACTIONS(376), - [anon_sym_EQ_EQ] = ACTIONS(374), - [anon_sym_BANG_EQ] = ACTIONS(374), - [anon_sym_GT] = ACTIONS(376), - [anon_sym_LT] = ACTIONS(376), - [anon_sym_GT_EQ] = ACTIONS(374), - [anon_sym_LT_EQ] = ACTIONS(374), - [anon_sym_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT] = ACTIONS(376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(374), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(376), - [anon_sym_as] = ACTIONS(376), + [anon_sym_AMP] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_PLUS_EQ] = ACTIONS(388), + [anon_sym_DASH_EQ] = ACTIONS(388), + [anon_sym_STAR_EQ] = ACTIONS(388), + [anon_sym_SLASH_EQ] = ACTIONS(388), + [anon_sym_PERCENT_EQ] = ACTIONS(388), + [anon_sym_CARET_EQ] = ACTIONS(388), + [anon_sym_AMP_EQ] = ACTIONS(388), + [anon_sym_PIPE_EQ] = ACTIONS(388), + [anon_sym_LT_LT_EQ] = ACTIONS(388), + [anon_sym_GT_GT_EQ] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(390), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(390), + [anon_sym_as] = ACTIONS(390), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -23185,137 +23206,137 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [65] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1683), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(48), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1812), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(44), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(65), [sym_block_comment] = STATE(65), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(368), - [anon_sym_LBRACK] = ACTIONS(368), - [anon_sym_LBRACE] = ACTIONS(368), - [anon_sym_PLUS] = ACTIONS(370), - [anon_sym_STAR] = ACTIONS(370), - [anon_sym_QMARK] = ACTIONS(368), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(370), - [anon_sym_SLASH] = ACTIONS(370), - [anon_sym_PERCENT] = ACTIONS(370), - [anon_sym_CARET] = ACTIONS(370), - [anon_sym_BANG] = ACTIONS(468), - [anon_sym_AMP] = ACTIONS(370), - [anon_sym_PIPE] = ACTIONS(370), - [anon_sym_AMP_AMP] = ACTIONS(368), - [anon_sym_PIPE_PIPE] = ACTIONS(368), - [anon_sym_LT_LT] = ACTIONS(370), - [anon_sym_GT_GT] = ACTIONS(370), - [anon_sym_PLUS_EQ] = ACTIONS(368), - [anon_sym_DASH_EQ] = ACTIONS(368), - [anon_sym_STAR_EQ] = ACTIONS(368), - [anon_sym_SLASH_EQ] = ACTIONS(368), - [anon_sym_PERCENT_EQ] = ACTIONS(368), - [anon_sym_CARET_EQ] = ACTIONS(368), - [anon_sym_AMP_EQ] = ACTIONS(368), - [anon_sym_PIPE_EQ] = ACTIONS(368), - [anon_sym_LT_LT_EQ] = ACTIONS(368), - [anon_sym_GT_GT_EQ] = ACTIONS(368), - [anon_sym_EQ] = ACTIONS(370), - [anon_sym_EQ_EQ] = ACTIONS(368), - [anon_sym_BANG_EQ] = ACTIONS(368), - [anon_sym_GT] = ACTIONS(370), - [anon_sym_LT] = ACTIONS(370), - [anon_sym_GT_EQ] = ACTIONS(368), - [anon_sym_LT_EQ] = ACTIONS(368), - [anon_sym_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT] = ACTIONS(370), - [anon_sym_DOT_DOT_DOT] = ACTIONS(368), - [anon_sym_DOT_DOT_EQ] = ACTIONS(368), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(372), - [anon_sym_as] = ACTIONS(370), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(388), + [anon_sym_LBRACK] = ACTIONS(388), + [anon_sym_LBRACE] = ACTIONS(388), + [anon_sym_PLUS] = ACTIONS(390), + [anon_sym_STAR] = ACTIONS(390), + [anon_sym_QMARK] = ACTIONS(388), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(390), + [anon_sym_SLASH] = ACTIONS(390), + [anon_sym_PERCENT] = ACTIONS(390), + [anon_sym_CARET] = ACTIONS(390), + [anon_sym_BANG] = ACTIONS(460), + [anon_sym_AMP] = ACTIONS(390), + [anon_sym_PIPE] = ACTIONS(390), + [anon_sym_AMP_AMP] = ACTIONS(388), + [anon_sym_PIPE_PIPE] = ACTIONS(388), + [anon_sym_LT_LT] = ACTIONS(390), + [anon_sym_GT_GT] = ACTIONS(390), + [anon_sym_PLUS_EQ] = ACTIONS(388), + [anon_sym_DASH_EQ] = ACTIONS(388), + [anon_sym_STAR_EQ] = ACTIONS(388), + [anon_sym_SLASH_EQ] = ACTIONS(388), + [anon_sym_PERCENT_EQ] = ACTIONS(388), + [anon_sym_CARET_EQ] = ACTIONS(388), + [anon_sym_AMP_EQ] = ACTIONS(388), + [anon_sym_PIPE_EQ] = ACTIONS(388), + [anon_sym_LT_LT_EQ] = ACTIONS(388), + [anon_sym_GT_GT_EQ] = ACTIONS(388), + [anon_sym_EQ] = ACTIONS(390), + [anon_sym_EQ_EQ] = ACTIONS(388), + [anon_sym_BANG_EQ] = ACTIONS(388), + [anon_sym_GT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(390), + [anon_sym_GT_EQ] = ACTIONS(388), + [anon_sym_LT_EQ] = ACTIONS(388), + [anon_sym_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT] = ACTIONS(390), + [anon_sym_DOT_DOT_DOT] = ACTIONS(388), + [anon_sym_DOT_DOT_EQ] = ACTIONS(388), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(392), + [anon_sym_as] = ACTIONS(390), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -23324,93 +23345,93 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [66] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1614), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1814), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(66), [sym_block_comment] = STATE(66), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_PLUS] = ACTIONS(396), - [anon_sym_STAR] = ACTIONS(492), + [anon_sym_STAR] = ACTIONS(460), [anon_sym_QMARK] = ACTIONS(394), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(492), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(460), [anon_sym_SLASH] = ACTIONS(396), [anon_sym_PERCENT] = ACTIONS(396), [anon_sym_CARET] = ACTIONS(396), - [anon_sym_BANG] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(460), [anon_sym_AMP] = ACTIONS(510), - [anon_sym_PIPE] = ACTIONS(388), + [anon_sym_PIPE] = ACTIONS(378), [anon_sym_AMP_AMP] = ACTIONS(394), [anon_sym_PIPE_PIPE] = ACTIONS(394), [anon_sym_LT_LT] = ACTIONS(396), @@ -23429,32 +23450,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_EQ] = ACTIONS(394), [anon_sym_BANG_EQ] = ACTIONS(394), [anon_sym_GT] = ACTIONS(396), - [anon_sym_LT] = ACTIONS(390), + [anon_sym_LT] = ACTIONS(380), [anon_sym_GT_EQ] = ACTIONS(394), [anon_sym_LT_EQ] = ACTIONS(394), [anon_sym_DOT] = ACTIONS(396), [anon_sym_DOT_DOT] = ACTIONS(512), [anon_sym_DOT_DOT_DOT] = ACTIONS(394), [anon_sym_DOT_DOT_EQ] = ACTIONS(394), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_as] = ACTIONS(396), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -23463,26 +23484,26 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [67] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(67), [sym_block_comment] = STATE(67), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(134), + [aux_sym__non_special_token_repeat1] = STATE(135), [sym_identifier] = ACTIONS(514), [anon_sym_SEMI] = ACTIONS(517), [anon_sym_LPAREN] = ACTIONS(520), @@ -23596,30 +23617,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(537), }, [68] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(68), [sym_block_comment] = STATE(68), - [aux_sym_token_tree_repeat1] = STATE(68), + [aux_sym_token_tree_pattern_repeat1] = STATE(72), [aux_sym__non_special_token_repeat1] = STATE(135), [sym_identifier] = ACTIONS(552), - [anon_sym_SEMI] = ACTIONS(555), - [anon_sym_LPAREN] = ACTIONS(558), - [anon_sym_RPAREN] = ACTIONS(561), - [anon_sym_LBRACK] = ACTIONS(563), - [anon_sym_RBRACK] = ACTIONS(561), - [anon_sym_LBRACE] = ACTIONS(566), - [anon_sym_RBRACE] = ACTIONS(561), - [anon_sym_EQ_GT] = ACTIONS(555), - [anon_sym_COLON] = ACTIONS(569), - [anon_sym_DOLLAR] = ACTIONS(572), - [anon_sym_PLUS] = ACTIONS(569), - [anon_sym_STAR] = ACTIONS(569), - [anon_sym_QMARK] = ACTIONS(555), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), [anon_sym_u8] = ACTIONS(552), [anon_sym_i8] = ACTIONS(552), [anon_sym_u16] = ACTIONS(552), @@ -23637,44 +23658,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(552), [anon_sym_str] = ACTIONS(552), [anon_sym_char] = ACTIONS(552), - [anon_sym_DASH] = ACTIONS(569), - [anon_sym_SLASH] = ACTIONS(569), - [anon_sym_PERCENT] = ACTIONS(569), - [anon_sym_CARET] = ACTIONS(569), - [anon_sym_BANG] = ACTIONS(569), - [anon_sym_AMP] = ACTIONS(569), - [anon_sym_PIPE] = ACTIONS(569), - [anon_sym_AMP_AMP] = ACTIONS(555), - [anon_sym_PIPE_PIPE] = ACTIONS(555), - [anon_sym_LT_LT] = ACTIONS(569), - [anon_sym_GT_GT] = ACTIONS(569), - [anon_sym_PLUS_EQ] = ACTIONS(555), - [anon_sym_DASH_EQ] = ACTIONS(555), - [anon_sym_STAR_EQ] = ACTIONS(555), - [anon_sym_SLASH_EQ] = ACTIONS(555), - [anon_sym_PERCENT_EQ] = ACTIONS(555), - [anon_sym_CARET_EQ] = ACTIONS(555), - [anon_sym_AMP_EQ] = ACTIONS(555), - [anon_sym_PIPE_EQ] = ACTIONS(555), - [anon_sym_LT_LT_EQ] = ACTIONS(555), - [anon_sym_GT_GT_EQ] = ACTIONS(555), - [anon_sym_EQ] = ACTIONS(569), - [anon_sym_EQ_EQ] = ACTIONS(555), - [anon_sym_BANG_EQ] = ACTIONS(555), - [anon_sym_GT] = ACTIONS(569), - [anon_sym_LT] = ACTIONS(569), - [anon_sym_GT_EQ] = ACTIONS(555), - [anon_sym_LT_EQ] = ACTIONS(555), - [anon_sym_AT] = ACTIONS(555), - [anon_sym__] = ACTIONS(569), - [anon_sym_DOT] = ACTIONS(569), - [anon_sym_DOT_DOT] = ACTIONS(569), - [anon_sym_DOT_DOT_DOT] = ACTIONS(555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(555), - [anon_sym_COMMA] = ACTIONS(555), - [anon_sym_COLON_COLON] = ACTIONS(555), - [anon_sym_DASH_GT] = ACTIONS(555), - [anon_sym_POUND] = ACTIONS(555), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), [anon_sym_SQUOTE] = ACTIONS(552), [anon_sym_as] = ACTIONS(552), [anon_sym_async] = ACTIONS(552), @@ -23704,1888 +23725,1889 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(552), [anon_sym_while] = ACTIONS(552), [sym_mutable_specifier] = ACTIONS(552), - [sym_integer_literal] = ACTIONS(575), - [aux_sym_string_literal_token1] = ACTIONS(578), - [sym_char_literal] = ACTIONS(575), - [anon_sym_true] = ACTIONS(581), - [anon_sym_false] = ACTIONS(581), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(552), [sym_super] = ACTIONS(552), [sym_crate] = ACTIONS(552), - [sym_metavariable] = ACTIONS(584), - [sym__raw_string_literal_start] = ACTIONS(587), - [sym_float_literal] = ACTIONS(575), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [69] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(69), [sym_block_comment] = STATE(69), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(600), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [aux_sym_token_tree_pattern_repeat1] = STATE(73), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_RBRACK] = ACTIONS(558), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [70] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(70), [sym_block_comment] = STATE(70), - [aux_sym_token_tree_pattern_repeat1] = STATE(74), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(616), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [aux_sym_token_tree_pattern_repeat1] = STATE(77), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(578), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [71] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(71), [sym_block_comment] = STATE(71), [aux_sym_token_tree_pattern_repeat1] = STATE(78), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(616), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_RBRACK] = ACTIONS(578), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [72] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(72), [sym_block_comment] = STATE(72), - [aux_sym_token_tree_pattern_repeat1] = STATE(82), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(616), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(580), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [73] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(73), [sym_block_comment] = STATE(73), - [aux_sym_token_tree_pattern_repeat1] = STATE(79), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(618), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_RBRACK] = ACTIONS(580), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [74] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(74), [sym_block_comment] = STATE(74), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(620), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(580), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [75] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(75), [sym_block_comment] = STATE(75), - [aux_sym_token_tree_pattern_repeat1] = STATE(69), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(622), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [aux_sym_token_tree_pattern_repeat1] = STATE(79), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(578), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [76] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(76), [sym_block_comment] = STATE(76), - [aux_sym_token_tree_pattern_repeat1] = STATE(83), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(622), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [aux_sym_token_tree_pattern_repeat1] = STATE(74), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(558), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [77] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(77), [sym_block_comment] = STATE(77), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(624), - [anon_sym_SEMI] = ACTIONS(627), - [anon_sym_LPAREN] = ACTIONS(630), - [anon_sym_RPAREN] = ACTIONS(633), - [anon_sym_LBRACK] = ACTIONS(635), - [anon_sym_RBRACK] = ACTIONS(633), - [anon_sym_LBRACE] = ACTIONS(638), - [anon_sym_RBRACE] = ACTIONS(633), - [anon_sym_EQ_GT] = ACTIONS(627), - [anon_sym_COLON] = ACTIONS(641), - [anon_sym_DOLLAR] = ACTIONS(644), - [anon_sym_PLUS] = ACTIONS(641), - [anon_sym_STAR] = ACTIONS(641), - [anon_sym_QMARK] = ACTIONS(627), - [anon_sym_u8] = ACTIONS(624), - [anon_sym_i8] = ACTIONS(624), - [anon_sym_u16] = ACTIONS(624), - [anon_sym_i16] = ACTIONS(624), - [anon_sym_u32] = ACTIONS(624), - [anon_sym_i32] = ACTIONS(624), - [anon_sym_u64] = ACTIONS(624), - [anon_sym_i64] = ACTIONS(624), - [anon_sym_u128] = ACTIONS(624), - [anon_sym_i128] = ACTIONS(624), - [anon_sym_isize] = ACTIONS(624), - [anon_sym_usize] = ACTIONS(624), - [anon_sym_f32] = ACTIONS(624), - [anon_sym_f64] = ACTIONS(624), - [anon_sym_bool] = ACTIONS(624), - [anon_sym_str] = ACTIONS(624), - [anon_sym_char] = ACTIONS(624), - [anon_sym_DASH] = ACTIONS(641), - [anon_sym_SLASH] = ACTIONS(641), - [anon_sym_PERCENT] = ACTIONS(641), - [anon_sym_CARET] = ACTIONS(641), - [anon_sym_BANG] = ACTIONS(641), - [anon_sym_AMP] = ACTIONS(641), - [anon_sym_PIPE] = ACTIONS(641), - [anon_sym_AMP_AMP] = ACTIONS(627), - [anon_sym_PIPE_PIPE] = ACTIONS(627), - [anon_sym_LT_LT] = ACTIONS(641), - [anon_sym_GT_GT] = ACTIONS(641), - [anon_sym_PLUS_EQ] = ACTIONS(627), - [anon_sym_DASH_EQ] = ACTIONS(627), - [anon_sym_STAR_EQ] = ACTIONS(627), - [anon_sym_SLASH_EQ] = ACTIONS(627), - [anon_sym_PERCENT_EQ] = ACTIONS(627), - [anon_sym_CARET_EQ] = ACTIONS(627), - [anon_sym_AMP_EQ] = ACTIONS(627), - [anon_sym_PIPE_EQ] = ACTIONS(627), - [anon_sym_LT_LT_EQ] = ACTIONS(627), - [anon_sym_GT_GT_EQ] = ACTIONS(627), - [anon_sym_EQ] = ACTIONS(641), - [anon_sym_EQ_EQ] = ACTIONS(627), - [anon_sym_BANG_EQ] = ACTIONS(627), - [anon_sym_GT] = ACTIONS(641), - [anon_sym_LT] = ACTIONS(641), - [anon_sym_GT_EQ] = ACTIONS(627), - [anon_sym_LT_EQ] = ACTIONS(627), - [anon_sym_AT] = ACTIONS(627), - [anon_sym__] = ACTIONS(641), - [anon_sym_DOT] = ACTIONS(641), - [anon_sym_DOT_DOT] = ACTIONS(641), - [anon_sym_DOT_DOT_DOT] = ACTIONS(627), - [anon_sym_DOT_DOT_EQ] = ACTIONS(627), - [anon_sym_COMMA] = ACTIONS(627), - [anon_sym_COLON_COLON] = ACTIONS(627), - [anon_sym_DASH_GT] = ACTIONS(627), - [anon_sym_POUND] = ACTIONS(627), - [anon_sym_SQUOTE] = ACTIONS(624), - [anon_sym_as] = ACTIONS(624), - [anon_sym_async] = ACTIONS(624), - [anon_sym_await] = ACTIONS(624), - [anon_sym_break] = ACTIONS(624), - [anon_sym_const] = ACTIONS(624), - [anon_sym_continue] = ACTIONS(624), - [anon_sym_default] = ACTIONS(624), - [anon_sym_enum] = ACTIONS(624), - [anon_sym_fn] = ACTIONS(624), - [anon_sym_for] = ACTIONS(624), - [anon_sym_if] = ACTIONS(624), - [anon_sym_impl] = ACTIONS(624), - [anon_sym_let] = ACTIONS(624), - [anon_sym_loop] = ACTIONS(624), - [anon_sym_match] = ACTIONS(624), - [anon_sym_mod] = ACTIONS(624), - [anon_sym_pub] = ACTIONS(624), - [anon_sym_return] = ACTIONS(624), - [anon_sym_static] = ACTIONS(624), - [anon_sym_struct] = ACTIONS(624), - [anon_sym_trait] = ACTIONS(624), - [anon_sym_type] = ACTIONS(624), - [anon_sym_union] = ACTIONS(624), - [anon_sym_unsafe] = ACTIONS(624), - [anon_sym_use] = ACTIONS(624), - [anon_sym_where] = ACTIONS(624), - [anon_sym_while] = ACTIONS(624), - [sym_mutable_specifier] = ACTIONS(624), - [sym_integer_literal] = ACTIONS(647), - [aux_sym_string_literal_token1] = ACTIONS(650), - [sym_char_literal] = ACTIONS(647), - [anon_sym_true] = ACTIONS(653), - [anon_sym_false] = ACTIONS(653), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(624), - [sym_super] = ACTIONS(624), - [sym_crate] = ACTIONS(624), - [sym__raw_string_literal_start] = ACTIONS(656), - [sym_float_literal] = ACTIONS(647), - }, - [78] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(78), - [sym_block_comment] = STATE(78), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(620), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), - }, - [79] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(79), - [sym_block_comment] = STATE(79), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(659), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), - }, - [80] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(80), - [sym_block_comment] = STATE(80), - [aux_sym_token_tree_pattern_repeat1] = STATE(81), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(622), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), - }, - [81] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(81), - [sym_block_comment] = STATE(81), [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_RPAREN] = ACTIONS(600), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [78] = { + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(78), + [sym_block_comment] = STATE(78), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_RBRACK] = ACTIONS(582), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [79] = { + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(79), + [sym_block_comment] = STATE(79), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_RBRACE] = ACTIONS(582), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [80] = { + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(80), + [sym_block_comment] = STATE(80), + [aux_sym_token_tree_pattern_repeat1] = STATE(67), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(584), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [81] = { + [sym__token_pattern] = STATE(149), + [sym_token_tree_pattern] = STATE(166), + [sym_token_binding_pattern] = STATE(166), + [sym_token_repetition_pattern] = STATE(166), + [sym__literal] = STATE(166), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(81), + [sym_block_comment] = STATE(81), + [aux_sym_token_tree_pattern_repeat1] = STATE(80), + [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_identifier] = ACTIONS(552), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(556), + [anon_sym_RPAREN] = ACTIONS(586), + [anon_sym_LBRACK] = ACTIONS(560), + [anon_sym_LBRACE] = ACTIONS(562), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(566), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(552), + [anon_sym_i8] = ACTIONS(552), + [anon_sym_u16] = ACTIONS(552), + [anon_sym_i16] = ACTIONS(552), + [anon_sym_u32] = ACTIONS(552), + [anon_sym_i32] = ACTIONS(552), + [anon_sym_u64] = ACTIONS(552), + [anon_sym_i64] = ACTIONS(552), + [anon_sym_u128] = ACTIONS(552), + [anon_sym_i128] = ACTIONS(552), + [anon_sym_isize] = ACTIONS(552), + [anon_sym_usize] = ACTIONS(552), + [anon_sym_f32] = ACTIONS(552), + [anon_sym_f64] = ACTIONS(552), + [anon_sym_bool] = ACTIONS(552), + [anon_sym_str] = ACTIONS(552), + [anon_sym_char] = ACTIONS(552), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(552), + [anon_sym_as] = ACTIONS(552), + [anon_sym_async] = ACTIONS(552), + [anon_sym_await] = ACTIONS(552), + [anon_sym_break] = ACTIONS(552), + [anon_sym_const] = ACTIONS(552), + [anon_sym_continue] = ACTIONS(552), + [anon_sym_default] = ACTIONS(552), + [anon_sym_enum] = ACTIONS(552), + [anon_sym_fn] = ACTIONS(552), + [anon_sym_for] = ACTIONS(552), + [anon_sym_if] = ACTIONS(552), + [anon_sym_impl] = ACTIONS(552), + [anon_sym_let] = ACTIONS(552), + [anon_sym_loop] = ACTIONS(552), + [anon_sym_match] = ACTIONS(552), + [anon_sym_mod] = ACTIONS(552), + [anon_sym_pub] = ACTIONS(552), + [anon_sym_return] = ACTIONS(552), + [anon_sym_static] = ACTIONS(552), + [anon_sym_struct] = ACTIONS(552), + [anon_sym_trait] = ACTIONS(552), + [anon_sym_type] = ACTIONS(552), + [anon_sym_union] = ACTIONS(552), + [anon_sym_unsafe] = ACTIONS(552), + [anon_sym_use] = ACTIONS(552), + [anon_sym_where] = ACTIONS(552), + [anon_sym_while] = ACTIONS(552), + [sym_mutable_specifier] = ACTIONS(552), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(552), + [sym_super] = ACTIONS(552), + [sym_crate] = ACTIONS(552), + [sym_metavariable] = ACTIONS(574), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [82] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(82), [sym_block_comment] = STATE(82), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(588), + [anon_sym_SEMI] = ACTIONS(591), [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_RBRACE] = ACTIONS(620), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [anon_sym_RPAREN] = ACTIONS(597), + [anon_sym_LBRACK] = ACTIONS(599), + [anon_sym_RBRACK] = ACTIONS(597), + [anon_sym_LBRACE] = ACTIONS(602), + [anon_sym_RBRACE] = ACTIONS(597), + [anon_sym_EQ_GT] = ACTIONS(591), + [anon_sym_COLON] = ACTIONS(605), + [anon_sym_DOLLAR] = ACTIONS(608), + [anon_sym_PLUS] = ACTIONS(605), + [anon_sym_STAR] = ACTIONS(605), + [anon_sym_QMARK] = ACTIONS(591), + [anon_sym_u8] = ACTIONS(588), + [anon_sym_i8] = ACTIONS(588), + [anon_sym_u16] = ACTIONS(588), + [anon_sym_i16] = ACTIONS(588), + [anon_sym_u32] = ACTIONS(588), + [anon_sym_i32] = ACTIONS(588), + [anon_sym_u64] = ACTIONS(588), + [anon_sym_i64] = ACTIONS(588), + [anon_sym_u128] = ACTIONS(588), + [anon_sym_i128] = ACTIONS(588), + [anon_sym_isize] = ACTIONS(588), + [anon_sym_usize] = ACTIONS(588), + [anon_sym_f32] = ACTIONS(588), + [anon_sym_f64] = ACTIONS(588), + [anon_sym_bool] = ACTIONS(588), + [anon_sym_str] = ACTIONS(588), + [anon_sym_char] = ACTIONS(588), + [anon_sym_DASH] = ACTIONS(605), + [anon_sym_SLASH] = ACTIONS(605), + [anon_sym_PERCENT] = ACTIONS(605), + [anon_sym_CARET] = ACTIONS(605), + [anon_sym_BANG] = ACTIONS(605), + [anon_sym_AMP] = ACTIONS(605), + [anon_sym_PIPE] = ACTIONS(605), + [anon_sym_AMP_AMP] = ACTIONS(591), + [anon_sym_PIPE_PIPE] = ACTIONS(591), + [anon_sym_LT_LT] = ACTIONS(605), + [anon_sym_GT_GT] = ACTIONS(605), + [anon_sym_PLUS_EQ] = ACTIONS(591), + [anon_sym_DASH_EQ] = ACTIONS(591), + [anon_sym_STAR_EQ] = ACTIONS(591), + [anon_sym_SLASH_EQ] = ACTIONS(591), + [anon_sym_PERCENT_EQ] = ACTIONS(591), + [anon_sym_CARET_EQ] = ACTIONS(591), + [anon_sym_AMP_EQ] = ACTIONS(591), + [anon_sym_PIPE_EQ] = ACTIONS(591), + [anon_sym_LT_LT_EQ] = ACTIONS(591), + [anon_sym_GT_GT_EQ] = ACTIONS(591), + [anon_sym_EQ] = ACTIONS(605), + [anon_sym_EQ_EQ] = ACTIONS(591), + [anon_sym_BANG_EQ] = ACTIONS(591), + [anon_sym_GT] = ACTIONS(605), + [anon_sym_LT] = ACTIONS(605), + [anon_sym_GT_EQ] = ACTIONS(591), + [anon_sym_LT_EQ] = ACTIONS(591), + [anon_sym_AT] = ACTIONS(591), + [anon_sym__] = ACTIONS(605), + [anon_sym_DOT] = ACTIONS(605), + [anon_sym_DOT_DOT] = ACTIONS(605), + [anon_sym_DOT_DOT_DOT] = ACTIONS(591), + [anon_sym_DOT_DOT_EQ] = ACTIONS(591), + [anon_sym_COMMA] = ACTIONS(591), + [anon_sym_COLON_COLON] = ACTIONS(591), + [anon_sym_DASH_GT] = ACTIONS(591), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_SQUOTE] = ACTIONS(588), + [anon_sym_as] = ACTIONS(588), + [anon_sym_async] = ACTIONS(588), + [anon_sym_await] = ACTIONS(588), + [anon_sym_break] = ACTIONS(588), + [anon_sym_const] = ACTIONS(588), + [anon_sym_continue] = ACTIONS(588), + [anon_sym_default] = ACTIONS(588), + [anon_sym_enum] = ACTIONS(588), + [anon_sym_fn] = ACTIONS(588), + [anon_sym_for] = ACTIONS(588), + [anon_sym_if] = ACTIONS(588), + [anon_sym_impl] = ACTIONS(588), + [anon_sym_let] = ACTIONS(588), + [anon_sym_loop] = ACTIONS(588), + [anon_sym_match] = ACTIONS(588), + [anon_sym_mod] = ACTIONS(588), + [anon_sym_pub] = ACTIONS(588), + [anon_sym_return] = ACTIONS(588), + [anon_sym_static] = ACTIONS(588), + [anon_sym_struct] = ACTIONS(588), + [anon_sym_trait] = ACTIONS(588), + [anon_sym_type] = ACTIONS(588), + [anon_sym_union] = ACTIONS(588), + [anon_sym_unsafe] = ACTIONS(588), + [anon_sym_use] = ACTIONS(588), + [anon_sym_where] = ACTIONS(588), + [anon_sym_while] = ACTIONS(588), + [sym_mutable_specifier] = ACTIONS(588), + [sym_integer_literal] = ACTIONS(611), + [aux_sym_string_literal_token1] = ACTIONS(614), + [sym_char_literal] = ACTIONS(611), + [anon_sym_true] = ACTIONS(617), + [anon_sym_false] = ACTIONS(617), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(588), + [sym_super] = ACTIONS(588), + [sym_crate] = ACTIONS(588), + [sym_metavariable] = ACTIONS(620), + [sym__raw_string_literal_start] = ACTIONS(623), + [sym_float_literal] = ACTIONS(611), }, [83] = { - [sym__token_pattern] = STATE(153), - [sym_token_tree_pattern] = STATE(143), - [sym_token_binding_pattern] = STATE(143), - [sym_token_repetition_pattern] = STATE(143), - [sym__literal] = STATE(143), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), [sym_line_comment] = STATE(83), [sym_block_comment] = STATE(83), - [aux_sym_token_tree_pattern_repeat1] = STATE(67), - [aux_sym__non_special_token_repeat1] = STATE(134), - [sym_identifier] = ACTIONS(590), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(594), - [anon_sym_LBRACK] = ACTIONS(596), - [anon_sym_RBRACK] = ACTIONS(600), - [anon_sym_LBRACE] = ACTIONS(598), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(604), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(590), - [anon_sym_i8] = ACTIONS(590), - [anon_sym_u16] = ACTIONS(590), - [anon_sym_i16] = ACTIONS(590), - [anon_sym_u32] = ACTIONS(590), - [anon_sym_i32] = ACTIONS(590), - [anon_sym_u64] = ACTIONS(590), - [anon_sym_i64] = ACTIONS(590), - [anon_sym_u128] = ACTIONS(590), - [anon_sym_i128] = ACTIONS(590), - [anon_sym_isize] = ACTIONS(590), - [anon_sym_usize] = ACTIONS(590), - [anon_sym_f32] = ACTIONS(590), - [anon_sym_f64] = ACTIONS(590), - [anon_sym_bool] = ACTIONS(590), - [anon_sym_str] = ACTIONS(590), - [anon_sym_char] = ACTIONS(590), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(590), - [anon_sym_as] = ACTIONS(590), - [anon_sym_async] = ACTIONS(590), - [anon_sym_await] = ACTIONS(590), - [anon_sym_break] = ACTIONS(590), - [anon_sym_const] = ACTIONS(590), - [anon_sym_continue] = ACTIONS(590), - [anon_sym_default] = ACTIONS(590), - [anon_sym_enum] = ACTIONS(590), - [anon_sym_fn] = ACTIONS(590), - [anon_sym_for] = ACTIONS(590), - [anon_sym_if] = ACTIONS(590), - [anon_sym_impl] = ACTIONS(590), - [anon_sym_let] = ACTIONS(590), - [anon_sym_loop] = ACTIONS(590), - [anon_sym_match] = ACTIONS(590), - [anon_sym_mod] = ACTIONS(590), - [anon_sym_pub] = ACTIONS(590), - [anon_sym_return] = ACTIONS(590), - [anon_sym_static] = ACTIONS(590), - [anon_sym_struct] = ACTIONS(590), - [anon_sym_trait] = ACTIONS(590), - [anon_sym_type] = ACTIONS(590), - [anon_sym_union] = ACTIONS(590), - [anon_sym_unsafe] = ACTIONS(590), - [anon_sym_use] = ACTIONS(590), - [anon_sym_where] = ACTIONS(590), - [anon_sym_while] = ACTIONS(590), - [sym_mutable_specifier] = ACTIONS(590), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(590), - [sym_super] = ACTIONS(590), - [sym_crate] = ACTIONS(590), - [sym_metavariable] = ACTIONS(612), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(626), + [anon_sym_SEMI] = ACTIONS(629), + [anon_sym_LPAREN] = ACTIONS(632), + [anon_sym_RPAREN] = ACTIONS(635), + [anon_sym_LBRACK] = ACTIONS(637), + [anon_sym_RBRACK] = ACTIONS(635), + [anon_sym_LBRACE] = ACTIONS(640), + [anon_sym_RBRACE] = ACTIONS(635), + [anon_sym_EQ_GT] = ACTIONS(629), + [anon_sym_COLON] = ACTIONS(643), + [anon_sym_DOLLAR] = ACTIONS(646), + [anon_sym_PLUS] = ACTIONS(643), + [anon_sym_STAR] = ACTIONS(643), + [anon_sym_QMARK] = ACTIONS(629), + [anon_sym_u8] = ACTIONS(626), + [anon_sym_i8] = ACTIONS(626), + [anon_sym_u16] = ACTIONS(626), + [anon_sym_i16] = ACTIONS(626), + [anon_sym_u32] = ACTIONS(626), + [anon_sym_i32] = ACTIONS(626), + [anon_sym_u64] = ACTIONS(626), + [anon_sym_i64] = ACTIONS(626), + [anon_sym_u128] = ACTIONS(626), + [anon_sym_i128] = ACTIONS(626), + [anon_sym_isize] = ACTIONS(626), + [anon_sym_usize] = ACTIONS(626), + [anon_sym_f32] = ACTIONS(626), + [anon_sym_f64] = ACTIONS(626), + [anon_sym_bool] = ACTIONS(626), + [anon_sym_str] = ACTIONS(626), + [anon_sym_char] = ACTIONS(626), + [anon_sym_DASH] = ACTIONS(643), + [anon_sym_SLASH] = ACTIONS(643), + [anon_sym_PERCENT] = ACTIONS(643), + [anon_sym_CARET] = ACTIONS(643), + [anon_sym_BANG] = ACTIONS(643), + [anon_sym_AMP] = ACTIONS(643), + [anon_sym_PIPE] = ACTIONS(643), + [anon_sym_AMP_AMP] = ACTIONS(629), + [anon_sym_PIPE_PIPE] = ACTIONS(629), + [anon_sym_LT_LT] = ACTIONS(643), + [anon_sym_GT_GT] = ACTIONS(643), + [anon_sym_PLUS_EQ] = ACTIONS(629), + [anon_sym_DASH_EQ] = ACTIONS(629), + [anon_sym_STAR_EQ] = ACTIONS(629), + [anon_sym_SLASH_EQ] = ACTIONS(629), + [anon_sym_PERCENT_EQ] = ACTIONS(629), + [anon_sym_CARET_EQ] = ACTIONS(629), + [anon_sym_AMP_EQ] = ACTIONS(629), + [anon_sym_PIPE_EQ] = ACTIONS(629), + [anon_sym_LT_LT_EQ] = ACTIONS(629), + [anon_sym_GT_GT_EQ] = ACTIONS(629), + [anon_sym_EQ] = ACTIONS(643), + [anon_sym_EQ_EQ] = ACTIONS(629), + [anon_sym_BANG_EQ] = ACTIONS(629), + [anon_sym_GT] = ACTIONS(643), + [anon_sym_LT] = ACTIONS(643), + [anon_sym_GT_EQ] = ACTIONS(629), + [anon_sym_LT_EQ] = ACTIONS(629), + [anon_sym_AT] = ACTIONS(629), + [anon_sym__] = ACTIONS(643), + [anon_sym_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT] = ACTIONS(643), + [anon_sym_DOT_DOT_DOT] = ACTIONS(629), + [anon_sym_DOT_DOT_EQ] = ACTIONS(629), + [anon_sym_COMMA] = ACTIONS(629), + [anon_sym_COLON_COLON] = ACTIONS(629), + [anon_sym_DASH_GT] = ACTIONS(629), + [anon_sym_POUND] = ACTIONS(629), + [anon_sym_SQUOTE] = ACTIONS(626), + [anon_sym_as] = ACTIONS(626), + [anon_sym_async] = ACTIONS(626), + [anon_sym_await] = ACTIONS(626), + [anon_sym_break] = ACTIONS(626), + [anon_sym_const] = ACTIONS(626), + [anon_sym_continue] = ACTIONS(626), + [anon_sym_default] = ACTIONS(626), + [anon_sym_enum] = ACTIONS(626), + [anon_sym_fn] = ACTIONS(626), + [anon_sym_for] = ACTIONS(626), + [anon_sym_if] = ACTIONS(626), + [anon_sym_impl] = ACTIONS(626), + [anon_sym_let] = ACTIONS(626), + [anon_sym_loop] = ACTIONS(626), + [anon_sym_match] = ACTIONS(626), + [anon_sym_mod] = ACTIONS(626), + [anon_sym_pub] = ACTIONS(626), + [anon_sym_return] = ACTIONS(626), + [anon_sym_static] = ACTIONS(626), + [anon_sym_struct] = ACTIONS(626), + [anon_sym_trait] = ACTIONS(626), + [anon_sym_type] = ACTIONS(626), + [anon_sym_union] = ACTIONS(626), + [anon_sym_unsafe] = ACTIONS(626), + [anon_sym_use] = ACTIONS(626), + [anon_sym_where] = ACTIONS(626), + [anon_sym_while] = ACTIONS(626), + [sym_mutable_specifier] = ACTIONS(626), + [sym_integer_literal] = ACTIONS(649), + [aux_sym_string_literal_token1] = ACTIONS(652), + [sym_char_literal] = ACTIONS(649), + [anon_sym_true] = ACTIONS(655), + [anon_sym_false] = ACTIONS(655), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_crate] = ACTIONS(626), + [sym__raw_string_literal_start] = ACTIONS(658), + [sym_float_literal] = ACTIONS(649), }, [84] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), [sym_line_comment] = STATE(84), [sym_block_comment] = STATE(84), - [aux_sym_token_tree_repeat1] = STATE(127), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_RBRACK] = ACTIONS(667), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(667), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -25603,44 +25625,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -25670,285 +25692,527 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, [85] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(85), [sym_block_comment] = STATE(85), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(685), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(689), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [86] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(86), [sym_block_comment] = STATE(86), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(131), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(699), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_RBRACK] = ACTIONS(689), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, [87] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), [sym_line_comment] = STATE(87), [sym_block_comment] = STATE(87), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(689), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [88] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(88), + [sym_block_comment] = STATE(88), + [aux_sym_token_tree_repeat1] = STATE(90), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(699), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [89] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(89), + [sym_block_comment] = STATE(89), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(665), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), [anon_sym_RBRACK] = ACTIONS(701), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -25966,44 +26230,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -26033,164 +26297,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [88] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(88), - [sym_block_comment] = STATE(88), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(128), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(699), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [90] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(90), + [sym_block_comment] = STATE(90), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(703), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), }, - [89] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(89), - [sym_block_comment] = STATE(89), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(135), + [91] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(91), + [sym_block_comment] = STATE(91), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(94), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(701), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(705), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -26208,44 +26472,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -26275,406 +26539,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), - }, - [90] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(90), - [sym_block_comment] = STATE(90), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(100), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(703), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [91] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(91), - [sym_block_comment] = STATE(91), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(85), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(699), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, [92] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), [sym_line_comment] = STATE(92), [sym_block_comment] = STATE(92), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(705), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [93] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(93), - [sym_block_comment] = STATE(93), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(135), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(95), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_RBRACE] = ACTIONS(707), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(705), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -26692,44 +26593,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -26759,43 +26660,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [94] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(94), - [sym_block_comment] = STATE(94), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(135), + [93] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(93), + [sym_block_comment] = STATE(93), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(96), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(707), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(705), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -26813,44 +26714,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -26880,406 +26781,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), - }, - [95] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(95), - [sym_block_comment] = STATE(95), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(106), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(703), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [96] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(96), - [sym_block_comment] = STATE(96), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(107), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(703), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [97] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [94] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(97), - [sym_block_comment] = STATE(97), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(709), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [98] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(98), - [sym_block_comment] = STATE(98), - [aux_sym_token_tree_repeat1] = STATE(94), - [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(94), + [sym_block_comment] = STATE(94), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(667), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(707), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -27297,44 +26835,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -27364,1253 +26902,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), - }, - [99] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(99), - [sym_block_comment] = STATE(99), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(92), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(711), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [100] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(100), - [sym_block_comment] = STATE(100), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(713), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [101] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(101), - [sym_block_comment] = STATE(101), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(122), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(715), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [102] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(102), - [sym_block_comment] = STATE(102), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(111), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(711), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [103] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(103), - [sym_block_comment] = STATE(103), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(132), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(715), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [104] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(104), - [sym_block_comment] = STATE(104), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(717), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [105] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(105), - [sym_block_comment] = STATE(105), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(717), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [106] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(106), - [sym_block_comment] = STATE(106), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(713), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [107] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(107), - [sym_block_comment] = STATE(107), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(713), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [108] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [95] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(108), - [sym_block_comment] = STATE(108), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(717), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [109] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(109), - [sym_block_comment] = STATE(109), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(95), + [sym_block_comment] = STATE(95), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(719), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(707), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -28628,44 +26956,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -28695,43 +27023,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [110] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(110), - [sym_block_comment] = STATE(110), - [aux_sym_token_tree_repeat1] = STATE(109), - [aux_sym__non_special_token_repeat1] = STATE(135), + [96] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(96), + [sym_block_comment] = STATE(96), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(721), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(707), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -28749,44 +27077,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -28816,164 +27144,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [111] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [97] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(111), - [sym_block_comment] = STATE(111), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(705), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [112] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(112), - [sym_block_comment] = STATE(112), - [aux_sym_token_tree_repeat1] = STATE(117), - [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(97), + [sym_block_comment] = STATE(97), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_RBRACE] = ACTIONS(723), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(701), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -28991,44 +27198,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -29058,43 +27265,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [113] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(113), - [sym_block_comment] = STATE(113), - [aux_sym_token_tree_repeat1] = STATE(87), - [aux_sym__non_special_token_repeat1] = STATE(135), + [98] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(98), + [sym_block_comment] = STATE(98), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(97), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_RBRACK] = ACTIONS(723), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(709), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -29112,44 +27319,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -29179,98 +27386,824 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [114] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(114), - [sym_block_comment] = STATE(114), - [aux_sym_token_tree_repeat1] = STATE(89), - [aux_sym__non_special_token_repeat1] = STATE(135), - [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_RPAREN] = ACTIONS(723), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(661), - [anon_sym_i8] = ACTIONS(661), - [anon_sym_u16] = ACTIONS(661), - [anon_sym_i16] = ACTIONS(661), - [anon_sym_u32] = ACTIONS(661), - [anon_sym_i32] = ACTIONS(661), - [anon_sym_u64] = ACTIONS(661), - [anon_sym_i64] = ACTIONS(661), - [anon_sym_u128] = ACTIONS(661), - [anon_sym_i128] = ACTIONS(661), - [anon_sym_isize] = ACTIONS(661), - [anon_sym_usize] = ACTIONS(661), + [99] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(99), + [sym_block_comment] = STATE(99), + [aux_sym_token_tree_repeat1] = STATE(102), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(711), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [100] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(100), + [sym_block_comment] = STATE(100), + [aux_sym_token_tree_repeat1] = STATE(103), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_RBRACK] = ACTIONS(711), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [101] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(101), + [sym_block_comment] = STATE(101), + [aux_sym_token_tree_repeat1] = STATE(104), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(711), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [102] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(102), + [sym_block_comment] = STATE(102), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(713), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [103] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(103), + [sym_block_comment] = STATE(103), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_RBRACK] = ACTIONS(713), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [104] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(104), + [sym_block_comment] = STATE(104), + [aux_sym_token_tree_repeat1] = STATE(82), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(713), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [105] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(105), + [sym_block_comment] = STATE(105), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(108), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(715), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), [anon_sym_f32] = ACTIONS(661), [anon_sym_f64] = ACTIONS(661), [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -29300,285 +28233,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), - }, - [115] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(115), - [sym_block_comment] = STATE(115), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(125), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(711), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [116] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [106] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(116), - [sym_block_comment] = STATE(116), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(104), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(725), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [117] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(117), - [sym_block_comment] = STATE(117), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(106), + [sym_block_comment] = STATE(106), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(109), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_RBRACE] = ACTIONS(701), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(715), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -29596,44 +28287,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -29663,285 +28354,43 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), - }, - [118] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(118), - [sym_block_comment] = STATE(118), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(105), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(725), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [119] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [107] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(119), - [sym_block_comment] = STATE(119), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(108), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(725), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [120] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(120), - [sym_block_comment] = STATE(120), - [aux_sym_token_tree_repeat1] = STATE(93), - [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(107), + [sym_block_comment] = STATE(107), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_RBRACE] = ACTIONS(667), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(701), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -29959,44 +28408,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -30026,769 +28475,164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [121] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(121), - [sym_block_comment] = STATE(121), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(97), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(715), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [122] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(122), - [sym_block_comment] = STATE(122), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(709), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [123] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(123), - [sym_block_comment] = STATE(123), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(727), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [124] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), - [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(124), - [sym_block_comment] = STATE(124), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(130), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(729), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [125] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [108] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(125), - [sym_block_comment] = STATE(125), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(705), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(108), + [sym_block_comment] = STATE(108), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(717), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [126] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [109] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(126), - [sym_block_comment] = STATE(126), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(727), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [127] = { - [sym_token_tree] = STATE(163), - [sym_token_repetition] = STATE(163), - [sym__literal] = STATE(163), - [sym_string_literal] = STATE(164), - [sym_raw_string_literal] = STATE(164), - [sym_boolean_literal] = STATE(164), - [sym_line_comment] = STATE(127), - [sym_block_comment] = STATE(127), - [aux_sym_token_tree_repeat1] = STATE(68), - [aux_sym__non_special_token_repeat1] = STATE(135), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(109), + [sym_block_comment] = STATE(109), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), [sym_identifier] = ACTIONS(661), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(663), - [anon_sym_LBRACK] = ACTIONS(665), - [anon_sym_RBRACK] = ACTIONS(707), - [anon_sym_LBRACE] = ACTIONS(669), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(671), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(717), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), [anon_sym_u8] = ACTIONS(661), [anon_sym_i8] = ACTIONS(661), [anon_sym_u16] = ACTIONS(661), @@ -30806,44 +28650,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(661), [anon_sym_str] = ACTIONS(661), [anon_sym_char] = ACTIONS(661), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), [anon_sym_SQUOTE] = ACTIONS(661), [anon_sym_as] = ACTIONS(661), [anon_sym_async] = ACTIONS(661), @@ -30873,773 +28717,2950 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(661), [anon_sym_while] = ACTIONS(661), [sym_mutable_specifier] = ACTIONS(661), - [sym_integer_literal] = ACTIONS(606), - [aux_sym_string_literal_token1] = ACTIONS(608), - [sym_char_literal] = ACTIONS(606), - [anon_sym_true] = ACTIONS(610), - [anon_sym_false] = ACTIONS(610), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(661), [sym_super] = ACTIONS(661), [sym_crate] = ACTIONS(661), - [sym_metavariable] = ACTIONS(673), - [sym__raw_string_literal_start] = ACTIONS(614), - [sym_float_literal] = ACTIONS(606), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [128] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [110] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(128), - [sym_block_comment] = STATE(128), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(685), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(110), + [sym_block_comment] = STATE(110), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(717), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [129] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [111] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(129), - [sym_block_comment] = STATE(129), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(126), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(729), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(111), + [sym_block_comment] = STATE(111), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(114), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(719), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [130] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [112] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(130), - [sym_block_comment] = STATE(130), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(727), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(112), + [sym_block_comment] = STATE(112), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(115), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(719), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [131] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [113] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(131), - [sym_block_comment] = STATE(131), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_RPAREN] = ACTIONS(685), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(113), + [sym_block_comment] = STATE(113), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(116), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(719), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [132] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [114] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(132), - [sym_block_comment] = STATE(132), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(77), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_RBRACK] = ACTIONS(709), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(114), + [sym_block_comment] = STATE(114), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(721), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), }, - [133] = { - [sym_delim_token_tree] = STATE(204), - [sym__delim_tokens] = STATE(197), - [sym__non_delim_token] = STATE(204), + [115] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), [sym__literal] = STATE(183), - [sym_string_literal] = STATE(199), - [sym_raw_string_literal] = STATE(199), - [sym_boolean_literal] = STATE(199), - [sym_line_comment] = STATE(133), - [sym_block_comment] = STATE(133), - [aux_sym__non_special_token_repeat1] = STATE(154), - [aux_sym_delim_token_tree_repeat1] = STATE(123), - [sym_identifier] = ACTIONS(675), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(679), - [anon_sym_LBRACK] = ACTIONS(681), - [anon_sym_LBRACE] = ACTIONS(683), - [anon_sym_RBRACE] = ACTIONS(729), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(689), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(675), - [anon_sym_i8] = ACTIONS(675), - [anon_sym_u16] = ACTIONS(675), - [anon_sym_i16] = ACTIONS(675), - [anon_sym_u32] = ACTIONS(675), - [anon_sym_i32] = ACTIONS(675), - [anon_sym_u64] = ACTIONS(675), - [anon_sym_i64] = ACTIONS(675), - [anon_sym_u128] = ACTIONS(675), - [anon_sym_i128] = ACTIONS(675), - [anon_sym_isize] = ACTIONS(675), - [anon_sym_usize] = ACTIONS(675), - [anon_sym_f32] = ACTIONS(675), - [anon_sym_f64] = ACTIONS(675), - [anon_sym_bool] = ACTIONS(675), - [anon_sym_str] = ACTIONS(675), - [anon_sym_char] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(675), - [anon_sym_as] = ACTIONS(675), - [anon_sym_async] = ACTIONS(675), - [anon_sym_await] = ACTIONS(675), - [anon_sym_break] = ACTIONS(675), - [anon_sym_const] = ACTIONS(675), - [anon_sym_continue] = ACTIONS(675), - [anon_sym_default] = ACTIONS(675), - [anon_sym_enum] = ACTIONS(675), - [anon_sym_fn] = ACTIONS(675), - [anon_sym_for] = ACTIONS(675), - [anon_sym_if] = ACTIONS(675), - [anon_sym_impl] = ACTIONS(675), - [anon_sym_let] = ACTIONS(675), - [anon_sym_loop] = ACTIONS(675), - [anon_sym_match] = ACTIONS(675), - [anon_sym_mod] = ACTIONS(675), - [anon_sym_pub] = ACTIONS(675), - [anon_sym_return] = ACTIONS(675), - [anon_sym_static] = ACTIONS(675), - [anon_sym_struct] = ACTIONS(675), - [anon_sym_trait] = ACTIONS(675), - [anon_sym_type] = ACTIONS(675), - [anon_sym_union] = ACTIONS(675), - [anon_sym_unsafe] = ACTIONS(675), - [anon_sym_use] = ACTIONS(675), - [anon_sym_where] = ACTIONS(675), - [anon_sym_while] = ACTIONS(675), - [sym_mutable_specifier] = ACTIONS(675), - [sym_integer_literal] = ACTIONS(691), - [aux_sym_string_literal_token1] = ACTIONS(693), - [sym_char_literal] = ACTIONS(691), - [anon_sym_true] = ACTIONS(695), - [anon_sym_false] = ACTIONS(695), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(675), - [sym_super] = ACTIONS(675), - [sym_crate] = ACTIONS(675), - [sym__raw_string_literal_start] = ACTIONS(697), - [sym_float_literal] = ACTIONS(691), - }, - [134] = { - [sym_line_comment] = STATE(134), - [sym_block_comment] = STATE(134), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_RBRACK] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(731), - [anon_sym_i8] = ACTIONS(731), - [anon_sym_u16] = ACTIONS(731), - [anon_sym_i16] = ACTIONS(731), - [anon_sym_u32] = ACTIONS(731), - [anon_sym_i32] = ACTIONS(731), - [anon_sym_u64] = ACTIONS(731), - [anon_sym_i64] = ACTIONS(731), - [anon_sym_u128] = ACTIONS(731), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(115), + [sym_block_comment] = STATE(115), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(721), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [116] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(116), + [sym_block_comment] = STATE(116), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(721), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [117] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(117), + [sym_block_comment] = STATE(117), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(120), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(723), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [118] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(118), + [sym_block_comment] = STATE(118), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(121), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(723), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [119] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(119), + [sym_block_comment] = STATE(119), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(122), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(723), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [120] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(120), + [sym_block_comment] = STATE(120), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(725), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [121] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(121), + [sym_block_comment] = STATE(121), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(725), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [122] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(122), + [sym_block_comment] = STATE(122), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(725), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [123] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(123), + [sym_block_comment] = STATE(123), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(107), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(709), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [124] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(124), + [sym_block_comment] = STATE(124), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(89), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(709), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [125] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(125), + [sym_block_comment] = STATE(125), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(84), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_RPAREN] = ACTIONS(727), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [126] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(126), + [sym_block_comment] = STATE(126), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(128), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(727), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [127] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(127), + [sym_block_comment] = STATE(127), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(129), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(727), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [128] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(128), + [sym_block_comment] = STATE(128), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_RBRACK] = ACTIONS(667), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [129] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(129), + [sym_block_comment] = STATE(129), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(83), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(667), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [130] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(130), + [sym_block_comment] = STATE(130), + [aux_sym_token_tree_repeat1] = STATE(85), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_RPAREN] = ACTIONS(729), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [131] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(131), + [sym_block_comment] = STATE(131), + [aux_sym_token_tree_repeat1] = STATE(86), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_RBRACK] = ACTIONS(729), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [132] = { + [sym_token_tree] = STATE(157), + [sym_token_repetition] = STATE(157), + [sym__literal] = STATE(157), + [sym_string_literal] = STATE(156), + [sym_raw_string_literal] = STATE(156), + [sym_boolean_literal] = STATE(156), + [sym_line_comment] = STATE(132), + [sym_block_comment] = STATE(132), + [aux_sym_token_tree_repeat1] = STATE(87), + [aux_sym__non_special_token_repeat1] = STATE(136), + [sym_identifier] = ACTIONS(685), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(687), + [anon_sym_LBRACK] = ACTIONS(691), + [anon_sym_LBRACE] = ACTIONS(693), + [anon_sym_RBRACE] = ACTIONS(729), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(695), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(685), + [anon_sym_i8] = ACTIONS(685), + [anon_sym_u16] = ACTIONS(685), + [anon_sym_i16] = ACTIONS(685), + [anon_sym_u32] = ACTIONS(685), + [anon_sym_i32] = ACTIONS(685), + [anon_sym_u64] = ACTIONS(685), + [anon_sym_i64] = ACTIONS(685), + [anon_sym_u128] = ACTIONS(685), + [anon_sym_i128] = ACTIONS(685), + [anon_sym_isize] = ACTIONS(685), + [anon_sym_usize] = ACTIONS(685), + [anon_sym_f32] = ACTIONS(685), + [anon_sym_f64] = ACTIONS(685), + [anon_sym_bool] = ACTIONS(685), + [anon_sym_str] = ACTIONS(685), + [anon_sym_char] = ACTIONS(685), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(685), + [anon_sym_as] = ACTIONS(685), + [anon_sym_async] = ACTIONS(685), + [anon_sym_await] = ACTIONS(685), + [anon_sym_break] = ACTIONS(685), + [anon_sym_const] = ACTIONS(685), + [anon_sym_continue] = ACTIONS(685), + [anon_sym_default] = ACTIONS(685), + [anon_sym_enum] = ACTIONS(685), + [anon_sym_fn] = ACTIONS(685), + [anon_sym_for] = ACTIONS(685), + [anon_sym_if] = ACTIONS(685), + [anon_sym_impl] = ACTIONS(685), + [anon_sym_let] = ACTIONS(685), + [anon_sym_loop] = ACTIONS(685), + [anon_sym_match] = ACTIONS(685), + [anon_sym_mod] = ACTIONS(685), + [anon_sym_pub] = ACTIONS(685), + [anon_sym_return] = ACTIONS(685), + [anon_sym_static] = ACTIONS(685), + [anon_sym_struct] = ACTIONS(685), + [anon_sym_trait] = ACTIONS(685), + [anon_sym_type] = ACTIONS(685), + [anon_sym_union] = ACTIONS(685), + [anon_sym_unsafe] = ACTIONS(685), + [anon_sym_use] = ACTIONS(685), + [anon_sym_where] = ACTIONS(685), + [anon_sym_while] = ACTIONS(685), + [sym_mutable_specifier] = ACTIONS(685), + [sym_integer_literal] = ACTIONS(568), + [aux_sym_string_literal_token1] = ACTIONS(570), + [sym_char_literal] = ACTIONS(568), + [anon_sym_true] = ACTIONS(572), + [anon_sym_false] = ACTIONS(572), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(685), + [sym_super] = ACTIONS(685), + [sym_crate] = ACTIONS(685), + [sym_metavariable] = ACTIONS(697), + [sym__raw_string_literal_start] = ACTIONS(576), + [sym_float_literal] = ACTIONS(568), + }, + [133] = { + [sym_delim_token_tree] = STATE(184), + [sym__delim_tokens] = STATE(185), + [sym__non_delim_token] = STATE(184), + [sym__literal] = STATE(183), + [sym_string_literal] = STATE(173), + [sym_raw_string_literal] = STATE(173), + [sym_boolean_literal] = STATE(173), + [sym_line_comment] = STATE(133), + [sym_block_comment] = STATE(133), + [aux_sym__non_special_token_repeat1] = STATE(160), + [aux_sym_delim_token_tree_repeat1] = STATE(110), + [sym_identifier] = ACTIONS(661), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(665), + [anon_sym_LBRACK] = ACTIONS(669), + [anon_sym_LBRACE] = ACTIONS(671), + [anon_sym_RBRACE] = ACTIONS(715), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(661), + [anon_sym_i8] = ACTIONS(661), + [anon_sym_u16] = ACTIONS(661), + [anon_sym_i16] = ACTIONS(661), + [anon_sym_u32] = ACTIONS(661), + [anon_sym_i32] = ACTIONS(661), + [anon_sym_u64] = ACTIONS(661), + [anon_sym_i64] = ACTIONS(661), + [anon_sym_u128] = ACTIONS(661), + [anon_sym_i128] = ACTIONS(661), + [anon_sym_isize] = ACTIONS(661), + [anon_sym_usize] = ACTIONS(661), + [anon_sym_f32] = ACTIONS(661), + [anon_sym_f64] = ACTIONS(661), + [anon_sym_bool] = ACTIONS(661), + [anon_sym_str] = ACTIONS(661), + [anon_sym_char] = ACTIONS(661), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(661), + [anon_sym_as] = ACTIONS(661), + [anon_sym_async] = ACTIONS(661), + [anon_sym_await] = ACTIONS(661), + [anon_sym_break] = ACTIONS(661), + [anon_sym_const] = ACTIONS(661), + [anon_sym_continue] = ACTIONS(661), + [anon_sym_default] = ACTIONS(661), + [anon_sym_enum] = ACTIONS(661), + [anon_sym_fn] = ACTIONS(661), + [anon_sym_for] = ACTIONS(661), + [anon_sym_if] = ACTIONS(661), + [anon_sym_impl] = ACTIONS(661), + [anon_sym_let] = ACTIONS(661), + [anon_sym_loop] = ACTIONS(661), + [anon_sym_match] = ACTIONS(661), + [anon_sym_mod] = ACTIONS(661), + [anon_sym_pub] = ACTIONS(661), + [anon_sym_return] = ACTIONS(661), + [anon_sym_static] = ACTIONS(661), + [anon_sym_struct] = ACTIONS(661), + [anon_sym_trait] = ACTIONS(661), + [anon_sym_type] = ACTIONS(661), + [anon_sym_union] = ACTIONS(661), + [anon_sym_unsafe] = ACTIONS(661), + [anon_sym_use] = ACTIONS(661), + [anon_sym_where] = ACTIONS(661), + [anon_sym_while] = ACTIONS(661), + [sym_mutable_specifier] = ACTIONS(661), + [sym_integer_literal] = ACTIONS(677), + [aux_sym_string_literal_token1] = ACTIONS(679), + [sym_char_literal] = ACTIONS(677), + [anon_sym_true] = ACTIONS(681), + [anon_sym_false] = ACTIONS(681), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(661), + [sym_super] = ACTIONS(661), + [sym_crate] = ACTIONS(661), + [sym__raw_string_literal_start] = ACTIONS(683), + [sym_float_literal] = ACTIONS(677), + }, + [134] = { + [sym_line_comment] = STATE(134), + [sym_block_comment] = STATE(134), + [aux_sym__non_special_token_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(731), + [anon_sym_SEMI] = ACTIONS(733), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_EQ_GT] = ACTIONS(733), + [anon_sym_COLON] = ACTIONS(738), + [anon_sym_DOLLAR] = ACTIONS(731), + [anon_sym_PLUS] = ACTIONS(738), + [anon_sym_STAR] = ACTIONS(738), + [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_u8] = ACTIONS(731), + [anon_sym_i8] = ACTIONS(731), + [anon_sym_u16] = ACTIONS(731), + [anon_sym_i16] = ACTIONS(731), + [anon_sym_u32] = ACTIONS(731), + [anon_sym_i32] = ACTIONS(731), + [anon_sym_u64] = ACTIONS(731), + [anon_sym_i64] = ACTIONS(731), + [anon_sym_u128] = ACTIONS(731), [anon_sym_i128] = ACTIONS(731), [anon_sym_isize] = ACTIONS(731), [anon_sym_usize] = ACTIONS(731), @@ -31648,44 +31669,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(731), [anon_sym_str] = ACTIONS(731), [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), + [anon_sym_DASH] = ACTIONS(738), + [anon_sym_SLASH] = ACTIONS(738), + [anon_sym_PERCENT] = ACTIONS(738), + [anon_sym_CARET] = ACTIONS(738), + [anon_sym_BANG] = ACTIONS(738), + [anon_sym_AMP] = ACTIONS(738), + [anon_sym_PIPE] = ACTIONS(738), + [anon_sym_AMP_AMP] = ACTIONS(733), + [anon_sym_PIPE_PIPE] = ACTIONS(733), + [anon_sym_LT_LT] = ACTIONS(738), + [anon_sym_GT_GT] = ACTIONS(738), + [anon_sym_PLUS_EQ] = ACTIONS(733), + [anon_sym_DASH_EQ] = ACTIONS(733), + [anon_sym_STAR_EQ] = ACTIONS(733), + [anon_sym_SLASH_EQ] = ACTIONS(733), + [anon_sym_PERCENT_EQ] = ACTIONS(733), + [anon_sym_CARET_EQ] = ACTIONS(733), + [anon_sym_AMP_EQ] = ACTIONS(733), + [anon_sym_PIPE_EQ] = ACTIONS(733), + [anon_sym_LT_LT_EQ] = ACTIONS(733), + [anon_sym_GT_GT_EQ] = ACTIONS(733), + [anon_sym_EQ] = ACTIONS(738), + [anon_sym_EQ_EQ] = ACTIONS(733), + [anon_sym_BANG_EQ] = ACTIONS(733), + [anon_sym_GT] = ACTIONS(738), + [anon_sym_LT] = ACTIONS(738), + [anon_sym_GT_EQ] = ACTIONS(733), + [anon_sym_LT_EQ] = ACTIONS(733), + [anon_sym_AT] = ACTIONS(733), + [anon_sym__] = ACTIONS(738), + [anon_sym_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT] = ACTIONS(738), + [anon_sym_DOT_DOT_DOT] = ACTIONS(733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(733), + [anon_sym_COMMA] = ACTIONS(733), + [anon_sym_COLON_COLON] = ACTIONS(733), + [anon_sym_DASH_GT] = ACTIONS(733), + [anon_sym_POUND] = ACTIONS(733), [anon_sym_SQUOTE] = ACTIONS(731), [anon_sym_as] = ACTIONS(731), [anon_sym_async] = ACTIONS(731), @@ -31715,9 +31736,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(731), [anon_sym_while] = ACTIONS(731), [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(733), - [aux_sym_string_literal_token1] = ACTIONS(733), - [sym_char_literal] = ACTIONS(733), + [sym_integer_literal] = ACTIONS(736), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(736), [anon_sym_true] = ACTIONS(731), [anon_sym_false] = ACTIONS(731), [anon_sym_SLASH_SLASH] = ACTIONS(101), @@ -31725,642 +31746,642 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(731), [sym_super] = ACTIONS(731), [sym_crate] = ACTIONS(731), - [sym_metavariable] = ACTIONS(733), - [sym__raw_string_literal_start] = ACTIONS(733), - [sym_float_literal] = ACTIONS(733), + [sym_metavariable] = ACTIONS(736), + [sym__raw_string_literal_start] = ACTIONS(736), + [sym_float_literal] = ACTIONS(736), }, [135] = { [sym_line_comment] = STATE(135), [sym_block_comment] = STATE(135), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(592), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_RBRACK] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_EQ_GT] = ACTIONS(592), - [anon_sym_COLON] = ACTIONS(602), - [anon_sym_DOLLAR] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(602), - [anon_sym_STAR] = ACTIONS(602), - [anon_sym_QMARK] = ACTIONS(592), - [anon_sym_u8] = ACTIONS(735), - [anon_sym_i8] = ACTIONS(735), - [anon_sym_u16] = ACTIONS(735), - [anon_sym_i16] = ACTIONS(735), - [anon_sym_u32] = ACTIONS(735), - [anon_sym_i32] = ACTIONS(735), - [anon_sym_u64] = ACTIONS(735), - [anon_sym_i64] = ACTIONS(735), - [anon_sym_u128] = ACTIONS(735), - [anon_sym_i128] = ACTIONS(735), - [anon_sym_isize] = ACTIONS(735), - [anon_sym_usize] = ACTIONS(735), - [anon_sym_f32] = ACTIONS(735), - [anon_sym_f64] = ACTIONS(735), - [anon_sym_bool] = ACTIONS(735), - [anon_sym_str] = ACTIONS(735), - [anon_sym_char] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(602), - [anon_sym_SLASH] = ACTIONS(602), - [anon_sym_PERCENT] = ACTIONS(602), - [anon_sym_CARET] = ACTIONS(602), - [anon_sym_BANG] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(602), - [anon_sym_PIPE] = ACTIONS(602), - [anon_sym_AMP_AMP] = ACTIONS(592), - [anon_sym_PIPE_PIPE] = ACTIONS(592), - [anon_sym_LT_LT] = ACTIONS(602), - [anon_sym_GT_GT] = ACTIONS(602), - [anon_sym_PLUS_EQ] = ACTIONS(592), - [anon_sym_DASH_EQ] = ACTIONS(592), - [anon_sym_STAR_EQ] = ACTIONS(592), - [anon_sym_SLASH_EQ] = ACTIONS(592), - [anon_sym_PERCENT_EQ] = ACTIONS(592), - [anon_sym_CARET_EQ] = ACTIONS(592), - [anon_sym_AMP_EQ] = ACTIONS(592), - [anon_sym_PIPE_EQ] = ACTIONS(592), - [anon_sym_LT_LT_EQ] = ACTIONS(592), - [anon_sym_GT_GT_EQ] = ACTIONS(592), - [anon_sym_EQ] = ACTIONS(602), - [anon_sym_EQ_EQ] = ACTIONS(592), - [anon_sym_BANG_EQ] = ACTIONS(592), - [anon_sym_GT] = ACTIONS(602), - [anon_sym_LT] = ACTIONS(602), - [anon_sym_GT_EQ] = ACTIONS(592), - [anon_sym_LT_EQ] = ACTIONS(592), - [anon_sym_AT] = ACTIONS(592), - [anon_sym__] = ACTIONS(602), - [anon_sym_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT] = ACTIONS(602), - [anon_sym_DOT_DOT_DOT] = ACTIONS(592), - [anon_sym_DOT_DOT_EQ] = ACTIONS(592), - [anon_sym_COMMA] = ACTIONS(592), - [anon_sym_COLON_COLON] = ACTIONS(592), - [anon_sym_DASH_GT] = ACTIONS(592), - [anon_sym_POUND] = ACTIONS(592), - [anon_sym_SQUOTE] = ACTIONS(735), - [anon_sym_as] = ACTIONS(735), - [anon_sym_async] = ACTIONS(735), - [anon_sym_await] = ACTIONS(735), - [anon_sym_break] = ACTIONS(735), - [anon_sym_const] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(735), - [anon_sym_default] = ACTIONS(735), - [anon_sym_enum] = ACTIONS(735), - [anon_sym_fn] = ACTIONS(735), - [anon_sym_for] = ACTIONS(735), - [anon_sym_if] = ACTIONS(735), - [anon_sym_impl] = ACTIONS(735), - [anon_sym_let] = ACTIONS(735), - [anon_sym_loop] = ACTIONS(735), - [anon_sym_match] = ACTIONS(735), - [anon_sym_mod] = ACTIONS(735), - [anon_sym_pub] = ACTIONS(735), - [anon_sym_return] = ACTIONS(735), - [anon_sym_static] = ACTIONS(735), - [anon_sym_struct] = ACTIONS(735), - [anon_sym_trait] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_union] = ACTIONS(735), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_use] = ACTIONS(735), - [anon_sym_where] = ACTIONS(735), - [anon_sym_while] = ACTIONS(735), - [sym_mutable_specifier] = ACTIONS(735), - [sym_integer_literal] = ACTIONS(737), - [aux_sym_string_literal_token1] = ACTIONS(737), - [sym_char_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(735), - [anon_sym_false] = ACTIONS(735), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(735), - [sym_super] = ACTIONS(735), - [sym_crate] = ACTIONS(735), - [sym_metavariable] = ACTIONS(737), - [sym__raw_string_literal_start] = ACTIONS(737), - [sym_float_literal] = ACTIONS(737), + [aux_sym__non_special_token_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_RBRACK] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(743), + [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [anon_sym_u8] = ACTIONS(741), + [anon_sym_i8] = ACTIONS(741), + [anon_sym_u16] = ACTIONS(741), + [anon_sym_i16] = ACTIONS(741), + [anon_sym_u32] = ACTIONS(741), + [anon_sym_i32] = ACTIONS(741), + [anon_sym_u64] = ACTIONS(741), + [anon_sym_i64] = ACTIONS(741), + [anon_sym_u128] = ACTIONS(741), + [anon_sym_i128] = ACTIONS(741), + [anon_sym_isize] = ACTIONS(741), + [anon_sym_usize] = ACTIONS(741), + [anon_sym_f32] = ACTIONS(741), + [anon_sym_f64] = ACTIONS(741), + [anon_sym_bool] = ACTIONS(741), + [anon_sym_str] = ACTIONS(741), + [anon_sym_char] = ACTIONS(741), + [anon_sym_DASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(741), + [anon_sym_as] = ACTIONS(741), + [anon_sym_async] = ACTIONS(741), + [anon_sym_await] = ACTIONS(741), + [anon_sym_break] = ACTIONS(741), + [anon_sym_const] = ACTIONS(741), + [anon_sym_continue] = ACTIONS(741), + [anon_sym_default] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(741), + [anon_sym_fn] = ACTIONS(741), + [anon_sym_for] = ACTIONS(741), + [anon_sym_if] = ACTIONS(741), + [anon_sym_impl] = ACTIONS(741), + [anon_sym_let] = ACTIONS(741), + [anon_sym_loop] = ACTIONS(741), + [anon_sym_match] = ACTIONS(741), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_pub] = ACTIONS(741), + [anon_sym_return] = ACTIONS(741), + [anon_sym_static] = ACTIONS(741), + [anon_sym_struct] = ACTIONS(741), + [anon_sym_trait] = ACTIONS(741), + [anon_sym_type] = ACTIONS(741), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_use] = ACTIONS(741), + [anon_sym_where] = ACTIONS(741), + [anon_sym_while] = ACTIONS(741), + [sym_mutable_specifier] = ACTIONS(741), + [sym_integer_literal] = ACTIONS(743), + [aux_sym_string_literal_token1] = ACTIONS(743), + [sym_char_literal] = ACTIONS(743), + [anon_sym_true] = ACTIONS(741), + [anon_sym_false] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(741), + [sym_super] = ACTIONS(741), + [sym_crate] = ACTIONS(741), + [sym_metavariable] = ACTIONS(743), + [sym__raw_string_literal_start] = ACTIONS(743), + [sym_float_literal] = ACTIONS(743), }, [136] = { [sym_line_comment] = STATE(136), [sym_block_comment] = STATE(136), - [aux_sym__non_special_token_repeat1] = STATE(136), - [sym_identifier] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(741), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_EQ_GT] = ACTIONS(741), - [anon_sym_COLON] = ACTIONS(746), - [anon_sym_DOLLAR] = ACTIONS(739), - [anon_sym_PLUS] = ACTIONS(746), - [anon_sym_STAR] = ACTIONS(746), - [anon_sym_QMARK] = ACTIONS(741), - [anon_sym_u8] = ACTIONS(739), - [anon_sym_i8] = ACTIONS(739), - [anon_sym_u16] = ACTIONS(739), - [anon_sym_i16] = ACTIONS(739), - [anon_sym_u32] = ACTIONS(739), - [anon_sym_i32] = ACTIONS(739), - [anon_sym_u64] = ACTIONS(739), - [anon_sym_i64] = ACTIONS(739), - [anon_sym_u128] = ACTIONS(739), - [anon_sym_i128] = ACTIONS(739), - [anon_sym_isize] = ACTIONS(739), - [anon_sym_usize] = ACTIONS(739), - [anon_sym_f32] = ACTIONS(739), - [anon_sym_f64] = ACTIONS(739), - [anon_sym_bool] = ACTIONS(739), - [anon_sym_str] = ACTIONS(739), - [anon_sym_char] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(746), - [anon_sym_SLASH] = ACTIONS(746), - [anon_sym_PERCENT] = ACTIONS(746), - [anon_sym_CARET] = ACTIONS(746), - [anon_sym_BANG] = ACTIONS(746), - [anon_sym_AMP] = ACTIONS(746), - [anon_sym_PIPE] = ACTIONS(746), - [anon_sym_AMP_AMP] = ACTIONS(741), - [anon_sym_PIPE_PIPE] = ACTIONS(741), - [anon_sym_LT_LT] = ACTIONS(746), - [anon_sym_GT_GT] = ACTIONS(746), - [anon_sym_PLUS_EQ] = ACTIONS(741), - [anon_sym_DASH_EQ] = ACTIONS(741), - [anon_sym_STAR_EQ] = ACTIONS(741), - [anon_sym_SLASH_EQ] = ACTIONS(741), - [anon_sym_PERCENT_EQ] = ACTIONS(741), - [anon_sym_CARET_EQ] = ACTIONS(741), - [anon_sym_AMP_EQ] = ACTIONS(741), - [anon_sym_PIPE_EQ] = ACTIONS(741), - [anon_sym_LT_LT_EQ] = ACTIONS(741), - [anon_sym_GT_GT_EQ] = ACTIONS(741), - [anon_sym_EQ] = ACTIONS(746), - [anon_sym_EQ_EQ] = ACTIONS(741), - [anon_sym_BANG_EQ] = ACTIONS(741), - [anon_sym_GT] = ACTIONS(746), - [anon_sym_LT] = ACTIONS(746), - [anon_sym_GT_EQ] = ACTIONS(741), - [anon_sym_LT_EQ] = ACTIONS(741), - [anon_sym_AT] = ACTIONS(741), - [anon_sym__] = ACTIONS(746), - [anon_sym_DOT] = ACTIONS(746), - [anon_sym_DOT_DOT] = ACTIONS(746), - [anon_sym_DOT_DOT_DOT] = ACTIONS(741), - [anon_sym_DOT_DOT_EQ] = ACTIONS(741), - [anon_sym_COMMA] = ACTIONS(741), - [anon_sym_COLON_COLON] = ACTIONS(741), - [anon_sym_DASH_GT] = ACTIONS(741), - [anon_sym_POUND] = ACTIONS(741), - [anon_sym_SQUOTE] = ACTIONS(739), - [anon_sym_as] = ACTIONS(739), - [anon_sym_async] = ACTIONS(739), - [anon_sym_await] = ACTIONS(739), - [anon_sym_break] = ACTIONS(739), - [anon_sym_const] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(739), - [anon_sym_default] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(739), - [anon_sym_fn] = ACTIONS(739), - [anon_sym_for] = ACTIONS(739), - [anon_sym_if] = ACTIONS(739), - [anon_sym_impl] = ACTIONS(739), - [anon_sym_let] = ACTIONS(739), - [anon_sym_loop] = ACTIONS(739), - [anon_sym_match] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(739), - [anon_sym_pub] = ACTIONS(739), - [anon_sym_return] = ACTIONS(739), - [anon_sym_static] = ACTIONS(739), - [anon_sym_struct] = ACTIONS(739), - [anon_sym_trait] = ACTIONS(739), - [anon_sym_type] = ACTIONS(739), - [anon_sym_union] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(739), - [anon_sym_use] = ACTIONS(739), - [anon_sym_where] = ACTIONS(739), - [anon_sym_while] = ACTIONS(739), - [sym_mutable_specifier] = ACTIONS(739), - [sym_integer_literal] = ACTIONS(744), - [aux_sym_string_literal_token1] = ACTIONS(744), - [sym_char_literal] = ACTIONS(744), - [anon_sym_true] = ACTIONS(739), - [anon_sym_false] = ACTIONS(739), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(739), - [sym_super] = ACTIONS(739), - [sym_crate] = ACTIONS(739), - [sym_metavariable] = ACTIONS(744), - [sym__raw_string_literal_start] = ACTIONS(744), - [sym_float_literal] = ACTIONS(744), + [aux_sym__non_special_token_repeat1] = STATE(134), + [sym_identifier] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(554), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(747), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_EQ_GT] = ACTIONS(554), + [anon_sym_COLON] = ACTIONS(564), + [anon_sym_DOLLAR] = ACTIONS(745), + [anon_sym_PLUS] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_QMARK] = ACTIONS(554), + [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(564), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_PERCENT] = ACTIONS(564), + [anon_sym_CARET] = ACTIONS(564), + [anon_sym_BANG] = ACTIONS(564), + [anon_sym_AMP] = ACTIONS(564), + [anon_sym_PIPE] = ACTIONS(564), + [anon_sym_AMP_AMP] = ACTIONS(554), + [anon_sym_PIPE_PIPE] = ACTIONS(554), + [anon_sym_LT_LT] = ACTIONS(564), + [anon_sym_GT_GT] = ACTIONS(564), + [anon_sym_PLUS_EQ] = ACTIONS(554), + [anon_sym_DASH_EQ] = ACTIONS(554), + [anon_sym_STAR_EQ] = ACTIONS(554), + [anon_sym_SLASH_EQ] = ACTIONS(554), + [anon_sym_PERCENT_EQ] = ACTIONS(554), + [anon_sym_CARET_EQ] = ACTIONS(554), + [anon_sym_AMP_EQ] = ACTIONS(554), + [anon_sym_PIPE_EQ] = ACTIONS(554), + [anon_sym_LT_LT_EQ] = ACTIONS(554), + [anon_sym_GT_GT_EQ] = ACTIONS(554), + [anon_sym_EQ] = ACTIONS(564), + [anon_sym_EQ_EQ] = ACTIONS(554), + [anon_sym_BANG_EQ] = ACTIONS(554), + [anon_sym_GT] = ACTIONS(564), + [anon_sym_LT] = ACTIONS(564), + [anon_sym_GT_EQ] = ACTIONS(554), + [anon_sym_LT_EQ] = ACTIONS(554), + [anon_sym_AT] = ACTIONS(554), + [anon_sym__] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT] = ACTIONS(564), + [anon_sym_DOT_DOT_DOT] = ACTIONS(554), + [anon_sym_DOT_DOT_EQ] = ACTIONS(554), + [anon_sym_COMMA] = ACTIONS(554), + [anon_sym_COLON_COLON] = ACTIONS(554), + [anon_sym_DASH_GT] = ACTIONS(554), + [anon_sym_POUND] = ACTIONS(554), + [anon_sym_SQUOTE] = ACTIONS(745), + [anon_sym_as] = ACTIONS(745), + [anon_sym_async] = ACTIONS(745), + [anon_sym_await] = ACTIONS(745), + [anon_sym_break] = ACTIONS(745), + [anon_sym_const] = ACTIONS(745), + [anon_sym_continue] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), + [anon_sym_enum] = ACTIONS(745), + [anon_sym_fn] = ACTIONS(745), + [anon_sym_for] = ACTIONS(745), + [anon_sym_if] = ACTIONS(745), + [anon_sym_impl] = ACTIONS(745), + [anon_sym_let] = ACTIONS(745), + [anon_sym_loop] = ACTIONS(745), + [anon_sym_match] = ACTIONS(745), + [anon_sym_mod] = ACTIONS(745), + [anon_sym_pub] = ACTIONS(745), + [anon_sym_return] = ACTIONS(745), + [anon_sym_static] = ACTIONS(745), + [anon_sym_struct] = ACTIONS(745), + [anon_sym_trait] = ACTIONS(745), + [anon_sym_type] = ACTIONS(745), + [anon_sym_union] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(745), + [anon_sym_use] = ACTIONS(745), + [anon_sym_where] = ACTIONS(745), + [anon_sym_while] = ACTIONS(745), + [sym_mutable_specifier] = ACTIONS(745), + [sym_integer_literal] = ACTIONS(747), + [aux_sym_string_literal_token1] = ACTIONS(747), + [sym_char_literal] = ACTIONS(747), + [anon_sym_true] = ACTIONS(745), + [anon_sym_false] = ACTIONS(745), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(745), + [sym_super] = ACTIONS(745), + [sym_crate] = ACTIONS(745), + [sym_metavariable] = ACTIONS(747), + [sym__raw_string_literal_start] = ACTIONS(747), + [sym_float_literal] = ACTIONS(747), }, [137] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1618), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), [sym_line_comment] = STATE(137), [sym_block_comment] = STATE(137), - [aux_sym_enum_variant_list_repeat1] = STATE(213), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(749), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [sym_identifier] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(751), + [anon_sym_RBRACK] = ACTIONS(751), + [anon_sym_LBRACE] = ACTIONS(751), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_EQ_GT] = ACTIONS(751), + [anon_sym_COLON] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(749), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(749), + [anon_sym_QMARK] = ACTIONS(751), + [anon_sym_u8] = ACTIONS(749), + [anon_sym_i8] = ACTIONS(749), + [anon_sym_u16] = ACTIONS(749), + [anon_sym_i16] = ACTIONS(749), + [anon_sym_u32] = ACTIONS(749), + [anon_sym_i32] = ACTIONS(749), + [anon_sym_u64] = ACTIONS(749), + [anon_sym_i64] = ACTIONS(749), + [anon_sym_u128] = ACTIONS(749), + [anon_sym_i128] = ACTIONS(749), + [anon_sym_isize] = ACTIONS(749), + [anon_sym_usize] = ACTIONS(749), + [anon_sym_f32] = ACTIONS(749), + [anon_sym_f64] = ACTIONS(749), + [anon_sym_bool] = ACTIONS(749), + [anon_sym_str] = ACTIONS(749), + [anon_sym_char] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(749), + [anon_sym_CARET] = ACTIONS(749), + [anon_sym_BANG] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(751), + [anon_sym_LT_LT] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(751), + [anon_sym_DASH_EQ] = ACTIONS(751), + [anon_sym_STAR_EQ] = ACTIONS(751), + [anon_sym_SLASH_EQ] = ACTIONS(751), + [anon_sym_PERCENT_EQ] = ACTIONS(751), + [anon_sym_CARET_EQ] = ACTIONS(751), + [anon_sym_AMP_EQ] = ACTIONS(751), + [anon_sym_PIPE_EQ] = ACTIONS(751), + [anon_sym_LT_LT_EQ] = ACTIONS(751), + [anon_sym_GT_GT_EQ] = ACTIONS(751), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(751), + [anon_sym_BANG_EQ] = ACTIONS(751), + [anon_sym_GT] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_GT_EQ] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(751), + [anon_sym__] = ACTIONS(749), + [anon_sym_DOT] = ACTIONS(749), + [anon_sym_DOT_DOT] = ACTIONS(749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ] = ACTIONS(751), [anon_sym_COMMA] = ACTIONS(751), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_COLON_COLON] = ACTIONS(751), + [anon_sym_DASH_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(749), + [anon_sym_as] = ACTIONS(749), + [anon_sym_async] = ACTIONS(749), + [anon_sym_await] = ACTIONS(749), + [anon_sym_break] = ACTIONS(749), + [anon_sym_const] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(749), + [anon_sym_default] = ACTIONS(749), + [anon_sym_enum] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(749), + [anon_sym_for] = ACTIONS(749), + [anon_sym_if] = ACTIONS(749), + [anon_sym_impl] = ACTIONS(749), + [anon_sym_let] = ACTIONS(749), + [anon_sym_loop] = ACTIONS(749), + [anon_sym_match] = ACTIONS(749), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_pub] = ACTIONS(749), + [anon_sym_return] = ACTIONS(749), + [anon_sym_static] = ACTIONS(749), + [anon_sym_struct] = ACTIONS(749), + [anon_sym_trait] = ACTIONS(749), + [anon_sym_type] = ACTIONS(749), + [anon_sym_union] = ACTIONS(749), + [anon_sym_unsafe] = ACTIONS(749), + [anon_sym_use] = ACTIONS(749), + [anon_sym_where] = ACTIONS(749), + [anon_sym_while] = ACTIONS(749), + [sym_mutable_specifier] = ACTIONS(749), + [sym_integer_literal] = ACTIONS(751), + [aux_sym_string_literal_token1] = ACTIONS(751), + [sym_char_literal] = ACTIONS(751), + [anon_sym_true] = ACTIONS(749), + [anon_sym_false] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(749), + [sym_super] = ACTIONS(749), + [sym_crate] = ACTIONS(749), + [sym_metavariable] = ACTIONS(751), + [sym__raw_string_literal_start] = ACTIONS(751), + [sym_float_literal] = ACTIONS(751), }, [138] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1545), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), [sym_line_comment] = STATE(138), [sym_block_comment] = STATE(138), - [aux_sym_enum_variant_list_repeat1] = STATE(140), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), + [sym_identifier] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(755), [anon_sym_RBRACK] = ACTIONS(755), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(757), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_EQ_GT] = ACTIONS(755), + [anon_sym_COLON] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(753), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_u8] = ACTIONS(753), + [anon_sym_i8] = ACTIONS(753), + [anon_sym_u16] = ACTIONS(753), + [anon_sym_i16] = ACTIONS(753), + [anon_sym_u32] = ACTIONS(753), + [anon_sym_i32] = ACTIONS(753), + [anon_sym_u64] = ACTIONS(753), + [anon_sym_i64] = ACTIONS(753), + [anon_sym_u128] = ACTIONS(753), + [anon_sym_i128] = ACTIONS(753), + [anon_sym_isize] = ACTIONS(753), + [anon_sym_usize] = ACTIONS(753), + [anon_sym_f32] = ACTIONS(753), + [anon_sym_f64] = ACTIONS(753), + [anon_sym_bool] = ACTIONS(753), + [anon_sym_str] = ACTIONS(753), + [anon_sym_char] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_PERCENT] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_LT_LT] = ACTIONS(753), + [anon_sym_GT_GT] = ACTIONS(753), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_AMP_EQ] = ACTIONS(755), + [anon_sym_PIPE_EQ] = ACTIONS(755), + [anon_sym_LT_LT_EQ] = ACTIONS(755), + [anon_sym_GT_GT_EQ] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(753), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_AT] = ACTIONS(755), + [anon_sym__] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(753), + [anon_sym_DOT_DOT] = ACTIONS(753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(755), + [anon_sym_DASH_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_as] = ACTIONS(753), + [anon_sym_async] = ACTIONS(753), + [anon_sym_await] = ACTIONS(753), + [anon_sym_break] = ACTIONS(753), + [anon_sym_const] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(753), + [anon_sym_default] = ACTIONS(753), + [anon_sym_enum] = ACTIONS(753), + [anon_sym_fn] = ACTIONS(753), + [anon_sym_for] = ACTIONS(753), + [anon_sym_if] = ACTIONS(753), + [anon_sym_impl] = ACTIONS(753), + [anon_sym_let] = ACTIONS(753), + [anon_sym_loop] = ACTIONS(753), + [anon_sym_match] = ACTIONS(753), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_pub] = ACTIONS(753), + [anon_sym_return] = ACTIONS(753), + [anon_sym_static] = ACTIONS(753), + [anon_sym_struct] = ACTIONS(753), + [anon_sym_trait] = ACTIONS(753), + [anon_sym_type] = ACTIONS(753), + [anon_sym_union] = ACTIONS(753), + [anon_sym_unsafe] = ACTIONS(753), + [anon_sym_use] = ACTIONS(753), + [anon_sym_where] = ACTIONS(753), + [anon_sym_while] = ACTIONS(753), + [sym_mutable_specifier] = ACTIONS(753), + [sym_integer_literal] = ACTIONS(755), + [aux_sym_string_literal_token1] = ACTIONS(755), + [sym_char_literal] = ACTIONS(755), + [anon_sym_true] = ACTIONS(753), + [anon_sym_false] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(753), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym_metavariable] = ACTIONS(755), + [sym__raw_string_literal_start] = ACTIONS(755), + [sym_float_literal] = ACTIONS(755), }, [139] = { [sym_line_comment] = STATE(139), [sym_block_comment] = STATE(139), - [sym_identifier] = ACTIONS(759), - [anon_sym_SEMI] = ACTIONS(761), - [anon_sym_LPAREN] = ACTIONS(761), - [anon_sym_RPAREN] = ACTIONS(761), - [anon_sym_LBRACK] = ACTIONS(761), - [anon_sym_RBRACK] = ACTIONS(761), - [anon_sym_LBRACE] = ACTIONS(761), - [anon_sym_RBRACE] = ACTIONS(761), - [anon_sym_EQ_GT] = ACTIONS(761), - [anon_sym_COLON] = ACTIONS(759), - [anon_sym_DOLLAR] = ACTIONS(759), - [anon_sym_PLUS] = ACTIONS(759), - [anon_sym_STAR] = ACTIONS(759), - [anon_sym_QMARK] = ACTIONS(761), - [anon_sym_u8] = ACTIONS(759), - [anon_sym_i8] = ACTIONS(759), - [anon_sym_u16] = ACTIONS(759), - [anon_sym_i16] = ACTIONS(759), - [anon_sym_u32] = ACTIONS(759), - [anon_sym_i32] = ACTIONS(759), - [anon_sym_u64] = ACTIONS(759), - [anon_sym_i64] = ACTIONS(759), - [anon_sym_u128] = ACTIONS(759), - [anon_sym_i128] = ACTIONS(759), - [anon_sym_isize] = ACTIONS(759), - [anon_sym_usize] = ACTIONS(759), - [anon_sym_f32] = ACTIONS(759), - [anon_sym_f64] = ACTIONS(759), - [anon_sym_bool] = ACTIONS(759), - [anon_sym_str] = ACTIONS(759), - [anon_sym_char] = ACTIONS(759), - [anon_sym_DASH] = ACTIONS(759), - [anon_sym_SLASH] = ACTIONS(759), - [anon_sym_PERCENT] = ACTIONS(759), - [anon_sym_CARET] = ACTIONS(759), - [anon_sym_BANG] = ACTIONS(759), - [anon_sym_AMP] = ACTIONS(759), - [anon_sym_PIPE] = ACTIONS(759), - [anon_sym_AMP_AMP] = ACTIONS(761), - [anon_sym_PIPE_PIPE] = ACTIONS(761), - [anon_sym_LT_LT] = ACTIONS(759), - [anon_sym_GT_GT] = ACTIONS(759), - [anon_sym_PLUS_EQ] = ACTIONS(761), - [anon_sym_DASH_EQ] = ACTIONS(761), - [anon_sym_STAR_EQ] = ACTIONS(761), - [anon_sym_SLASH_EQ] = ACTIONS(761), - [anon_sym_PERCENT_EQ] = ACTIONS(761), - [anon_sym_CARET_EQ] = ACTIONS(761), - [anon_sym_AMP_EQ] = ACTIONS(761), - [anon_sym_PIPE_EQ] = ACTIONS(761), - [anon_sym_LT_LT_EQ] = ACTIONS(761), - [anon_sym_GT_GT_EQ] = ACTIONS(761), - [anon_sym_EQ] = ACTIONS(759), - [anon_sym_EQ_EQ] = ACTIONS(761), - [anon_sym_BANG_EQ] = ACTIONS(761), - [anon_sym_GT] = ACTIONS(759), - [anon_sym_LT] = ACTIONS(759), - [anon_sym_GT_EQ] = ACTIONS(761), - [anon_sym_LT_EQ] = ACTIONS(761), - [anon_sym_AT] = ACTIONS(761), - [anon_sym__] = ACTIONS(759), - [anon_sym_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT] = ACTIONS(759), - [anon_sym_DOT_DOT_DOT] = ACTIONS(761), - [anon_sym_DOT_DOT_EQ] = ACTIONS(761), - [anon_sym_COMMA] = ACTIONS(761), - [anon_sym_COLON_COLON] = ACTIONS(761), - [anon_sym_DASH_GT] = ACTIONS(761), - [anon_sym_POUND] = ACTIONS(761), - [anon_sym_SQUOTE] = ACTIONS(759), - [anon_sym_as] = ACTIONS(759), - [anon_sym_async] = ACTIONS(759), - [anon_sym_await] = ACTIONS(759), - [anon_sym_break] = ACTIONS(759), - [anon_sym_const] = ACTIONS(759), - [anon_sym_continue] = ACTIONS(759), - [anon_sym_default] = ACTIONS(759), - [anon_sym_enum] = ACTIONS(759), - [anon_sym_fn] = ACTIONS(759), - [anon_sym_for] = ACTIONS(759), - [anon_sym_if] = ACTIONS(759), - [anon_sym_impl] = ACTIONS(759), - [anon_sym_let] = ACTIONS(759), - [anon_sym_loop] = ACTIONS(759), - [anon_sym_match] = ACTIONS(759), - [anon_sym_mod] = ACTIONS(759), - [anon_sym_pub] = ACTIONS(759), - [anon_sym_return] = ACTIONS(759), - [anon_sym_static] = ACTIONS(759), - [anon_sym_struct] = ACTIONS(759), - [anon_sym_trait] = ACTIONS(759), - [anon_sym_type] = ACTIONS(759), - [anon_sym_union] = ACTIONS(759), - [anon_sym_unsafe] = ACTIONS(759), - [anon_sym_use] = ACTIONS(759), - [anon_sym_where] = ACTIONS(759), - [anon_sym_while] = ACTIONS(759), - [sym_mutable_specifier] = ACTIONS(759), - [sym_integer_literal] = ACTIONS(761), - [aux_sym_string_literal_token1] = ACTIONS(761), - [sym_char_literal] = ACTIONS(761), - [anon_sym_true] = ACTIONS(759), - [anon_sym_false] = ACTIONS(759), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(759), - [sym_super] = ACTIONS(759), - [sym_crate] = ACTIONS(759), - [sym_metavariable] = ACTIONS(761), - [sym__raw_string_literal_start] = ACTIONS(761), - [sym_float_literal] = ACTIONS(761), + [sym_identifier] = ACTIONS(757), + [anon_sym_SEMI] = ACTIONS(759), + [anon_sym_LPAREN] = ACTIONS(759), + [anon_sym_RPAREN] = ACTIONS(759), + [anon_sym_LBRACK] = ACTIONS(759), + [anon_sym_RBRACK] = ACTIONS(759), + [anon_sym_LBRACE] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(759), + [anon_sym_EQ_GT] = ACTIONS(759), + [anon_sym_COLON] = ACTIONS(757), + [anon_sym_DOLLAR] = ACTIONS(757), + [anon_sym_PLUS] = ACTIONS(757), + [anon_sym_STAR] = ACTIONS(757), + [anon_sym_QMARK] = ACTIONS(759), + [anon_sym_u8] = ACTIONS(757), + [anon_sym_i8] = ACTIONS(757), + [anon_sym_u16] = ACTIONS(757), + [anon_sym_i16] = ACTIONS(757), + [anon_sym_u32] = ACTIONS(757), + [anon_sym_i32] = ACTIONS(757), + [anon_sym_u64] = ACTIONS(757), + [anon_sym_i64] = ACTIONS(757), + [anon_sym_u128] = ACTIONS(757), + [anon_sym_i128] = ACTIONS(757), + [anon_sym_isize] = ACTIONS(757), + [anon_sym_usize] = ACTIONS(757), + [anon_sym_f32] = ACTIONS(757), + [anon_sym_f64] = ACTIONS(757), + [anon_sym_bool] = ACTIONS(757), + [anon_sym_str] = ACTIONS(757), + [anon_sym_char] = ACTIONS(757), + [anon_sym_DASH] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(757), + [anon_sym_PERCENT] = ACTIONS(757), + [anon_sym_CARET] = ACTIONS(757), + [anon_sym_BANG] = ACTIONS(757), + [anon_sym_AMP] = ACTIONS(757), + [anon_sym_PIPE] = ACTIONS(757), + [anon_sym_AMP_AMP] = ACTIONS(759), + [anon_sym_PIPE_PIPE] = ACTIONS(759), + [anon_sym_LT_LT] = ACTIONS(757), + [anon_sym_GT_GT] = ACTIONS(757), + [anon_sym_PLUS_EQ] = ACTIONS(759), + [anon_sym_DASH_EQ] = ACTIONS(759), + [anon_sym_STAR_EQ] = ACTIONS(759), + [anon_sym_SLASH_EQ] = ACTIONS(759), + [anon_sym_PERCENT_EQ] = ACTIONS(759), + [anon_sym_CARET_EQ] = ACTIONS(759), + [anon_sym_AMP_EQ] = ACTIONS(759), + [anon_sym_PIPE_EQ] = ACTIONS(759), + [anon_sym_LT_LT_EQ] = ACTIONS(759), + [anon_sym_GT_GT_EQ] = ACTIONS(759), + [anon_sym_EQ] = ACTIONS(757), + [anon_sym_EQ_EQ] = ACTIONS(759), + [anon_sym_BANG_EQ] = ACTIONS(759), + [anon_sym_GT] = ACTIONS(757), + [anon_sym_LT] = ACTIONS(757), + [anon_sym_GT_EQ] = ACTIONS(759), + [anon_sym_LT_EQ] = ACTIONS(759), + [anon_sym_AT] = ACTIONS(759), + [anon_sym__] = ACTIONS(757), + [anon_sym_DOT] = ACTIONS(757), + [anon_sym_DOT_DOT] = ACTIONS(757), + [anon_sym_DOT_DOT_DOT] = ACTIONS(759), + [anon_sym_DOT_DOT_EQ] = ACTIONS(759), + [anon_sym_COMMA] = ACTIONS(759), + [anon_sym_COLON_COLON] = ACTIONS(759), + [anon_sym_DASH_GT] = ACTIONS(759), + [anon_sym_POUND] = ACTIONS(759), + [anon_sym_SQUOTE] = ACTIONS(757), + [anon_sym_as] = ACTIONS(757), + [anon_sym_async] = ACTIONS(757), + [anon_sym_await] = ACTIONS(757), + [anon_sym_break] = ACTIONS(757), + [anon_sym_const] = ACTIONS(757), + [anon_sym_continue] = ACTIONS(757), + [anon_sym_default] = ACTIONS(757), + [anon_sym_enum] = ACTIONS(757), + [anon_sym_fn] = ACTIONS(757), + [anon_sym_for] = ACTIONS(757), + [anon_sym_if] = ACTIONS(757), + [anon_sym_impl] = ACTIONS(757), + [anon_sym_let] = ACTIONS(757), + [anon_sym_loop] = ACTIONS(757), + [anon_sym_match] = ACTIONS(757), + [anon_sym_mod] = ACTIONS(757), + [anon_sym_pub] = ACTIONS(757), + [anon_sym_return] = ACTIONS(757), + [anon_sym_static] = ACTIONS(757), + [anon_sym_struct] = ACTIONS(757), + [anon_sym_trait] = ACTIONS(757), + [anon_sym_type] = ACTIONS(757), + [anon_sym_union] = ACTIONS(757), + [anon_sym_unsafe] = ACTIONS(757), + [anon_sym_use] = ACTIONS(757), + [anon_sym_where] = ACTIONS(757), + [anon_sym_while] = ACTIONS(757), + [sym_mutable_specifier] = ACTIONS(757), + [sym_integer_literal] = ACTIONS(759), + [aux_sym_string_literal_token1] = ACTIONS(759), + [sym_char_literal] = ACTIONS(759), + [anon_sym_true] = ACTIONS(757), + [anon_sym_false] = ACTIONS(757), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(757), + [sym_super] = ACTIONS(757), + [sym_crate] = ACTIONS(757), + [sym_metavariable] = ACTIONS(759), + [sym__raw_string_literal_start] = ACTIONS(759), + [sym_float_literal] = ACTIONS(759), }, [140] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1553), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1628), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(140), [sym_block_comment] = STATE(140), - [aux_sym_enum_variant_list_repeat1] = STATE(160), + [aux_sym_enum_variant_list_repeat1] = STATE(213), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(761), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(763), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -32386,9 +32407,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(765), + [anon_sym_COMMA] = ACTIONS(763), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -32422,119 +32443,119 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [141] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1574), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), [sym_line_comment] = STATE(141), [sym_block_comment] = STATE(141), - [aux_sym_enum_variant_list_repeat1] = STATE(209), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(767), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [sym_identifier] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_RBRACK] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_EQ_GT] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(767), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_u8] = ACTIONS(767), + [anon_sym_i8] = ACTIONS(767), + [anon_sym_u16] = ACTIONS(767), + [anon_sym_i16] = ACTIONS(767), + [anon_sym_u32] = ACTIONS(767), + [anon_sym_i32] = ACTIONS(767), + [anon_sym_u64] = ACTIONS(767), + [anon_sym_i64] = ACTIONS(767), + [anon_sym_u128] = ACTIONS(767), + [anon_sym_i128] = ACTIONS(767), + [anon_sym_isize] = ACTIONS(767), + [anon_sym_usize] = ACTIONS(767), + [anon_sym_f32] = ACTIONS(767), + [anon_sym_f64] = ACTIONS(767), + [anon_sym_bool] = ACTIONS(767), + [anon_sym_str] = ACTIONS(767), + [anon_sym_char] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_PERCENT] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_LT_LT] = ACTIONS(767), + [anon_sym_GT_GT] = ACTIONS(767), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [anon_sym__] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(767), + [anon_sym_DOT_DOT] = ACTIONS(767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), [anon_sym_COMMA] = ACTIONS(769), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [anon_sym_COLON_COLON] = ACTIONS(769), + [anon_sym_DASH_GT] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(769), + [anon_sym_SQUOTE] = ACTIONS(767), + [anon_sym_as] = ACTIONS(767), + [anon_sym_async] = ACTIONS(767), + [anon_sym_await] = ACTIONS(767), + [anon_sym_break] = ACTIONS(767), + [anon_sym_const] = ACTIONS(767), + [anon_sym_continue] = ACTIONS(767), + [anon_sym_default] = ACTIONS(767), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_fn] = ACTIONS(767), + [anon_sym_for] = ACTIONS(767), + [anon_sym_if] = ACTIONS(767), + [anon_sym_impl] = ACTIONS(767), + [anon_sym_let] = ACTIONS(767), + [anon_sym_loop] = ACTIONS(767), + [anon_sym_match] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(767), + [anon_sym_pub] = ACTIONS(767), + [anon_sym_return] = ACTIONS(767), + [anon_sym_static] = ACTIONS(767), + [anon_sym_struct] = ACTIONS(767), + [anon_sym_trait] = ACTIONS(767), + [anon_sym_type] = ACTIONS(767), + [anon_sym_union] = ACTIONS(767), + [anon_sym_unsafe] = ACTIONS(767), + [anon_sym_use] = ACTIONS(767), + [anon_sym_where] = ACTIONS(767), + [anon_sym_while] = ACTIONS(767), + [sym_mutable_specifier] = ACTIONS(767), + [sym_integer_literal] = ACTIONS(769), + [aux_sym_string_literal_token1] = ACTIONS(769), + [sym_char_literal] = ACTIONS(769), + [anon_sym_true] = ACTIONS(767), + [anon_sym_false] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_crate] = ACTIONS(767), + [sym_metavariable] = ACTIONS(769), + [sym__raw_string_literal_start] = ACTIONS(769), + [sym_float_literal] = ACTIONS(769), }, [142] = { [sym_line_comment] = STATE(142), @@ -32654,135 +32675,826 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [143] = { [sym_line_comment] = STATE(143), [sym_block_comment] = STATE(143), - [sym_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_RBRACK] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_EQ_GT] = ACTIONS(733), - [anon_sym_COLON] = ACTIONS(731), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_STAR] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(733), - [anon_sym_u8] = ACTIONS(731), - [anon_sym_i8] = ACTIONS(731), - [anon_sym_u16] = ACTIONS(731), - [anon_sym_i16] = ACTIONS(731), - [anon_sym_u32] = ACTIONS(731), - [anon_sym_i32] = ACTIONS(731), - [anon_sym_u64] = ACTIONS(731), - [anon_sym_i64] = ACTIONS(731), - [anon_sym_u128] = ACTIONS(731), - [anon_sym_i128] = ACTIONS(731), - [anon_sym_isize] = ACTIONS(731), - [anon_sym_usize] = ACTIONS(731), - [anon_sym_f32] = ACTIONS(731), - [anon_sym_f64] = ACTIONS(731), - [anon_sym_bool] = ACTIONS(731), - [anon_sym_str] = ACTIONS(731), - [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_CARET] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(731), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_AT] = ACTIONS(733), - [anon_sym__] = ACTIONS(731), - [anon_sym_DOT] = ACTIONS(731), - [anon_sym_DOT_DOT] = ACTIONS(731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(733), - [anon_sym_COLON_COLON] = ACTIONS(733), - [anon_sym_DASH_GT] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(733), - [anon_sym_SQUOTE] = ACTIONS(731), - [anon_sym_as] = ACTIONS(731), - [anon_sym_async] = ACTIONS(731), - [anon_sym_await] = ACTIONS(731), - [anon_sym_break] = ACTIONS(731), - [anon_sym_const] = ACTIONS(731), - [anon_sym_continue] = ACTIONS(731), - [anon_sym_default] = ACTIONS(731), - [anon_sym_enum] = ACTIONS(731), - [anon_sym_fn] = ACTIONS(731), - [anon_sym_for] = ACTIONS(731), - [anon_sym_if] = ACTIONS(731), - [anon_sym_impl] = ACTIONS(731), - [anon_sym_let] = ACTIONS(731), - [anon_sym_loop] = ACTIONS(731), - [anon_sym_match] = ACTIONS(731), - [anon_sym_mod] = ACTIONS(731), - [anon_sym_pub] = ACTIONS(731), - [anon_sym_return] = ACTIONS(731), - [anon_sym_static] = ACTIONS(731), - [anon_sym_struct] = ACTIONS(731), - [anon_sym_trait] = ACTIONS(731), - [anon_sym_type] = ACTIONS(731), - [anon_sym_union] = ACTIONS(731), - [anon_sym_unsafe] = ACTIONS(731), - [anon_sym_use] = ACTIONS(731), - [anon_sym_where] = ACTIONS(731), - [anon_sym_while] = ACTIONS(731), - [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(733), - [aux_sym_string_literal_token1] = ACTIONS(733), - [sym_char_literal] = ACTIONS(733), - [anon_sym_true] = ACTIONS(731), - [anon_sym_false] = ACTIONS(731), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(731), - [sym_super] = ACTIONS(731), - [sym_crate] = ACTIONS(731), - [sym_metavariable] = ACTIONS(733), - [sym__raw_string_literal_start] = ACTIONS(733), - [sym_float_literal] = ACTIONS(733), + [sym_identifier] = ACTIONS(775), + [anon_sym_SEMI] = ACTIONS(777), + [anon_sym_LPAREN] = ACTIONS(777), + [anon_sym_RPAREN] = ACTIONS(777), + [anon_sym_LBRACK] = ACTIONS(777), + [anon_sym_RBRACK] = ACTIONS(777), + [anon_sym_LBRACE] = ACTIONS(777), + [anon_sym_RBRACE] = ACTIONS(777), + [anon_sym_EQ_GT] = ACTIONS(777), + [anon_sym_COLON] = ACTIONS(775), + [anon_sym_DOLLAR] = ACTIONS(775), + [anon_sym_PLUS] = ACTIONS(775), + [anon_sym_STAR] = ACTIONS(775), + [anon_sym_QMARK] = ACTIONS(777), + [anon_sym_u8] = ACTIONS(775), + [anon_sym_i8] = ACTIONS(775), + [anon_sym_u16] = ACTIONS(775), + [anon_sym_i16] = ACTIONS(775), + [anon_sym_u32] = ACTIONS(775), + [anon_sym_i32] = ACTIONS(775), + [anon_sym_u64] = ACTIONS(775), + [anon_sym_i64] = ACTIONS(775), + [anon_sym_u128] = ACTIONS(775), + [anon_sym_i128] = ACTIONS(775), + [anon_sym_isize] = ACTIONS(775), + [anon_sym_usize] = ACTIONS(775), + [anon_sym_f32] = ACTIONS(775), + [anon_sym_f64] = ACTIONS(775), + [anon_sym_bool] = ACTIONS(775), + [anon_sym_str] = ACTIONS(775), + [anon_sym_char] = ACTIONS(775), + [anon_sym_DASH] = ACTIONS(775), + [anon_sym_SLASH] = ACTIONS(775), + [anon_sym_PERCENT] = ACTIONS(775), + [anon_sym_CARET] = ACTIONS(775), + [anon_sym_BANG] = ACTIONS(775), + [anon_sym_AMP] = ACTIONS(775), + [anon_sym_PIPE] = ACTIONS(775), + [anon_sym_AMP_AMP] = ACTIONS(777), + [anon_sym_PIPE_PIPE] = ACTIONS(777), + [anon_sym_LT_LT] = ACTIONS(775), + [anon_sym_GT_GT] = ACTIONS(775), + [anon_sym_PLUS_EQ] = ACTIONS(777), + [anon_sym_DASH_EQ] = ACTIONS(777), + [anon_sym_STAR_EQ] = ACTIONS(777), + [anon_sym_SLASH_EQ] = ACTIONS(777), + [anon_sym_PERCENT_EQ] = ACTIONS(777), + [anon_sym_CARET_EQ] = ACTIONS(777), + [anon_sym_AMP_EQ] = ACTIONS(777), + [anon_sym_PIPE_EQ] = ACTIONS(777), + [anon_sym_LT_LT_EQ] = ACTIONS(777), + [anon_sym_GT_GT_EQ] = ACTIONS(777), + [anon_sym_EQ] = ACTIONS(775), + [anon_sym_EQ_EQ] = ACTIONS(777), + [anon_sym_BANG_EQ] = ACTIONS(777), + [anon_sym_GT] = ACTIONS(775), + [anon_sym_LT] = ACTIONS(775), + [anon_sym_GT_EQ] = ACTIONS(777), + [anon_sym_LT_EQ] = ACTIONS(777), + [anon_sym_AT] = ACTIONS(777), + [anon_sym__] = ACTIONS(775), + [anon_sym_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT] = ACTIONS(775), + [anon_sym_DOT_DOT_DOT] = ACTIONS(777), + [anon_sym_DOT_DOT_EQ] = ACTIONS(777), + [anon_sym_COMMA] = ACTIONS(777), + [anon_sym_COLON_COLON] = ACTIONS(777), + [anon_sym_DASH_GT] = ACTIONS(777), + [anon_sym_POUND] = ACTIONS(777), + [anon_sym_SQUOTE] = ACTIONS(775), + [anon_sym_as] = ACTIONS(775), + [anon_sym_async] = ACTIONS(775), + [anon_sym_await] = ACTIONS(775), + [anon_sym_break] = ACTIONS(775), + [anon_sym_const] = ACTIONS(775), + [anon_sym_continue] = ACTIONS(775), + [anon_sym_default] = ACTIONS(775), + [anon_sym_enum] = ACTIONS(775), + [anon_sym_fn] = ACTIONS(775), + [anon_sym_for] = ACTIONS(775), + [anon_sym_if] = ACTIONS(775), + [anon_sym_impl] = ACTIONS(775), + [anon_sym_let] = ACTIONS(775), + [anon_sym_loop] = ACTIONS(775), + [anon_sym_match] = ACTIONS(775), + [anon_sym_mod] = ACTIONS(775), + [anon_sym_pub] = ACTIONS(775), + [anon_sym_return] = ACTIONS(775), + [anon_sym_static] = ACTIONS(775), + [anon_sym_struct] = ACTIONS(775), + [anon_sym_trait] = ACTIONS(775), + [anon_sym_type] = ACTIONS(775), + [anon_sym_union] = ACTIONS(775), + [anon_sym_unsafe] = ACTIONS(775), + [anon_sym_use] = ACTIONS(775), + [anon_sym_where] = ACTIONS(775), + [anon_sym_while] = ACTIONS(775), + [sym_mutable_specifier] = ACTIONS(775), + [sym_integer_literal] = ACTIONS(777), + [aux_sym_string_literal_token1] = ACTIONS(777), + [sym_char_literal] = ACTIONS(777), + [anon_sym_true] = ACTIONS(775), + [anon_sym_false] = ACTIONS(775), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(775), + [sym_super] = ACTIONS(775), + [sym_crate] = ACTIONS(775), + [sym_metavariable] = ACTIONS(777), + [sym__raw_string_literal_start] = ACTIONS(777), + [sym_float_literal] = ACTIONS(777), }, [144] = { [sym_line_comment] = STATE(144), [sym_block_comment] = STATE(144), + [sym_identifier] = ACTIONS(779), + [anon_sym_SEMI] = ACTIONS(781), + [anon_sym_LPAREN] = ACTIONS(781), + [anon_sym_RPAREN] = ACTIONS(781), + [anon_sym_LBRACK] = ACTIONS(781), + [anon_sym_RBRACK] = ACTIONS(781), + [anon_sym_LBRACE] = ACTIONS(781), + [anon_sym_RBRACE] = ACTIONS(781), + [anon_sym_EQ_GT] = ACTIONS(781), + [anon_sym_COLON] = ACTIONS(779), + [anon_sym_DOLLAR] = ACTIONS(779), + [anon_sym_PLUS] = ACTIONS(779), + [anon_sym_STAR] = ACTIONS(779), + [anon_sym_QMARK] = ACTIONS(781), + [anon_sym_u8] = ACTIONS(779), + [anon_sym_i8] = ACTIONS(779), + [anon_sym_u16] = ACTIONS(779), + [anon_sym_i16] = ACTIONS(779), + [anon_sym_u32] = ACTIONS(779), + [anon_sym_i32] = ACTIONS(779), + [anon_sym_u64] = ACTIONS(779), + [anon_sym_i64] = ACTIONS(779), + [anon_sym_u128] = ACTIONS(779), + [anon_sym_i128] = ACTIONS(779), + [anon_sym_isize] = ACTIONS(779), + [anon_sym_usize] = ACTIONS(779), + [anon_sym_f32] = ACTIONS(779), + [anon_sym_f64] = ACTIONS(779), + [anon_sym_bool] = ACTIONS(779), + [anon_sym_str] = ACTIONS(779), + [anon_sym_char] = ACTIONS(779), + [anon_sym_DASH] = ACTIONS(779), + [anon_sym_SLASH] = ACTIONS(779), + [anon_sym_PERCENT] = ACTIONS(779), + [anon_sym_CARET] = ACTIONS(779), + [anon_sym_BANG] = ACTIONS(779), + [anon_sym_AMP] = ACTIONS(779), + [anon_sym_PIPE] = ACTIONS(779), + [anon_sym_AMP_AMP] = ACTIONS(781), + [anon_sym_PIPE_PIPE] = ACTIONS(781), + [anon_sym_LT_LT] = ACTIONS(779), + [anon_sym_GT_GT] = ACTIONS(779), + [anon_sym_PLUS_EQ] = ACTIONS(781), + [anon_sym_DASH_EQ] = ACTIONS(781), + [anon_sym_STAR_EQ] = ACTIONS(781), + [anon_sym_SLASH_EQ] = ACTIONS(781), + [anon_sym_PERCENT_EQ] = ACTIONS(781), + [anon_sym_CARET_EQ] = ACTIONS(781), + [anon_sym_AMP_EQ] = ACTIONS(781), + [anon_sym_PIPE_EQ] = ACTIONS(781), + [anon_sym_LT_LT_EQ] = ACTIONS(781), + [anon_sym_GT_GT_EQ] = ACTIONS(781), + [anon_sym_EQ] = ACTIONS(779), + [anon_sym_EQ_EQ] = ACTIONS(781), + [anon_sym_BANG_EQ] = ACTIONS(781), + [anon_sym_GT] = ACTIONS(779), + [anon_sym_LT] = ACTIONS(779), + [anon_sym_GT_EQ] = ACTIONS(781), + [anon_sym_LT_EQ] = ACTIONS(781), + [anon_sym_AT] = ACTIONS(781), + [anon_sym__] = ACTIONS(779), + [anon_sym_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT] = ACTIONS(779), + [anon_sym_DOT_DOT_DOT] = ACTIONS(781), + [anon_sym_DOT_DOT_EQ] = ACTIONS(781), + [anon_sym_COMMA] = ACTIONS(781), + [anon_sym_COLON_COLON] = ACTIONS(781), + [anon_sym_DASH_GT] = ACTIONS(781), + [anon_sym_POUND] = ACTIONS(781), + [anon_sym_SQUOTE] = ACTIONS(779), + [anon_sym_as] = ACTIONS(779), + [anon_sym_async] = ACTIONS(779), + [anon_sym_await] = ACTIONS(779), + [anon_sym_break] = ACTIONS(779), + [anon_sym_const] = ACTIONS(779), + [anon_sym_continue] = ACTIONS(779), + [anon_sym_default] = ACTIONS(779), + [anon_sym_enum] = ACTIONS(779), + [anon_sym_fn] = ACTIONS(779), + [anon_sym_for] = ACTIONS(779), + [anon_sym_if] = ACTIONS(779), + [anon_sym_impl] = ACTIONS(779), + [anon_sym_let] = ACTIONS(779), + [anon_sym_loop] = ACTIONS(779), + [anon_sym_match] = ACTIONS(779), + [anon_sym_mod] = ACTIONS(779), + [anon_sym_pub] = ACTIONS(779), + [anon_sym_return] = ACTIONS(779), + [anon_sym_static] = ACTIONS(779), + [anon_sym_struct] = ACTIONS(779), + [anon_sym_trait] = ACTIONS(779), + [anon_sym_type] = ACTIONS(779), + [anon_sym_union] = ACTIONS(779), + [anon_sym_unsafe] = ACTIONS(779), + [anon_sym_use] = ACTIONS(779), + [anon_sym_where] = ACTIONS(779), + [anon_sym_while] = ACTIONS(779), + [sym_mutable_specifier] = ACTIONS(779), + [sym_integer_literal] = ACTIONS(781), + [aux_sym_string_literal_token1] = ACTIONS(781), + [sym_char_literal] = ACTIONS(781), + [anon_sym_true] = ACTIONS(779), + [anon_sym_false] = ACTIONS(779), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(779), + [sym_super] = ACTIONS(779), + [sym_crate] = ACTIONS(779), + [sym_metavariable] = ACTIONS(781), + [sym__raw_string_literal_start] = ACTIONS(781), + [sym_float_literal] = ACTIONS(781), + }, + [145] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1632), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(145), + [sym_block_comment] = STATE(145), + [aux_sym_enum_variant_list_repeat1] = STATE(209), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(783), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(785), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [146] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1578), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(146), + [sym_block_comment] = STATE(146), + [aux_sym_enum_variant_list_repeat1] = STATE(1002), + [sym_identifier] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_RBRACK] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_u8] = ACTIONS(804), + [anon_sym_i8] = ACTIONS(804), + [anon_sym_u16] = ACTIONS(804), + [anon_sym_i16] = ACTIONS(804), + [anon_sym_u32] = ACTIONS(804), + [anon_sym_i32] = ACTIONS(804), + [anon_sym_u64] = ACTIONS(804), + [anon_sym_i64] = ACTIONS(804), + [anon_sym_u128] = ACTIONS(804), + [anon_sym_i128] = ACTIONS(804), + [anon_sym_isize] = ACTIONS(804), + [anon_sym_usize] = ACTIONS(804), + [anon_sym_f32] = ACTIONS(804), + [anon_sym_f64] = ACTIONS(804), + [anon_sym_bool] = ACTIONS(804), + [anon_sym_str] = ACTIONS(804), + [anon_sym_char] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(813), + [anon_sym_DOT_DOT] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_COLON_COLON] = ACTIONS(819), + [anon_sym_POUND] = ACTIONS(822), + [anon_sym_SQUOTE] = ACTIONS(825), + [anon_sym_async] = ACTIONS(828), + [anon_sym_break] = ACTIONS(831), + [anon_sym_const] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(837), + [anon_sym_default] = ACTIONS(840), + [anon_sym_for] = ACTIONS(843), + [anon_sym_if] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(849), + [anon_sym_match] = ACTIONS(852), + [anon_sym_return] = ACTIONS(855), + [anon_sym_static] = ACTIONS(858), + [anon_sym_union] = ACTIONS(840), + [anon_sym_unsafe] = ACTIONS(861), + [anon_sym_while] = ACTIONS(864), + [anon_sym_yield] = ACTIONS(867), + [anon_sym_move] = ACTIONS(870), + [anon_sym_try] = ACTIONS(873), + [sym_integer_literal] = ACTIONS(876), + [aux_sym_string_literal_token1] = ACTIONS(879), + [sym_char_literal] = ACTIONS(876), + [anon_sym_true] = ACTIONS(882), + [anon_sym_false] = ACTIONS(882), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(885), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(891), + [sym__raw_string_literal_start] = ACTIONS(894), + [sym_float_literal] = ACTIONS(876), + }, + [147] = { + [sym_line_comment] = STATE(147), + [sym_block_comment] = STATE(147), + [sym_identifier] = ACTIONS(897), + [anon_sym_SEMI] = ACTIONS(899), + [anon_sym_LPAREN] = ACTIONS(899), + [anon_sym_RPAREN] = ACTIONS(899), + [anon_sym_LBRACK] = ACTIONS(899), + [anon_sym_RBRACK] = ACTIONS(899), + [anon_sym_LBRACE] = ACTIONS(899), + [anon_sym_RBRACE] = ACTIONS(899), + [anon_sym_EQ_GT] = ACTIONS(899), + [anon_sym_COLON] = ACTIONS(897), + [anon_sym_DOLLAR] = ACTIONS(897), + [anon_sym_PLUS] = ACTIONS(897), + [anon_sym_STAR] = ACTIONS(897), + [anon_sym_QMARK] = ACTIONS(899), + [anon_sym_u8] = ACTIONS(897), + [anon_sym_i8] = ACTIONS(897), + [anon_sym_u16] = ACTIONS(897), + [anon_sym_i16] = ACTIONS(897), + [anon_sym_u32] = ACTIONS(897), + [anon_sym_i32] = ACTIONS(897), + [anon_sym_u64] = ACTIONS(897), + [anon_sym_i64] = ACTIONS(897), + [anon_sym_u128] = ACTIONS(897), + [anon_sym_i128] = ACTIONS(897), + [anon_sym_isize] = ACTIONS(897), + [anon_sym_usize] = ACTIONS(897), + [anon_sym_f32] = ACTIONS(897), + [anon_sym_f64] = ACTIONS(897), + [anon_sym_bool] = ACTIONS(897), + [anon_sym_str] = ACTIONS(897), + [anon_sym_char] = ACTIONS(897), + [anon_sym_DASH] = ACTIONS(897), + [anon_sym_SLASH] = ACTIONS(897), + [anon_sym_PERCENT] = ACTIONS(897), + [anon_sym_CARET] = ACTIONS(897), + [anon_sym_BANG] = ACTIONS(897), + [anon_sym_AMP] = ACTIONS(897), + [anon_sym_PIPE] = ACTIONS(897), + [anon_sym_AMP_AMP] = ACTIONS(899), + [anon_sym_PIPE_PIPE] = ACTIONS(899), + [anon_sym_LT_LT] = ACTIONS(897), + [anon_sym_GT_GT] = ACTIONS(897), + [anon_sym_PLUS_EQ] = ACTIONS(899), + [anon_sym_DASH_EQ] = ACTIONS(899), + [anon_sym_STAR_EQ] = ACTIONS(899), + [anon_sym_SLASH_EQ] = ACTIONS(899), + [anon_sym_PERCENT_EQ] = ACTIONS(899), + [anon_sym_CARET_EQ] = ACTIONS(899), + [anon_sym_AMP_EQ] = ACTIONS(899), + [anon_sym_PIPE_EQ] = ACTIONS(899), + [anon_sym_LT_LT_EQ] = ACTIONS(899), + [anon_sym_GT_GT_EQ] = ACTIONS(899), + [anon_sym_EQ] = ACTIONS(897), + [anon_sym_EQ_EQ] = ACTIONS(899), + [anon_sym_BANG_EQ] = ACTIONS(899), + [anon_sym_GT] = ACTIONS(897), + [anon_sym_LT] = ACTIONS(897), + [anon_sym_GT_EQ] = ACTIONS(899), + [anon_sym_LT_EQ] = ACTIONS(899), + [anon_sym_AT] = ACTIONS(899), + [anon_sym__] = ACTIONS(897), + [anon_sym_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT] = ACTIONS(897), + [anon_sym_DOT_DOT_DOT] = ACTIONS(899), + [anon_sym_DOT_DOT_EQ] = ACTIONS(899), + [anon_sym_COMMA] = ACTIONS(899), + [anon_sym_COLON_COLON] = ACTIONS(899), + [anon_sym_DASH_GT] = ACTIONS(899), + [anon_sym_POUND] = ACTIONS(899), + [anon_sym_SQUOTE] = ACTIONS(897), + [anon_sym_as] = ACTIONS(897), + [anon_sym_async] = ACTIONS(897), + [anon_sym_await] = ACTIONS(897), + [anon_sym_break] = ACTIONS(897), + [anon_sym_const] = ACTIONS(897), + [anon_sym_continue] = ACTIONS(897), + [anon_sym_default] = ACTIONS(897), + [anon_sym_enum] = ACTIONS(897), + [anon_sym_fn] = ACTIONS(897), + [anon_sym_for] = ACTIONS(897), + [anon_sym_if] = ACTIONS(897), + [anon_sym_impl] = ACTIONS(897), + [anon_sym_let] = ACTIONS(897), + [anon_sym_loop] = ACTIONS(897), + [anon_sym_match] = ACTIONS(897), + [anon_sym_mod] = ACTIONS(897), + [anon_sym_pub] = ACTIONS(897), + [anon_sym_return] = ACTIONS(897), + [anon_sym_static] = ACTIONS(897), + [anon_sym_struct] = ACTIONS(897), + [anon_sym_trait] = ACTIONS(897), + [anon_sym_type] = ACTIONS(897), + [anon_sym_union] = ACTIONS(897), + [anon_sym_unsafe] = ACTIONS(897), + [anon_sym_use] = ACTIONS(897), + [anon_sym_where] = ACTIONS(897), + [anon_sym_while] = ACTIONS(897), + [sym_mutable_specifier] = ACTIONS(897), + [sym_integer_literal] = ACTIONS(899), + [aux_sym_string_literal_token1] = ACTIONS(899), + [sym_char_literal] = ACTIONS(899), + [anon_sym_true] = ACTIONS(897), + [anon_sym_false] = ACTIONS(897), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(897), + [sym_super] = ACTIONS(897), + [sym_crate] = ACTIONS(897), + [sym_metavariable] = ACTIONS(899), + [sym__raw_string_literal_start] = ACTIONS(899), + [sym_float_literal] = ACTIONS(899), + }, + [148] = { + [sym_line_comment] = STATE(148), + [sym_block_comment] = STATE(148), + [sym_identifier] = ACTIONS(901), + [anon_sym_SEMI] = ACTIONS(903), + [anon_sym_LPAREN] = ACTIONS(903), + [anon_sym_RPAREN] = ACTIONS(903), + [anon_sym_LBRACK] = ACTIONS(903), + [anon_sym_RBRACK] = ACTIONS(903), + [anon_sym_LBRACE] = ACTIONS(903), + [anon_sym_RBRACE] = ACTIONS(903), + [anon_sym_EQ_GT] = ACTIONS(903), + [anon_sym_COLON] = ACTIONS(901), + [anon_sym_DOLLAR] = ACTIONS(901), + [anon_sym_PLUS] = ACTIONS(901), + [anon_sym_STAR] = ACTIONS(901), + [anon_sym_QMARK] = ACTIONS(903), + [anon_sym_u8] = ACTIONS(901), + [anon_sym_i8] = ACTIONS(901), + [anon_sym_u16] = ACTIONS(901), + [anon_sym_i16] = ACTIONS(901), + [anon_sym_u32] = ACTIONS(901), + [anon_sym_i32] = ACTIONS(901), + [anon_sym_u64] = ACTIONS(901), + [anon_sym_i64] = ACTIONS(901), + [anon_sym_u128] = ACTIONS(901), + [anon_sym_i128] = ACTIONS(901), + [anon_sym_isize] = ACTIONS(901), + [anon_sym_usize] = ACTIONS(901), + [anon_sym_f32] = ACTIONS(901), + [anon_sym_f64] = ACTIONS(901), + [anon_sym_bool] = ACTIONS(901), + [anon_sym_str] = ACTIONS(901), + [anon_sym_char] = ACTIONS(901), + [anon_sym_DASH] = ACTIONS(901), + [anon_sym_SLASH] = ACTIONS(901), + [anon_sym_PERCENT] = ACTIONS(901), + [anon_sym_CARET] = ACTIONS(901), + [anon_sym_BANG] = ACTIONS(901), + [anon_sym_AMP] = ACTIONS(901), + [anon_sym_PIPE] = ACTIONS(901), + [anon_sym_AMP_AMP] = ACTIONS(903), + [anon_sym_PIPE_PIPE] = ACTIONS(903), + [anon_sym_LT_LT] = ACTIONS(901), + [anon_sym_GT_GT] = ACTIONS(901), + [anon_sym_PLUS_EQ] = ACTIONS(903), + [anon_sym_DASH_EQ] = ACTIONS(903), + [anon_sym_STAR_EQ] = ACTIONS(903), + [anon_sym_SLASH_EQ] = ACTIONS(903), + [anon_sym_PERCENT_EQ] = ACTIONS(903), + [anon_sym_CARET_EQ] = ACTIONS(903), + [anon_sym_AMP_EQ] = ACTIONS(903), + [anon_sym_PIPE_EQ] = ACTIONS(903), + [anon_sym_LT_LT_EQ] = ACTIONS(903), + [anon_sym_GT_GT_EQ] = ACTIONS(903), + [anon_sym_EQ] = ACTIONS(901), + [anon_sym_EQ_EQ] = ACTIONS(903), + [anon_sym_BANG_EQ] = ACTIONS(903), + [anon_sym_GT] = ACTIONS(901), + [anon_sym_LT] = ACTIONS(901), + [anon_sym_GT_EQ] = ACTIONS(903), + [anon_sym_LT_EQ] = ACTIONS(903), + [anon_sym_AT] = ACTIONS(903), + [anon_sym__] = ACTIONS(901), + [anon_sym_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT] = ACTIONS(901), + [anon_sym_DOT_DOT_DOT] = ACTIONS(903), + [anon_sym_DOT_DOT_EQ] = ACTIONS(903), + [anon_sym_COMMA] = ACTIONS(903), + [anon_sym_COLON_COLON] = ACTIONS(903), + [anon_sym_DASH_GT] = ACTIONS(903), + [anon_sym_POUND] = ACTIONS(903), + [anon_sym_SQUOTE] = ACTIONS(901), + [anon_sym_as] = ACTIONS(901), + [anon_sym_async] = ACTIONS(901), + [anon_sym_await] = ACTIONS(901), + [anon_sym_break] = ACTIONS(901), + [anon_sym_const] = ACTIONS(901), + [anon_sym_continue] = ACTIONS(901), + [anon_sym_default] = ACTIONS(901), + [anon_sym_enum] = ACTIONS(901), + [anon_sym_fn] = ACTIONS(901), + [anon_sym_for] = ACTIONS(901), + [anon_sym_if] = ACTIONS(901), + [anon_sym_impl] = ACTIONS(901), + [anon_sym_let] = ACTIONS(901), + [anon_sym_loop] = ACTIONS(901), + [anon_sym_match] = ACTIONS(901), + [anon_sym_mod] = ACTIONS(901), + [anon_sym_pub] = ACTIONS(901), + [anon_sym_return] = ACTIONS(901), + [anon_sym_static] = ACTIONS(901), + [anon_sym_struct] = ACTIONS(901), + [anon_sym_trait] = ACTIONS(901), + [anon_sym_type] = ACTIONS(901), + [anon_sym_union] = ACTIONS(901), + [anon_sym_unsafe] = ACTIONS(901), + [anon_sym_use] = ACTIONS(901), + [anon_sym_where] = ACTIONS(901), + [anon_sym_while] = ACTIONS(901), + [sym_mutable_specifier] = ACTIONS(901), + [sym_integer_literal] = ACTIONS(903), + [aux_sym_string_literal_token1] = ACTIONS(903), + [sym_char_literal] = ACTIONS(903), + [anon_sym_true] = ACTIONS(901), + [anon_sym_false] = ACTIONS(901), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(901), + [sym_super] = ACTIONS(901), + [sym_crate] = ACTIONS(901), + [sym_metavariable] = ACTIONS(903), + [sym__raw_string_literal_start] = ACTIONS(903), + [sym_float_literal] = ACTIONS(903), + }, + [149] = { + [sym_line_comment] = STATE(149), + [sym_block_comment] = STATE(149), + [sym_identifier] = ACTIONS(905), + [anon_sym_SEMI] = ACTIONS(907), + [anon_sym_LPAREN] = ACTIONS(907), + [anon_sym_RPAREN] = ACTIONS(907), + [anon_sym_LBRACK] = ACTIONS(907), + [anon_sym_RBRACK] = ACTIONS(907), + [anon_sym_LBRACE] = ACTIONS(907), + [anon_sym_RBRACE] = ACTIONS(907), + [anon_sym_EQ_GT] = ACTIONS(907), + [anon_sym_COLON] = ACTIONS(905), + [anon_sym_DOLLAR] = ACTIONS(905), + [anon_sym_PLUS] = ACTIONS(905), + [anon_sym_STAR] = ACTIONS(905), + [anon_sym_QMARK] = ACTIONS(907), + [anon_sym_u8] = ACTIONS(905), + [anon_sym_i8] = ACTIONS(905), + [anon_sym_u16] = ACTIONS(905), + [anon_sym_i16] = ACTIONS(905), + [anon_sym_u32] = ACTIONS(905), + [anon_sym_i32] = ACTIONS(905), + [anon_sym_u64] = ACTIONS(905), + [anon_sym_i64] = ACTIONS(905), + [anon_sym_u128] = ACTIONS(905), + [anon_sym_i128] = ACTIONS(905), + [anon_sym_isize] = ACTIONS(905), + [anon_sym_usize] = ACTIONS(905), + [anon_sym_f32] = ACTIONS(905), + [anon_sym_f64] = ACTIONS(905), + [anon_sym_bool] = ACTIONS(905), + [anon_sym_str] = ACTIONS(905), + [anon_sym_char] = ACTIONS(905), + [anon_sym_DASH] = ACTIONS(905), + [anon_sym_SLASH] = ACTIONS(905), + [anon_sym_PERCENT] = ACTIONS(905), + [anon_sym_CARET] = ACTIONS(905), + [anon_sym_BANG] = ACTIONS(905), + [anon_sym_AMP] = ACTIONS(905), + [anon_sym_PIPE] = ACTIONS(905), + [anon_sym_AMP_AMP] = ACTIONS(907), + [anon_sym_PIPE_PIPE] = ACTIONS(907), + [anon_sym_LT_LT] = ACTIONS(905), + [anon_sym_GT_GT] = ACTIONS(905), + [anon_sym_PLUS_EQ] = ACTIONS(907), + [anon_sym_DASH_EQ] = ACTIONS(907), + [anon_sym_STAR_EQ] = ACTIONS(907), + [anon_sym_SLASH_EQ] = ACTIONS(907), + [anon_sym_PERCENT_EQ] = ACTIONS(907), + [anon_sym_CARET_EQ] = ACTIONS(907), + [anon_sym_AMP_EQ] = ACTIONS(907), + [anon_sym_PIPE_EQ] = ACTIONS(907), + [anon_sym_LT_LT_EQ] = ACTIONS(907), + [anon_sym_GT_GT_EQ] = ACTIONS(907), + [anon_sym_EQ] = ACTIONS(905), + [anon_sym_EQ_EQ] = ACTIONS(907), + [anon_sym_BANG_EQ] = ACTIONS(907), + [anon_sym_GT] = ACTIONS(905), + [anon_sym_LT] = ACTIONS(905), + [anon_sym_GT_EQ] = ACTIONS(907), + [anon_sym_LT_EQ] = ACTIONS(907), + [anon_sym_AT] = ACTIONS(907), + [anon_sym__] = ACTIONS(905), + [anon_sym_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT] = ACTIONS(905), + [anon_sym_DOT_DOT_DOT] = ACTIONS(907), + [anon_sym_DOT_DOT_EQ] = ACTIONS(907), + [anon_sym_COMMA] = ACTIONS(907), + [anon_sym_COLON_COLON] = ACTIONS(907), + [anon_sym_DASH_GT] = ACTIONS(907), + [anon_sym_POUND] = ACTIONS(907), + [anon_sym_SQUOTE] = ACTIONS(905), + [anon_sym_as] = ACTIONS(905), + [anon_sym_async] = ACTIONS(905), + [anon_sym_await] = ACTIONS(905), + [anon_sym_break] = ACTIONS(905), + [anon_sym_const] = ACTIONS(905), + [anon_sym_continue] = ACTIONS(905), + [anon_sym_default] = ACTIONS(905), + [anon_sym_enum] = ACTIONS(905), + [anon_sym_fn] = ACTIONS(905), + [anon_sym_for] = ACTIONS(905), + [anon_sym_if] = ACTIONS(905), + [anon_sym_impl] = ACTIONS(905), + [anon_sym_let] = ACTIONS(905), + [anon_sym_loop] = ACTIONS(905), + [anon_sym_match] = ACTIONS(905), + [anon_sym_mod] = ACTIONS(905), + [anon_sym_pub] = ACTIONS(905), + [anon_sym_return] = ACTIONS(905), + [anon_sym_static] = ACTIONS(905), + [anon_sym_struct] = ACTIONS(905), + [anon_sym_trait] = ACTIONS(905), + [anon_sym_type] = ACTIONS(905), + [anon_sym_union] = ACTIONS(905), + [anon_sym_unsafe] = ACTIONS(905), + [anon_sym_use] = ACTIONS(905), + [anon_sym_where] = ACTIONS(905), + [anon_sym_while] = ACTIONS(905), + [sym_mutable_specifier] = ACTIONS(905), + [sym_integer_literal] = ACTIONS(907), + [aux_sym_string_literal_token1] = ACTIONS(907), + [sym_char_literal] = ACTIONS(907), + [anon_sym_true] = ACTIONS(905), + [anon_sym_false] = ACTIONS(905), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(905), + [sym_super] = ACTIONS(905), + [sym_crate] = ACTIONS(905), + [sym_metavariable] = ACTIONS(907), + [sym__raw_string_literal_start] = ACTIONS(907), + [sym_float_literal] = ACTIONS(907), + }, + [150] = { + [sym_line_comment] = STATE(150), + [sym_block_comment] = STATE(150), + [aux_sym__non_special_token_repeat1] = STATE(150), [sym_identifier] = ACTIONS(731), - [anon_sym_SEMI] = ACTIONS(733), - [anon_sym_LPAREN] = ACTIONS(733), - [anon_sym_RPAREN] = ACTIONS(733), - [anon_sym_LBRACK] = ACTIONS(733), - [anon_sym_RBRACK] = ACTIONS(733), - [anon_sym_LBRACE] = ACTIONS(733), - [anon_sym_RBRACE] = ACTIONS(733), - [anon_sym_EQ_GT] = ACTIONS(733), - [anon_sym_COLON] = ACTIONS(775), - [anon_sym_DOLLAR] = ACTIONS(731), - [anon_sym_PLUS] = ACTIONS(731), - [anon_sym_STAR] = ACTIONS(731), - [anon_sym_QMARK] = ACTIONS(733), + [anon_sym_SEMI] = ACTIONS(909), + [anon_sym_LPAREN] = ACTIONS(736), + [anon_sym_RPAREN] = ACTIONS(736), + [anon_sym_LBRACK] = ACTIONS(736), + [anon_sym_RBRACK] = ACTIONS(736), + [anon_sym_LBRACE] = ACTIONS(736), + [anon_sym_RBRACE] = ACTIONS(736), + [anon_sym_EQ_GT] = ACTIONS(909), + [anon_sym_COLON] = ACTIONS(912), + [anon_sym_DOLLAR] = ACTIONS(736), + [anon_sym_PLUS] = ACTIONS(912), + [anon_sym_STAR] = ACTIONS(912), + [anon_sym_QMARK] = ACTIONS(909), [anon_sym_u8] = ACTIONS(731), [anon_sym_i8] = ACTIONS(731), [anon_sym_u16] = ACTIONS(731), @@ -32800,44 +33512,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(731), [anon_sym_str] = ACTIONS(731), [anon_sym_char] = ACTIONS(731), - [anon_sym_DASH] = ACTIONS(731), - [anon_sym_SLASH] = ACTIONS(731), - [anon_sym_PERCENT] = ACTIONS(731), - [anon_sym_CARET] = ACTIONS(731), - [anon_sym_BANG] = ACTIONS(731), - [anon_sym_AMP] = ACTIONS(731), - [anon_sym_PIPE] = ACTIONS(731), - [anon_sym_AMP_AMP] = ACTIONS(733), - [anon_sym_PIPE_PIPE] = ACTIONS(733), - [anon_sym_LT_LT] = ACTIONS(731), - [anon_sym_GT_GT] = ACTIONS(731), - [anon_sym_PLUS_EQ] = ACTIONS(733), - [anon_sym_DASH_EQ] = ACTIONS(733), - [anon_sym_STAR_EQ] = ACTIONS(733), - [anon_sym_SLASH_EQ] = ACTIONS(733), - [anon_sym_PERCENT_EQ] = ACTIONS(733), - [anon_sym_CARET_EQ] = ACTIONS(733), - [anon_sym_AMP_EQ] = ACTIONS(733), - [anon_sym_PIPE_EQ] = ACTIONS(733), - [anon_sym_LT_LT_EQ] = ACTIONS(733), - [anon_sym_GT_GT_EQ] = ACTIONS(733), - [anon_sym_EQ] = ACTIONS(731), - [anon_sym_EQ_EQ] = ACTIONS(733), - [anon_sym_BANG_EQ] = ACTIONS(733), - [anon_sym_GT] = ACTIONS(731), - [anon_sym_LT] = ACTIONS(731), - [anon_sym_GT_EQ] = ACTIONS(733), - [anon_sym_LT_EQ] = ACTIONS(733), - [anon_sym_AT] = ACTIONS(733), - [anon_sym__] = ACTIONS(731), - [anon_sym_DOT] = ACTIONS(731), - [anon_sym_DOT_DOT] = ACTIONS(731), - [anon_sym_DOT_DOT_DOT] = ACTIONS(733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(733), - [anon_sym_COMMA] = ACTIONS(733), - [anon_sym_COLON_COLON] = ACTIONS(733), - [anon_sym_DASH_GT] = ACTIONS(733), - [anon_sym_POUND] = ACTIONS(733), + [anon_sym_DASH] = ACTIONS(912), + [anon_sym_SLASH] = ACTIONS(912), + [anon_sym_PERCENT] = ACTIONS(912), + [anon_sym_CARET] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(912), + [anon_sym_AMP] = ACTIONS(912), + [anon_sym_PIPE] = ACTIONS(912), + [anon_sym_AMP_AMP] = ACTIONS(909), + [anon_sym_PIPE_PIPE] = ACTIONS(909), + [anon_sym_LT_LT] = ACTIONS(912), + [anon_sym_GT_GT] = ACTIONS(912), + [anon_sym_PLUS_EQ] = ACTIONS(909), + [anon_sym_DASH_EQ] = ACTIONS(909), + [anon_sym_STAR_EQ] = ACTIONS(909), + [anon_sym_SLASH_EQ] = ACTIONS(909), + [anon_sym_PERCENT_EQ] = ACTIONS(909), + [anon_sym_CARET_EQ] = ACTIONS(909), + [anon_sym_AMP_EQ] = ACTIONS(909), + [anon_sym_PIPE_EQ] = ACTIONS(909), + [anon_sym_LT_LT_EQ] = ACTIONS(909), + [anon_sym_GT_GT_EQ] = ACTIONS(909), + [anon_sym_EQ] = ACTIONS(912), + [anon_sym_EQ_EQ] = ACTIONS(909), + [anon_sym_BANG_EQ] = ACTIONS(909), + [anon_sym_GT] = ACTIONS(912), + [anon_sym_LT] = ACTIONS(912), + [anon_sym_GT_EQ] = ACTIONS(909), + [anon_sym_LT_EQ] = ACTIONS(909), + [anon_sym_AT] = ACTIONS(909), + [anon_sym__] = ACTIONS(912), + [anon_sym_DOT] = ACTIONS(912), + [anon_sym_DOT_DOT] = ACTIONS(912), + [anon_sym_DOT_DOT_DOT] = ACTIONS(909), + [anon_sym_DOT_DOT_EQ] = ACTIONS(909), + [anon_sym_COMMA] = ACTIONS(909), + [anon_sym_COLON_COLON] = ACTIONS(909), + [anon_sym_DASH_GT] = ACTIONS(909), + [anon_sym_POUND] = ACTIONS(909), [anon_sym_SQUOTE] = ACTIONS(731), [anon_sym_as] = ACTIONS(731), [anon_sym_async] = ACTIONS(731), @@ -32867,9 +33579,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_where] = ACTIONS(731), [anon_sym_while] = ACTIONS(731), [sym_mutable_specifier] = ACTIONS(731), - [sym_integer_literal] = ACTIONS(733), - [aux_sym_string_literal_token1] = ACTIONS(733), - [sym_char_literal] = ACTIONS(733), + [sym_integer_literal] = ACTIONS(736), + [aux_sym_string_literal_token1] = ACTIONS(736), + [sym_char_literal] = ACTIONS(736), [anon_sym_true] = ACTIONS(731), [anon_sym_false] = ACTIONS(731), [anon_sym_SLASH_SLASH] = ACTIONS(101), @@ -32877,525 +33589,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(731), [sym_super] = ACTIONS(731), [sym_crate] = ACTIONS(731), - [sym_metavariable] = ACTIONS(733), - [sym__raw_string_literal_start] = ACTIONS(733), - [sym_float_literal] = ACTIONS(733), - }, - [145] = { - [sym_line_comment] = STATE(145), - [sym_block_comment] = STATE(145), - [sym_identifier] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_RBRACK] = ACTIONS(779), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_EQ_GT] = ACTIONS(779), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(777), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_u8] = ACTIONS(777), - [anon_sym_i8] = ACTIONS(777), - [anon_sym_u16] = ACTIONS(777), - [anon_sym_i16] = ACTIONS(777), - [anon_sym_u32] = ACTIONS(777), - [anon_sym_i32] = ACTIONS(777), - [anon_sym_u64] = ACTIONS(777), - [anon_sym_i64] = ACTIONS(777), - [anon_sym_u128] = ACTIONS(777), - [anon_sym_i128] = ACTIONS(777), - [anon_sym_isize] = ACTIONS(777), - [anon_sym_usize] = ACTIONS(777), - [anon_sym_f32] = ACTIONS(777), - [anon_sym_f64] = ACTIONS(777), - [anon_sym_bool] = ACTIONS(777), - [anon_sym_str] = ACTIONS(777), - [anon_sym_char] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_PERCENT] = ACTIONS(777), - [anon_sym_CARET] = ACTIONS(777), - [anon_sym_BANG] = ACTIONS(777), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(779), - [anon_sym_PIPE_PIPE] = ACTIONS(779), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(777), - [anon_sym_PLUS_EQ] = ACTIONS(779), - [anon_sym_DASH_EQ] = ACTIONS(779), - [anon_sym_STAR_EQ] = ACTIONS(779), - [anon_sym_SLASH_EQ] = ACTIONS(779), - [anon_sym_PERCENT_EQ] = ACTIONS(779), - [anon_sym_CARET_EQ] = ACTIONS(779), - [anon_sym_AMP_EQ] = ACTIONS(779), - [anon_sym_PIPE_EQ] = ACTIONS(779), - [anon_sym_LT_LT_EQ] = ACTIONS(779), - [anon_sym_GT_GT_EQ] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(779), - [anon_sym_BANG_EQ] = ACTIONS(779), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT_EQ] = ACTIONS(779), - [anon_sym_LT_EQ] = ACTIONS(779), - [anon_sym_AT] = ACTIONS(779), - [anon_sym__] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(779), - [anon_sym_COLON_COLON] = ACTIONS(779), - [anon_sym_DASH_GT] = ACTIONS(779), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(777), - [anon_sym_as] = ACTIONS(777), - [anon_sym_async] = ACTIONS(777), - [anon_sym_await] = ACTIONS(777), - [anon_sym_break] = ACTIONS(777), - [anon_sym_const] = ACTIONS(777), - [anon_sym_continue] = ACTIONS(777), - [anon_sym_default] = ACTIONS(777), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_impl] = ACTIONS(777), - [anon_sym_let] = ACTIONS(777), - [anon_sym_loop] = ACTIONS(777), - [anon_sym_match] = ACTIONS(777), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_pub] = ACTIONS(777), - [anon_sym_return] = ACTIONS(777), - [anon_sym_static] = ACTIONS(777), - [anon_sym_struct] = ACTIONS(777), - [anon_sym_trait] = ACTIONS(777), - [anon_sym_type] = ACTIONS(777), - [anon_sym_union] = ACTIONS(777), - [anon_sym_unsafe] = ACTIONS(777), - [anon_sym_use] = ACTIONS(777), - [anon_sym_where] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(777), - [sym_integer_literal] = ACTIONS(779), - [aux_sym_string_literal_token1] = ACTIONS(779), - [sym_char_literal] = ACTIONS(779), - [anon_sym_true] = ACTIONS(777), - [anon_sym_false] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(777), - [sym_super] = ACTIONS(777), - [sym_crate] = ACTIONS(777), - [sym_metavariable] = ACTIONS(779), - [sym__raw_string_literal_start] = ACTIONS(779), - [sym_float_literal] = ACTIONS(779), - }, - [146] = { - [sym_line_comment] = STATE(146), - [sym_block_comment] = STATE(146), - [sym_identifier] = ACTIONS(781), - [anon_sym_SEMI] = ACTIONS(783), - [anon_sym_LPAREN] = ACTIONS(783), - [anon_sym_RPAREN] = ACTIONS(783), - [anon_sym_LBRACK] = ACTIONS(783), - [anon_sym_RBRACK] = ACTIONS(783), - [anon_sym_LBRACE] = ACTIONS(783), - [anon_sym_RBRACE] = ACTIONS(783), - [anon_sym_EQ_GT] = ACTIONS(783), - [anon_sym_COLON] = ACTIONS(781), - [anon_sym_DOLLAR] = ACTIONS(781), - [anon_sym_PLUS] = ACTIONS(781), - [anon_sym_STAR] = ACTIONS(781), - [anon_sym_QMARK] = ACTIONS(783), - [anon_sym_u8] = ACTIONS(781), - [anon_sym_i8] = ACTIONS(781), - [anon_sym_u16] = ACTIONS(781), - [anon_sym_i16] = ACTIONS(781), - [anon_sym_u32] = ACTIONS(781), - [anon_sym_i32] = ACTIONS(781), - [anon_sym_u64] = ACTIONS(781), - [anon_sym_i64] = ACTIONS(781), - [anon_sym_u128] = ACTIONS(781), - [anon_sym_i128] = ACTIONS(781), - [anon_sym_isize] = ACTIONS(781), - [anon_sym_usize] = ACTIONS(781), - [anon_sym_f32] = ACTIONS(781), - [anon_sym_f64] = ACTIONS(781), - [anon_sym_bool] = ACTIONS(781), - [anon_sym_str] = ACTIONS(781), - [anon_sym_char] = ACTIONS(781), - [anon_sym_DASH] = ACTIONS(781), - [anon_sym_SLASH] = ACTIONS(781), - [anon_sym_PERCENT] = ACTIONS(781), - [anon_sym_CARET] = ACTIONS(781), - [anon_sym_BANG] = ACTIONS(781), - [anon_sym_AMP] = ACTIONS(781), - [anon_sym_PIPE] = ACTIONS(781), - [anon_sym_AMP_AMP] = ACTIONS(783), - [anon_sym_PIPE_PIPE] = ACTIONS(783), - [anon_sym_LT_LT] = ACTIONS(781), - [anon_sym_GT_GT] = ACTIONS(781), - [anon_sym_PLUS_EQ] = ACTIONS(783), - [anon_sym_DASH_EQ] = ACTIONS(783), - [anon_sym_STAR_EQ] = ACTIONS(783), - [anon_sym_SLASH_EQ] = ACTIONS(783), - [anon_sym_PERCENT_EQ] = ACTIONS(783), - [anon_sym_CARET_EQ] = ACTIONS(783), - [anon_sym_AMP_EQ] = ACTIONS(783), - [anon_sym_PIPE_EQ] = ACTIONS(783), - [anon_sym_LT_LT_EQ] = ACTIONS(783), - [anon_sym_GT_GT_EQ] = ACTIONS(783), - [anon_sym_EQ] = ACTIONS(781), - [anon_sym_EQ_EQ] = ACTIONS(783), - [anon_sym_BANG_EQ] = ACTIONS(783), - [anon_sym_GT] = ACTIONS(781), - [anon_sym_LT] = ACTIONS(781), - [anon_sym_GT_EQ] = ACTIONS(783), - [anon_sym_LT_EQ] = ACTIONS(783), - [anon_sym_AT] = ACTIONS(783), - [anon_sym__] = ACTIONS(781), - [anon_sym_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT] = ACTIONS(781), - [anon_sym_DOT_DOT_DOT] = ACTIONS(783), - [anon_sym_DOT_DOT_EQ] = ACTIONS(783), - [anon_sym_COMMA] = ACTIONS(783), - [anon_sym_COLON_COLON] = ACTIONS(783), - [anon_sym_DASH_GT] = ACTIONS(783), - [anon_sym_POUND] = ACTIONS(783), - [anon_sym_SQUOTE] = ACTIONS(781), - [anon_sym_as] = ACTIONS(781), - [anon_sym_async] = ACTIONS(781), - [anon_sym_await] = ACTIONS(781), - [anon_sym_break] = ACTIONS(781), - [anon_sym_const] = ACTIONS(781), - [anon_sym_continue] = ACTIONS(781), - [anon_sym_default] = ACTIONS(781), - [anon_sym_enum] = ACTIONS(781), - [anon_sym_fn] = ACTIONS(781), - [anon_sym_for] = ACTIONS(781), - [anon_sym_if] = ACTIONS(781), - [anon_sym_impl] = ACTIONS(781), - [anon_sym_let] = ACTIONS(781), - [anon_sym_loop] = ACTIONS(781), - [anon_sym_match] = ACTIONS(781), - [anon_sym_mod] = ACTIONS(781), - [anon_sym_pub] = ACTIONS(781), - [anon_sym_return] = ACTIONS(781), - [anon_sym_static] = ACTIONS(781), - [anon_sym_struct] = ACTIONS(781), - [anon_sym_trait] = ACTIONS(781), - [anon_sym_type] = ACTIONS(781), - [anon_sym_union] = ACTIONS(781), - [anon_sym_unsafe] = ACTIONS(781), - [anon_sym_use] = ACTIONS(781), - [anon_sym_where] = ACTIONS(781), - [anon_sym_while] = ACTIONS(781), - [sym_mutable_specifier] = ACTIONS(781), - [sym_integer_literal] = ACTIONS(783), - [aux_sym_string_literal_token1] = ACTIONS(783), - [sym_char_literal] = ACTIONS(783), - [anon_sym_true] = ACTIONS(781), - [anon_sym_false] = ACTIONS(781), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(781), - [sym_super] = ACTIONS(781), - [sym_crate] = ACTIONS(781), - [sym_metavariable] = ACTIONS(783), - [sym__raw_string_literal_start] = ACTIONS(783), - [sym_float_literal] = ACTIONS(783), - }, - [147] = { - [sym_line_comment] = STATE(147), - [sym_block_comment] = STATE(147), - [sym_identifier] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_RBRACK] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(787), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_EQ_GT] = ACTIONS(787), - [anon_sym_COLON] = ACTIONS(785), - [anon_sym_DOLLAR] = ACTIONS(785), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_u8] = ACTIONS(785), - [anon_sym_i8] = ACTIONS(785), - [anon_sym_u16] = ACTIONS(785), - [anon_sym_i16] = ACTIONS(785), - [anon_sym_u32] = ACTIONS(785), - [anon_sym_i32] = ACTIONS(785), - [anon_sym_u64] = ACTIONS(785), - [anon_sym_i64] = ACTIONS(785), - [anon_sym_u128] = ACTIONS(785), - [anon_sym_i128] = ACTIONS(785), - [anon_sym_isize] = ACTIONS(785), - [anon_sym_usize] = ACTIONS(785), - [anon_sym_f32] = ACTIONS(785), - [anon_sym_f64] = ACTIONS(785), - [anon_sym_bool] = ACTIONS(785), - [anon_sym_str] = ACTIONS(785), - [anon_sym_char] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(785), - [anon_sym_PLUS_EQ] = ACTIONS(787), - [anon_sym_DASH_EQ] = ACTIONS(787), - [anon_sym_STAR_EQ] = ACTIONS(787), - [anon_sym_SLASH_EQ] = ACTIONS(787), - [anon_sym_PERCENT_EQ] = ACTIONS(787), - [anon_sym_CARET_EQ] = ACTIONS(787), - [anon_sym_AMP_EQ] = ACTIONS(787), - [anon_sym_PIPE_EQ] = ACTIONS(787), - [anon_sym_LT_LT_EQ] = ACTIONS(787), - [anon_sym_GT_GT_EQ] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(787), - [anon_sym_BANG_EQ] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(785), - [anon_sym_GT_EQ] = ACTIONS(787), - [anon_sym_LT_EQ] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(787), - [anon_sym__] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_DOT_DOT] = ACTIONS(785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(787), - [anon_sym_COLON_COLON] = ACTIONS(787), - [anon_sym_DASH_GT] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(785), - [anon_sym_as] = ACTIONS(785), - [anon_sym_async] = ACTIONS(785), - [anon_sym_await] = ACTIONS(785), - [anon_sym_break] = ACTIONS(785), - [anon_sym_const] = ACTIONS(785), - [anon_sym_continue] = ACTIONS(785), - [anon_sym_default] = ACTIONS(785), - [anon_sym_enum] = ACTIONS(785), - [anon_sym_fn] = ACTIONS(785), - [anon_sym_for] = ACTIONS(785), - [anon_sym_if] = ACTIONS(785), - [anon_sym_impl] = ACTIONS(785), - [anon_sym_let] = ACTIONS(785), - [anon_sym_loop] = ACTIONS(785), - [anon_sym_match] = ACTIONS(785), - [anon_sym_mod] = ACTIONS(785), - [anon_sym_pub] = ACTIONS(785), - [anon_sym_return] = ACTIONS(785), - [anon_sym_static] = ACTIONS(785), - [anon_sym_struct] = ACTIONS(785), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_type] = ACTIONS(785), - [anon_sym_union] = ACTIONS(785), - [anon_sym_unsafe] = ACTIONS(785), - [anon_sym_use] = ACTIONS(785), - [anon_sym_where] = ACTIONS(785), - [anon_sym_while] = ACTIONS(785), - [sym_mutable_specifier] = ACTIONS(785), - [sym_integer_literal] = ACTIONS(787), - [aux_sym_string_literal_token1] = ACTIONS(787), - [sym_char_literal] = ACTIONS(787), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(785), - [sym_super] = ACTIONS(785), - [sym_crate] = ACTIONS(785), - [sym_metavariable] = ACTIONS(787), - [sym__raw_string_literal_start] = ACTIONS(787), - [sym_float_literal] = ACTIONS(787), - }, - [148] = { - [sym_line_comment] = STATE(148), - [sym_block_comment] = STATE(148), - [sym_identifier] = ACTIONS(789), - [anon_sym_SEMI] = ACTIONS(791), - [anon_sym_LPAREN] = ACTIONS(791), - [anon_sym_RPAREN] = ACTIONS(791), - [anon_sym_LBRACK] = ACTIONS(791), - [anon_sym_RBRACK] = ACTIONS(791), - [anon_sym_LBRACE] = ACTIONS(791), - [anon_sym_RBRACE] = ACTIONS(791), - [anon_sym_EQ_GT] = ACTIONS(791), - [anon_sym_COLON] = ACTIONS(789), - [anon_sym_DOLLAR] = ACTIONS(789), - [anon_sym_PLUS] = ACTIONS(789), - [anon_sym_STAR] = ACTIONS(789), - [anon_sym_QMARK] = ACTIONS(791), - [anon_sym_u8] = ACTIONS(789), - [anon_sym_i8] = ACTIONS(789), - [anon_sym_u16] = ACTIONS(789), - [anon_sym_i16] = ACTIONS(789), - [anon_sym_u32] = ACTIONS(789), - [anon_sym_i32] = ACTIONS(789), - [anon_sym_u64] = ACTIONS(789), - [anon_sym_i64] = ACTIONS(789), - [anon_sym_u128] = ACTIONS(789), - [anon_sym_i128] = ACTIONS(789), - [anon_sym_isize] = ACTIONS(789), - [anon_sym_usize] = ACTIONS(789), - [anon_sym_f32] = ACTIONS(789), - [anon_sym_f64] = ACTIONS(789), - [anon_sym_bool] = ACTIONS(789), - [anon_sym_str] = ACTIONS(789), - [anon_sym_char] = ACTIONS(789), - [anon_sym_DASH] = ACTIONS(789), - [anon_sym_SLASH] = ACTIONS(789), - [anon_sym_PERCENT] = ACTIONS(789), - [anon_sym_CARET] = ACTIONS(789), - [anon_sym_BANG] = ACTIONS(789), - [anon_sym_AMP] = ACTIONS(789), - [anon_sym_PIPE] = ACTIONS(789), - [anon_sym_AMP_AMP] = ACTIONS(791), - [anon_sym_PIPE_PIPE] = ACTIONS(791), - [anon_sym_LT_LT] = ACTIONS(789), - [anon_sym_GT_GT] = ACTIONS(789), - [anon_sym_PLUS_EQ] = ACTIONS(791), - [anon_sym_DASH_EQ] = ACTIONS(791), - [anon_sym_STAR_EQ] = ACTIONS(791), - [anon_sym_SLASH_EQ] = ACTIONS(791), - [anon_sym_PERCENT_EQ] = ACTIONS(791), - [anon_sym_CARET_EQ] = ACTIONS(791), - [anon_sym_AMP_EQ] = ACTIONS(791), - [anon_sym_PIPE_EQ] = ACTIONS(791), - [anon_sym_LT_LT_EQ] = ACTIONS(791), - [anon_sym_GT_GT_EQ] = ACTIONS(791), - [anon_sym_EQ] = ACTIONS(789), - [anon_sym_EQ_EQ] = ACTIONS(791), - [anon_sym_BANG_EQ] = ACTIONS(791), - [anon_sym_GT] = ACTIONS(789), - [anon_sym_LT] = ACTIONS(789), - [anon_sym_GT_EQ] = ACTIONS(791), - [anon_sym_LT_EQ] = ACTIONS(791), - [anon_sym_AT] = ACTIONS(791), - [anon_sym__] = ACTIONS(789), - [anon_sym_DOT] = ACTIONS(789), - [anon_sym_DOT_DOT] = ACTIONS(789), - [anon_sym_DOT_DOT_DOT] = ACTIONS(791), - [anon_sym_DOT_DOT_EQ] = ACTIONS(791), - [anon_sym_COMMA] = ACTIONS(791), - [anon_sym_COLON_COLON] = ACTIONS(791), - [anon_sym_DASH_GT] = ACTIONS(791), - [anon_sym_POUND] = ACTIONS(791), - [anon_sym_SQUOTE] = ACTIONS(789), - [anon_sym_as] = ACTIONS(789), - [anon_sym_async] = ACTIONS(789), - [anon_sym_await] = ACTIONS(789), - [anon_sym_break] = ACTIONS(789), - [anon_sym_const] = ACTIONS(789), - [anon_sym_continue] = ACTIONS(789), - [anon_sym_default] = ACTIONS(789), - [anon_sym_enum] = ACTIONS(789), - [anon_sym_fn] = ACTIONS(789), - [anon_sym_for] = ACTIONS(789), - [anon_sym_if] = ACTIONS(789), - [anon_sym_impl] = ACTIONS(789), - [anon_sym_let] = ACTIONS(789), - [anon_sym_loop] = ACTIONS(789), - [anon_sym_match] = ACTIONS(789), - [anon_sym_mod] = ACTIONS(789), - [anon_sym_pub] = ACTIONS(789), - [anon_sym_return] = ACTIONS(789), - [anon_sym_static] = ACTIONS(789), - [anon_sym_struct] = ACTIONS(789), - [anon_sym_trait] = ACTIONS(789), - [anon_sym_type] = ACTIONS(789), - [anon_sym_union] = ACTIONS(789), - [anon_sym_unsafe] = ACTIONS(789), - [anon_sym_use] = ACTIONS(789), - [anon_sym_where] = ACTIONS(789), - [anon_sym_while] = ACTIONS(789), - [sym_mutable_specifier] = ACTIONS(789), - [sym_integer_literal] = ACTIONS(791), - [aux_sym_string_literal_token1] = ACTIONS(791), - [sym_char_literal] = ACTIONS(791), - [anon_sym_true] = ACTIONS(789), - [anon_sym_false] = ACTIONS(789), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(789), - [sym_super] = ACTIONS(789), - [sym_crate] = ACTIONS(789), - [sym_metavariable] = ACTIONS(791), - [sym__raw_string_literal_start] = ACTIONS(791), - [sym_float_literal] = ACTIONS(791), + [sym__raw_string_literal_start] = ACTIONS(736), + [sym_float_literal] = ACTIONS(736), }, - [149] = { + [151] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1563), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(149), - [sym_block_comment] = STATE(149), - [aux_sym_enum_variant_list_repeat1] = STATE(165), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1569), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(151), + [sym_block_comment] = STATE(151), + [aux_sym_enum_variant_list_repeat1] = STATE(146), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(793), + [anon_sym_RBRACK] = ACTIONS(915), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -33421,9 +33672,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(795), + [anon_sym_COMMA] = ACTIONS(917), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -33456,1901 +33707,2244 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [150] = { - [sym_line_comment] = STATE(150), - [sym_block_comment] = STATE(150), - [sym_identifier] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(799), - [anon_sym_RBRACK] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_EQ_GT] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(797), - [anon_sym_PLUS] = ACTIONS(797), - [anon_sym_STAR] = ACTIONS(797), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_u8] = ACTIONS(797), - [anon_sym_i8] = ACTIONS(797), - [anon_sym_u16] = ACTIONS(797), - [anon_sym_i16] = ACTIONS(797), - [anon_sym_u32] = ACTIONS(797), - [anon_sym_i32] = ACTIONS(797), - [anon_sym_u64] = ACTIONS(797), - [anon_sym_i64] = ACTIONS(797), - [anon_sym_u128] = ACTIONS(797), - [anon_sym_i128] = ACTIONS(797), - [anon_sym_isize] = ACTIONS(797), - [anon_sym_usize] = ACTIONS(797), - [anon_sym_f32] = ACTIONS(797), - [anon_sym_f64] = ACTIONS(797), - [anon_sym_bool] = ACTIONS(797), - [anon_sym_str] = ACTIONS(797), - [anon_sym_char] = ACTIONS(797), - [anon_sym_DASH] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(797), - [anon_sym_PERCENT] = ACTIONS(797), - [anon_sym_CARET] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(797), - [anon_sym_AMP] = ACTIONS(797), - [anon_sym_PIPE] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [anon_sym_LT_LT] = ACTIONS(797), - [anon_sym_GT_GT] = ACTIONS(797), - [anon_sym_PLUS_EQ] = ACTIONS(799), - [anon_sym_DASH_EQ] = ACTIONS(799), - [anon_sym_STAR_EQ] = ACTIONS(799), - [anon_sym_SLASH_EQ] = ACTIONS(799), - [anon_sym_PERCENT_EQ] = ACTIONS(799), - [anon_sym_CARET_EQ] = ACTIONS(799), - [anon_sym_AMP_EQ] = ACTIONS(799), - [anon_sym_PIPE_EQ] = ACTIONS(799), - [anon_sym_LT_LT_EQ] = ACTIONS(799), - [anon_sym_GT_GT_EQ] = ACTIONS(799), - [anon_sym_EQ] = ACTIONS(797), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(797), - [anon_sym_LT] = ACTIONS(797), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_DOT_DOT] = ACTIONS(797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(799), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_COLON_COLON] = ACTIONS(799), - [anon_sym_DASH_GT] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(799), - [anon_sym_SQUOTE] = ACTIONS(797), - [anon_sym_as] = ACTIONS(797), - [anon_sym_async] = ACTIONS(797), - [anon_sym_await] = ACTIONS(797), - [anon_sym_break] = ACTIONS(797), - [anon_sym_const] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(797), - [anon_sym_default] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(797), - [anon_sym_fn] = ACTIONS(797), - [anon_sym_for] = ACTIONS(797), - [anon_sym_if] = ACTIONS(797), - [anon_sym_impl] = ACTIONS(797), - [anon_sym_let] = ACTIONS(797), - [anon_sym_loop] = ACTIONS(797), - [anon_sym_match] = ACTIONS(797), - [anon_sym_mod] = ACTIONS(797), - [anon_sym_pub] = ACTIONS(797), - [anon_sym_return] = ACTIONS(797), - [anon_sym_static] = ACTIONS(797), - [anon_sym_struct] = ACTIONS(797), - [anon_sym_trait] = ACTIONS(797), - [anon_sym_type] = ACTIONS(797), - [anon_sym_union] = ACTIONS(797), - [anon_sym_unsafe] = ACTIONS(797), - [anon_sym_use] = ACTIONS(797), - [anon_sym_where] = ACTIONS(797), - [anon_sym_while] = ACTIONS(797), - [sym_mutable_specifier] = ACTIONS(797), - [sym_integer_literal] = ACTIONS(799), - [aux_sym_string_literal_token1] = ACTIONS(799), - [sym_char_literal] = ACTIONS(799), - [anon_sym_true] = ACTIONS(797), - [anon_sym_false] = ACTIONS(797), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(797), - [sym_super] = ACTIONS(797), - [sym_crate] = ACTIONS(797), - [sym_metavariable] = ACTIONS(799), - [sym__raw_string_literal_start] = ACTIONS(799), - [sym_float_literal] = ACTIONS(799), - }, - [151] = { - [sym_line_comment] = STATE(151), - [sym_block_comment] = STATE(151), - [sym_identifier] = ACTIONS(801), - [anon_sym_SEMI] = ACTIONS(803), - [anon_sym_LPAREN] = ACTIONS(803), - [anon_sym_RPAREN] = ACTIONS(803), - [anon_sym_LBRACK] = ACTIONS(803), - [anon_sym_RBRACK] = ACTIONS(803), - [anon_sym_LBRACE] = ACTIONS(803), - [anon_sym_RBRACE] = ACTIONS(803), - [anon_sym_EQ_GT] = ACTIONS(803), - [anon_sym_COLON] = ACTIONS(801), - [anon_sym_DOLLAR] = ACTIONS(801), - [anon_sym_PLUS] = ACTIONS(801), - [anon_sym_STAR] = ACTIONS(801), - [anon_sym_QMARK] = ACTIONS(803), - [anon_sym_u8] = ACTIONS(801), - [anon_sym_i8] = ACTIONS(801), - [anon_sym_u16] = ACTIONS(801), - [anon_sym_i16] = ACTIONS(801), - [anon_sym_u32] = ACTIONS(801), - [anon_sym_i32] = ACTIONS(801), - [anon_sym_u64] = ACTIONS(801), - [anon_sym_i64] = ACTIONS(801), - [anon_sym_u128] = ACTIONS(801), - [anon_sym_i128] = ACTIONS(801), - [anon_sym_isize] = ACTIONS(801), - [anon_sym_usize] = ACTIONS(801), - [anon_sym_f32] = ACTIONS(801), - [anon_sym_f64] = ACTIONS(801), - [anon_sym_bool] = ACTIONS(801), - [anon_sym_str] = ACTIONS(801), - [anon_sym_char] = ACTIONS(801), - [anon_sym_DASH] = ACTIONS(801), - [anon_sym_SLASH] = ACTIONS(801), - [anon_sym_PERCENT] = ACTIONS(801), - [anon_sym_CARET] = ACTIONS(801), - [anon_sym_BANG] = ACTIONS(801), - [anon_sym_AMP] = ACTIONS(801), - [anon_sym_PIPE] = ACTIONS(801), - [anon_sym_AMP_AMP] = ACTIONS(803), - [anon_sym_PIPE_PIPE] = ACTIONS(803), - [anon_sym_LT_LT] = ACTIONS(801), - [anon_sym_GT_GT] = ACTIONS(801), - [anon_sym_PLUS_EQ] = ACTIONS(803), - [anon_sym_DASH_EQ] = ACTIONS(803), - [anon_sym_STAR_EQ] = ACTIONS(803), - [anon_sym_SLASH_EQ] = ACTIONS(803), - [anon_sym_PERCENT_EQ] = ACTIONS(803), - [anon_sym_CARET_EQ] = ACTIONS(803), - [anon_sym_AMP_EQ] = ACTIONS(803), - [anon_sym_PIPE_EQ] = ACTIONS(803), - [anon_sym_LT_LT_EQ] = ACTIONS(803), - [anon_sym_GT_GT_EQ] = ACTIONS(803), - [anon_sym_EQ] = ACTIONS(801), - [anon_sym_EQ_EQ] = ACTIONS(803), - [anon_sym_BANG_EQ] = ACTIONS(803), - [anon_sym_GT] = ACTIONS(801), - [anon_sym_LT] = ACTIONS(801), - [anon_sym_GT_EQ] = ACTIONS(803), - [anon_sym_LT_EQ] = ACTIONS(803), - [anon_sym_AT] = ACTIONS(803), - [anon_sym__] = ACTIONS(801), - [anon_sym_DOT] = ACTIONS(801), - [anon_sym_DOT_DOT] = ACTIONS(801), - [anon_sym_DOT_DOT_DOT] = ACTIONS(803), - [anon_sym_DOT_DOT_EQ] = ACTIONS(803), - [anon_sym_COMMA] = ACTIONS(803), - [anon_sym_COLON_COLON] = ACTIONS(803), - [anon_sym_DASH_GT] = ACTIONS(803), - [anon_sym_POUND] = ACTIONS(803), - [anon_sym_SQUOTE] = ACTIONS(801), - [anon_sym_as] = ACTIONS(801), - [anon_sym_async] = ACTIONS(801), - [anon_sym_await] = ACTIONS(801), - [anon_sym_break] = ACTIONS(801), - [anon_sym_const] = ACTIONS(801), - [anon_sym_continue] = ACTIONS(801), - [anon_sym_default] = ACTIONS(801), - [anon_sym_enum] = ACTIONS(801), - [anon_sym_fn] = ACTIONS(801), - [anon_sym_for] = ACTIONS(801), - [anon_sym_if] = ACTIONS(801), - [anon_sym_impl] = ACTIONS(801), - [anon_sym_let] = ACTIONS(801), - [anon_sym_loop] = ACTIONS(801), - [anon_sym_match] = ACTIONS(801), - [anon_sym_mod] = ACTIONS(801), - [anon_sym_pub] = ACTIONS(801), - [anon_sym_return] = ACTIONS(801), - [anon_sym_static] = ACTIONS(801), - [anon_sym_struct] = ACTIONS(801), - [anon_sym_trait] = ACTIONS(801), - [anon_sym_type] = ACTIONS(801), - [anon_sym_union] = ACTIONS(801), - [anon_sym_unsafe] = ACTIONS(801), - [anon_sym_use] = ACTIONS(801), - [anon_sym_where] = ACTIONS(801), - [anon_sym_while] = ACTIONS(801), - [sym_mutable_specifier] = ACTIONS(801), - [sym_integer_literal] = ACTIONS(803), - [aux_sym_string_literal_token1] = ACTIONS(803), - [sym_char_literal] = ACTIONS(803), - [anon_sym_true] = ACTIONS(801), - [anon_sym_false] = ACTIONS(801), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(801), - [sym_super] = ACTIONS(801), - [sym_crate] = ACTIONS(801), - [sym_metavariable] = ACTIONS(803), - [sym__raw_string_literal_start] = ACTIONS(803), - [sym_float_literal] = ACTIONS(803), - }, [152] = { [sym_line_comment] = STATE(152), [sym_block_comment] = STATE(152), - [sym_identifier] = ACTIONS(805), - [anon_sym_SEMI] = ACTIONS(807), - [anon_sym_LPAREN] = ACTIONS(807), - [anon_sym_RPAREN] = ACTIONS(807), - [anon_sym_LBRACK] = ACTIONS(807), - [anon_sym_RBRACK] = ACTIONS(807), - [anon_sym_LBRACE] = ACTIONS(807), - [anon_sym_RBRACE] = ACTIONS(807), - [anon_sym_EQ_GT] = ACTIONS(807), - [anon_sym_COLON] = ACTIONS(805), - [anon_sym_DOLLAR] = ACTIONS(805), - [anon_sym_PLUS] = ACTIONS(805), - [anon_sym_STAR] = ACTIONS(805), - [anon_sym_QMARK] = ACTIONS(807), - [anon_sym_u8] = ACTIONS(805), - [anon_sym_i8] = ACTIONS(805), - [anon_sym_u16] = ACTIONS(805), - [anon_sym_i16] = ACTIONS(805), - [anon_sym_u32] = ACTIONS(805), - [anon_sym_i32] = ACTIONS(805), - [anon_sym_u64] = ACTIONS(805), - [anon_sym_i64] = ACTIONS(805), - [anon_sym_u128] = ACTIONS(805), - [anon_sym_i128] = ACTIONS(805), - [anon_sym_isize] = ACTIONS(805), - [anon_sym_usize] = ACTIONS(805), - [anon_sym_f32] = ACTIONS(805), - [anon_sym_f64] = ACTIONS(805), - [anon_sym_bool] = ACTIONS(805), - [anon_sym_str] = ACTIONS(805), - [anon_sym_char] = ACTIONS(805), - [anon_sym_DASH] = ACTIONS(805), - [anon_sym_SLASH] = ACTIONS(805), - [anon_sym_PERCENT] = ACTIONS(805), - [anon_sym_CARET] = ACTIONS(805), - [anon_sym_BANG] = ACTIONS(805), - [anon_sym_AMP] = ACTIONS(805), - [anon_sym_PIPE] = ACTIONS(805), - [anon_sym_AMP_AMP] = ACTIONS(807), - [anon_sym_PIPE_PIPE] = ACTIONS(807), - [anon_sym_LT_LT] = ACTIONS(805), - [anon_sym_GT_GT] = ACTIONS(805), - [anon_sym_PLUS_EQ] = ACTIONS(807), - [anon_sym_DASH_EQ] = ACTIONS(807), - [anon_sym_STAR_EQ] = ACTIONS(807), - [anon_sym_SLASH_EQ] = ACTIONS(807), - [anon_sym_PERCENT_EQ] = ACTIONS(807), - [anon_sym_CARET_EQ] = ACTIONS(807), - [anon_sym_AMP_EQ] = ACTIONS(807), - [anon_sym_PIPE_EQ] = ACTIONS(807), - [anon_sym_LT_LT_EQ] = ACTIONS(807), - [anon_sym_GT_GT_EQ] = ACTIONS(807), - [anon_sym_EQ] = ACTIONS(805), - [anon_sym_EQ_EQ] = ACTIONS(807), - [anon_sym_BANG_EQ] = ACTIONS(807), - [anon_sym_GT] = ACTIONS(805), - [anon_sym_LT] = ACTIONS(805), - [anon_sym_GT_EQ] = ACTIONS(807), - [anon_sym_LT_EQ] = ACTIONS(807), - [anon_sym_AT] = ACTIONS(807), - [anon_sym__] = ACTIONS(805), - [anon_sym_DOT] = ACTIONS(805), - [anon_sym_DOT_DOT] = ACTIONS(805), - [anon_sym_DOT_DOT_DOT] = ACTIONS(807), - [anon_sym_DOT_DOT_EQ] = ACTIONS(807), - [anon_sym_COMMA] = ACTIONS(807), - [anon_sym_COLON_COLON] = ACTIONS(807), - [anon_sym_DASH_GT] = ACTIONS(807), - [anon_sym_POUND] = ACTIONS(807), - [anon_sym_SQUOTE] = ACTIONS(805), - [anon_sym_as] = ACTIONS(805), - [anon_sym_async] = ACTIONS(805), - [anon_sym_await] = ACTIONS(805), - [anon_sym_break] = ACTIONS(805), - [anon_sym_const] = ACTIONS(805), - [anon_sym_continue] = ACTIONS(805), - [anon_sym_default] = ACTIONS(805), - [anon_sym_enum] = ACTIONS(805), - [anon_sym_fn] = ACTIONS(805), - [anon_sym_for] = ACTIONS(805), - [anon_sym_if] = ACTIONS(805), - [anon_sym_impl] = ACTIONS(805), - [anon_sym_let] = ACTIONS(805), - [anon_sym_loop] = ACTIONS(805), - [anon_sym_match] = ACTIONS(805), - [anon_sym_mod] = ACTIONS(805), - [anon_sym_pub] = ACTIONS(805), - [anon_sym_return] = ACTIONS(805), - [anon_sym_static] = ACTIONS(805), - [anon_sym_struct] = ACTIONS(805), - [anon_sym_trait] = ACTIONS(805), - [anon_sym_type] = ACTIONS(805), - [anon_sym_union] = ACTIONS(805), - [anon_sym_unsafe] = ACTIONS(805), - [anon_sym_use] = ACTIONS(805), - [anon_sym_where] = ACTIONS(805), - [anon_sym_while] = ACTIONS(805), - [sym_mutable_specifier] = ACTIONS(805), - [sym_integer_literal] = ACTIONS(807), - [aux_sym_string_literal_token1] = ACTIONS(807), - [sym_char_literal] = ACTIONS(807), - [anon_sym_true] = ACTIONS(805), - [anon_sym_false] = ACTIONS(805), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(805), - [sym_super] = ACTIONS(805), - [sym_crate] = ACTIONS(805), - [sym_metavariable] = ACTIONS(807), - [sym__raw_string_literal_start] = ACTIONS(807), - [sym_float_literal] = ACTIONS(807), + [sym_identifier] = ACTIONS(919), + [anon_sym_SEMI] = ACTIONS(921), + [anon_sym_LPAREN] = ACTIONS(921), + [anon_sym_RPAREN] = ACTIONS(921), + [anon_sym_LBRACK] = ACTIONS(921), + [anon_sym_RBRACK] = ACTIONS(921), + [anon_sym_LBRACE] = ACTIONS(921), + [anon_sym_RBRACE] = ACTIONS(921), + [anon_sym_EQ_GT] = ACTIONS(921), + [anon_sym_COLON] = ACTIONS(919), + [anon_sym_DOLLAR] = ACTIONS(919), + [anon_sym_PLUS] = ACTIONS(919), + [anon_sym_STAR] = ACTIONS(919), + [anon_sym_QMARK] = ACTIONS(921), + [anon_sym_u8] = ACTIONS(919), + [anon_sym_i8] = ACTIONS(919), + [anon_sym_u16] = ACTIONS(919), + [anon_sym_i16] = ACTIONS(919), + [anon_sym_u32] = ACTIONS(919), + [anon_sym_i32] = ACTIONS(919), + [anon_sym_u64] = ACTIONS(919), + [anon_sym_i64] = ACTIONS(919), + [anon_sym_u128] = ACTIONS(919), + [anon_sym_i128] = ACTIONS(919), + [anon_sym_isize] = ACTIONS(919), + [anon_sym_usize] = ACTIONS(919), + [anon_sym_f32] = ACTIONS(919), + [anon_sym_f64] = ACTIONS(919), + [anon_sym_bool] = ACTIONS(919), + [anon_sym_str] = ACTIONS(919), + [anon_sym_char] = ACTIONS(919), + [anon_sym_DASH] = ACTIONS(919), + [anon_sym_SLASH] = ACTIONS(919), + [anon_sym_PERCENT] = ACTIONS(919), + [anon_sym_CARET] = ACTIONS(919), + [anon_sym_BANG] = ACTIONS(919), + [anon_sym_AMP] = ACTIONS(919), + [anon_sym_PIPE] = ACTIONS(919), + [anon_sym_AMP_AMP] = ACTIONS(921), + [anon_sym_PIPE_PIPE] = ACTIONS(921), + [anon_sym_LT_LT] = ACTIONS(919), + [anon_sym_GT_GT] = ACTIONS(919), + [anon_sym_PLUS_EQ] = ACTIONS(921), + [anon_sym_DASH_EQ] = ACTIONS(921), + [anon_sym_STAR_EQ] = ACTIONS(921), + [anon_sym_SLASH_EQ] = ACTIONS(921), + [anon_sym_PERCENT_EQ] = ACTIONS(921), + [anon_sym_CARET_EQ] = ACTIONS(921), + [anon_sym_AMP_EQ] = ACTIONS(921), + [anon_sym_PIPE_EQ] = ACTIONS(921), + [anon_sym_LT_LT_EQ] = ACTIONS(921), + [anon_sym_GT_GT_EQ] = ACTIONS(921), + [anon_sym_EQ] = ACTIONS(919), + [anon_sym_EQ_EQ] = ACTIONS(921), + [anon_sym_BANG_EQ] = ACTIONS(921), + [anon_sym_GT] = ACTIONS(919), + [anon_sym_LT] = ACTIONS(919), + [anon_sym_GT_EQ] = ACTIONS(921), + [anon_sym_LT_EQ] = ACTIONS(921), + [anon_sym_AT] = ACTIONS(921), + [anon_sym__] = ACTIONS(919), + [anon_sym_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT] = ACTIONS(919), + [anon_sym_DOT_DOT_DOT] = ACTIONS(921), + [anon_sym_DOT_DOT_EQ] = ACTIONS(921), + [anon_sym_COMMA] = ACTIONS(921), + [anon_sym_COLON_COLON] = ACTIONS(921), + [anon_sym_DASH_GT] = ACTIONS(921), + [anon_sym_POUND] = ACTIONS(921), + [anon_sym_SQUOTE] = ACTIONS(919), + [anon_sym_as] = ACTIONS(919), + [anon_sym_async] = ACTIONS(919), + [anon_sym_await] = ACTIONS(919), + [anon_sym_break] = ACTIONS(919), + [anon_sym_const] = ACTIONS(919), + [anon_sym_continue] = ACTIONS(919), + [anon_sym_default] = ACTIONS(919), + [anon_sym_enum] = ACTIONS(919), + [anon_sym_fn] = ACTIONS(919), + [anon_sym_for] = ACTIONS(919), + [anon_sym_if] = ACTIONS(919), + [anon_sym_impl] = ACTIONS(919), + [anon_sym_let] = ACTIONS(919), + [anon_sym_loop] = ACTIONS(919), + [anon_sym_match] = ACTIONS(919), + [anon_sym_mod] = ACTIONS(919), + [anon_sym_pub] = ACTIONS(919), + [anon_sym_return] = ACTIONS(919), + [anon_sym_static] = ACTIONS(919), + [anon_sym_struct] = ACTIONS(919), + [anon_sym_trait] = ACTIONS(919), + [anon_sym_type] = ACTIONS(919), + [anon_sym_union] = ACTIONS(919), + [anon_sym_unsafe] = ACTIONS(919), + [anon_sym_use] = ACTIONS(919), + [anon_sym_where] = ACTIONS(919), + [anon_sym_while] = ACTIONS(919), + [sym_mutable_specifier] = ACTIONS(919), + [sym_integer_literal] = ACTIONS(921), + [aux_sym_string_literal_token1] = ACTIONS(921), + [sym_char_literal] = ACTIONS(921), + [anon_sym_true] = ACTIONS(919), + [anon_sym_false] = ACTIONS(919), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(919), + [sym_super] = ACTIONS(919), + [sym_crate] = ACTIONS(919), + [sym_metavariable] = ACTIONS(921), + [sym__raw_string_literal_start] = ACTIONS(921), + [sym_float_literal] = ACTIONS(921), }, [153] = { [sym_line_comment] = STATE(153), [sym_block_comment] = STATE(153), - [sym_identifier] = ACTIONS(809), - [anon_sym_SEMI] = ACTIONS(811), - [anon_sym_LPAREN] = ACTIONS(811), - [anon_sym_RPAREN] = ACTIONS(811), - [anon_sym_LBRACK] = ACTIONS(811), - [anon_sym_RBRACK] = ACTIONS(811), - [anon_sym_LBRACE] = ACTIONS(811), - [anon_sym_RBRACE] = ACTIONS(811), - [anon_sym_EQ_GT] = ACTIONS(811), - [anon_sym_COLON] = ACTIONS(809), - [anon_sym_DOLLAR] = ACTIONS(809), - [anon_sym_PLUS] = ACTIONS(809), - [anon_sym_STAR] = ACTIONS(809), - [anon_sym_QMARK] = ACTIONS(811), - [anon_sym_u8] = ACTIONS(809), - [anon_sym_i8] = ACTIONS(809), - [anon_sym_u16] = ACTIONS(809), - [anon_sym_i16] = ACTIONS(809), - [anon_sym_u32] = ACTIONS(809), - [anon_sym_i32] = ACTIONS(809), - [anon_sym_u64] = ACTIONS(809), - [anon_sym_i64] = ACTIONS(809), - [anon_sym_u128] = ACTIONS(809), - [anon_sym_i128] = ACTIONS(809), - [anon_sym_isize] = ACTIONS(809), - [anon_sym_usize] = ACTIONS(809), - [anon_sym_f32] = ACTIONS(809), - [anon_sym_f64] = ACTIONS(809), - [anon_sym_bool] = ACTIONS(809), - [anon_sym_str] = ACTIONS(809), - [anon_sym_char] = ACTIONS(809), - [anon_sym_DASH] = ACTIONS(809), - [anon_sym_SLASH] = ACTIONS(809), - [anon_sym_PERCENT] = ACTIONS(809), - [anon_sym_CARET] = ACTIONS(809), - [anon_sym_BANG] = ACTIONS(809), - [anon_sym_AMP] = ACTIONS(809), - [anon_sym_PIPE] = ACTIONS(809), - [anon_sym_AMP_AMP] = ACTIONS(811), - [anon_sym_PIPE_PIPE] = ACTIONS(811), - [anon_sym_LT_LT] = ACTIONS(809), - [anon_sym_GT_GT] = ACTIONS(809), - [anon_sym_PLUS_EQ] = ACTIONS(811), - [anon_sym_DASH_EQ] = ACTIONS(811), - [anon_sym_STAR_EQ] = ACTIONS(811), - [anon_sym_SLASH_EQ] = ACTIONS(811), - [anon_sym_PERCENT_EQ] = ACTIONS(811), - [anon_sym_CARET_EQ] = ACTIONS(811), - [anon_sym_AMP_EQ] = ACTIONS(811), - [anon_sym_PIPE_EQ] = ACTIONS(811), - [anon_sym_LT_LT_EQ] = ACTIONS(811), - [anon_sym_GT_GT_EQ] = ACTIONS(811), - [anon_sym_EQ] = ACTIONS(809), - [anon_sym_EQ_EQ] = ACTIONS(811), - [anon_sym_BANG_EQ] = ACTIONS(811), - [anon_sym_GT] = ACTIONS(809), - [anon_sym_LT] = ACTIONS(809), - [anon_sym_GT_EQ] = ACTIONS(811), - [anon_sym_LT_EQ] = ACTIONS(811), - [anon_sym_AT] = ACTIONS(811), - [anon_sym__] = ACTIONS(809), - [anon_sym_DOT] = ACTIONS(809), - [anon_sym_DOT_DOT] = ACTIONS(809), - [anon_sym_DOT_DOT_DOT] = ACTIONS(811), - [anon_sym_DOT_DOT_EQ] = ACTIONS(811), - [anon_sym_COMMA] = ACTIONS(811), - [anon_sym_COLON_COLON] = ACTIONS(811), - [anon_sym_DASH_GT] = ACTIONS(811), - [anon_sym_POUND] = ACTIONS(811), - [anon_sym_SQUOTE] = ACTIONS(809), - [anon_sym_as] = ACTIONS(809), - [anon_sym_async] = ACTIONS(809), - [anon_sym_await] = ACTIONS(809), - [anon_sym_break] = ACTIONS(809), - [anon_sym_const] = ACTIONS(809), - [anon_sym_continue] = ACTIONS(809), - [anon_sym_default] = ACTIONS(809), - [anon_sym_enum] = ACTIONS(809), - [anon_sym_fn] = ACTIONS(809), - [anon_sym_for] = ACTIONS(809), - [anon_sym_if] = ACTIONS(809), - [anon_sym_impl] = ACTIONS(809), - [anon_sym_let] = ACTIONS(809), - [anon_sym_loop] = ACTIONS(809), - [anon_sym_match] = ACTIONS(809), - [anon_sym_mod] = ACTIONS(809), - [anon_sym_pub] = ACTIONS(809), - [anon_sym_return] = ACTIONS(809), - [anon_sym_static] = ACTIONS(809), - [anon_sym_struct] = ACTIONS(809), - [anon_sym_trait] = ACTIONS(809), - [anon_sym_type] = ACTIONS(809), - [anon_sym_union] = ACTIONS(809), - [anon_sym_unsafe] = ACTIONS(809), - [anon_sym_use] = ACTIONS(809), - [anon_sym_where] = ACTIONS(809), - [anon_sym_while] = ACTIONS(809), - [sym_mutable_specifier] = ACTIONS(809), - [sym_integer_literal] = ACTIONS(811), - [aux_sym_string_literal_token1] = ACTIONS(811), - [sym_char_literal] = ACTIONS(811), - [anon_sym_true] = ACTIONS(809), - [anon_sym_false] = ACTIONS(809), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(809), - [sym_super] = ACTIONS(809), - [sym_crate] = ACTIONS(809), - [sym_metavariable] = ACTIONS(811), - [sym__raw_string_literal_start] = ACTIONS(811), - [sym_float_literal] = ACTIONS(811), + [sym_identifier] = ACTIONS(923), + [anon_sym_SEMI] = ACTIONS(925), + [anon_sym_LPAREN] = ACTIONS(925), + [anon_sym_RPAREN] = ACTIONS(925), + [anon_sym_LBRACK] = ACTIONS(925), + [anon_sym_RBRACK] = ACTIONS(925), + [anon_sym_LBRACE] = ACTIONS(925), + [anon_sym_RBRACE] = ACTIONS(925), + [anon_sym_EQ_GT] = ACTIONS(925), + [anon_sym_COLON] = ACTIONS(923), + [anon_sym_DOLLAR] = ACTIONS(923), + [anon_sym_PLUS] = ACTIONS(923), + [anon_sym_STAR] = ACTIONS(923), + [anon_sym_QMARK] = ACTIONS(925), + [anon_sym_u8] = ACTIONS(923), + [anon_sym_i8] = ACTIONS(923), + [anon_sym_u16] = ACTIONS(923), + [anon_sym_i16] = ACTIONS(923), + [anon_sym_u32] = ACTIONS(923), + [anon_sym_i32] = ACTIONS(923), + [anon_sym_u64] = ACTIONS(923), + [anon_sym_i64] = ACTIONS(923), + [anon_sym_u128] = ACTIONS(923), + [anon_sym_i128] = ACTIONS(923), + [anon_sym_isize] = ACTIONS(923), + [anon_sym_usize] = ACTIONS(923), + [anon_sym_f32] = ACTIONS(923), + [anon_sym_f64] = ACTIONS(923), + [anon_sym_bool] = ACTIONS(923), + [anon_sym_str] = ACTIONS(923), + [anon_sym_char] = ACTIONS(923), + [anon_sym_DASH] = ACTIONS(923), + [anon_sym_SLASH] = ACTIONS(923), + [anon_sym_PERCENT] = ACTIONS(923), + [anon_sym_CARET] = ACTIONS(923), + [anon_sym_BANG] = ACTIONS(923), + [anon_sym_AMP] = ACTIONS(923), + [anon_sym_PIPE] = ACTIONS(923), + [anon_sym_AMP_AMP] = ACTIONS(925), + [anon_sym_PIPE_PIPE] = ACTIONS(925), + [anon_sym_LT_LT] = ACTIONS(923), + [anon_sym_GT_GT] = ACTIONS(923), + [anon_sym_PLUS_EQ] = ACTIONS(925), + [anon_sym_DASH_EQ] = ACTIONS(925), + [anon_sym_STAR_EQ] = ACTIONS(925), + [anon_sym_SLASH_EQ] = ACTIONS(925), + [anon_sym_PERCENT_EQ] = ACTIONS(925), + [anon_sym_CARET_EQ] = ACTIONS(925), + [anon_sym_AMP_EQ] = ACTIONS(925), + [anon_sym_PIPE_EQ] = ACTIONS(925), + [anon_sym_LT_LT_EQ] = ACTIONS(925), + [anon_sym_GT_GT_EQ] = ACTIONS(925), + [anon_sym_EQ] = ACTIONS(923), + [anon_sym_EQ_EQ] = ACTIONS(925), + [anon_sym_BANG_EQ] = ACTIONS(925), + [anon_sym_GT] = ACTIONS(923), + [anon_sym_LT] = ACTIONS(923), + [anon_sym_GT_EQ] = ACTIONS(925), + [anon_sym_LT_EQ] = ACTIONS(925), + [anon_sym_AT] = ACTIONS(925), + [anon_sym__] = ACTIONS(923), + [anon_sym_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT] = ACTIONS(923), + [anon_sym_DOT_DOT_DOT] = ACTIONS(925), + [anon_sym_DOT_DOT_EQ] = ACTIONS(925), + [anon_sym_COMMA] = ACTIONS(925), + [anon_sym_COLON_COLON] = ACTIONS(925), + [anon_sym_DASH_GT] = ACTIONS(925), + [anon_sym_POUND] = ACTIONS(925), + [anon_sym_SQUOTE] = ACTIONS(923), + [anon_sym_as] = ACTIONS(923), + [anon_sym_async] = ACTIONS(923), + [anon_sym_await] = ACTIONS(923), + [anon_sym_break] = ACTIONS(923), + [anon_sym_const] = ACTIONS(923), + [anon_sym_continue] = ACTIONS(923), + [anon_sym_default] = ACTIONS(923), + [anon_sym_enum] = ACTIONS(923), + [anon_sym_fn] = ACTIONS(923), + [anon_sym_for] = ACTIONS(923), + [anon_sym_if] = ACTIONS(923), + [anon_sym_impl] = ACTIONS(923), + [anon_sym_let] = ACTIONS(923), + [anon_sym_loop] = ACTIONS(923), + [anon_sym_match] = ACTIONS(923), + [anon_sym_mod] = ACTIONS(923), + [anon_sym_pub] = ACTIONS(923), + [anon_sym_return] = ACTIONS(923), + [anon_sym_static] = ACTIONS(923), + [anon_sym_struct] = ACTIONS(923), + [anon_sym_trait] = ACTIONS(923), + [anon_sym_type] = ACTIONS(923), + [anon_sym_union] = ACTIONS(923), + [anon_sym_unsafe] = ACTIONS(923), + [anon_sym_use] = ACTIONS(923), + [anon_sym_where] = ACTIONS(923), + [anon_sym_while] = ACTIONS(923), + [sym_mutable_specifier] = ACTIONS(923), + [sym_integer_literal] = ACTIONS(925), + [aux_sym_string_literal_token1] = ACTIONS(925), + [sym_char_literal] = ACTIONS(925), + [anon_sym_true] = ACTIONS(923), + [anon_sym_false] = ACTIONS(923), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(923), + [sym_super] = ACTIONS(923), + [sym_crate] = ACTIONS(923), + [sym_metavariable] = ACTIONS(925), + [sym__raw_string_literal_start] = ACTIONS(925), + [sym_float_literal] = ACTIONS(925), }, [154] = { [sym_line_comment] = STATE(154), [sym_block_comment] = STATE(154), - [aux_sym__non_special_token_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(677), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_RBRACK] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_EQ_GT] = ACTIONS(677), - [anon_sym_COLON] = ACTIONS(687), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(687), - [anon_sym_STAR] = ACTIONS(687), - [anon_sym_QMARK] = ACTIONS(677), - [anon_sym_u8] = ACTIONS(813), - [anon_sym_i8] = ACTIONS(813), - [anon_sym_u16] = ACTIONS(813), - [anon_sym_i16] = ACTIONS(813), - [anon_sym_u32] = ACTIONS(813), - [anon_sym_i32] = ACTIONS(813), - [anon_sym_u64] = ACTIONS(813), - [anon_sym_i64] = ACTIONS(813), - [anon_sym_u128] = ACTIONS(813), - [anon_sym_i128] = ACTIONS(813), - [anon_sym_isize] = ACTIONS(813), - [anon_sym_usize] = ACTIONS(813), - [anon_sym_f32] = ACTIONS(813), - [anon_sym_f64] = ACTIONS(813), - [anon_sym_bool] = ACTIONS(813), - [anon_sym_str] = ACTIONS(813), - [anon_sym_char] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(687), - [anon_sym_SLASH] = ACTIONS(687), - [anon_sym_PERCENT] = ACTIONS(687), - [anon_sym_CARET] = ACTIONS(687), - [anon_sym_BANG] = ACTIONS(687), - [anon_sym_AMP] = ACTIONS(687), - [anon_sym_PIPE] = ACTIONS(687), - [anon_sym_AMP_AMP] = ACTIONS(677), - [anon_sym_PIPE_PIPE] = ACTIONS(677), - [anon_sym_LT_LT] = ACTIONS(687), - [anon_sym_GT_GT] = ACTIONS(687), - [anon_sym_PLUS_EQ] = ACTIONS(677), - [anon_sym_DASH_EQ] = ACTIONS(677), - [anon_sym_STAR_EQ] = ACTIONS(677), - [anon_sym_SLASH_EQ] = ACTIONS(677), - [anon_sym_PERCENT_EQ] = ACTIONS(677), - [anon_sym_CARET_EQ] = ACTIONS(677), - [anon_sym_AMP_EQ] = ACTIONS(677), - [anon_sym_PIPE_EQ] = ACTIONS(677), - [anon_sym_LT_LT_EQ] = ACTIONS(677), - [anon_sym_GT_GT_EQ] = ACTIONS(677), - [anon_sym_EQ] = ACTIONS(687), - [anon_sym_EQ_EQ] = ACTIONS(677), - [anon_sym_BANG_EQ] = ACTIONS(677), - [anon_sym_GT] = ACTIONS(687), - [anon_sym_LT] = ACTIONS(687), - [anon_sym_GT_EQ] = ACTIONS(677), - [anon_sym_LT_EQ] = ACTIONS(677), - [anon_sym_AT] = ACTIONS(677), - [anon_sym__] = ACTIONS(687), - [anon_sym_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT] = ACTIONS(687), - [anon_sym_DOT_DOT_DOT] = ACTIONS(677), - [anon_sym_DOT_DOT_EQ] = ACTIONS(677), - [anon_sym_COMMA] = ACTIONS(677), - [anon_sym_COLON_COLON] = ACTIONS(677), - [anon_sym_DASH_GT] = ACTIONS(677), - [anon_sym_POUND] = ACTIONS(677), - [anon_sym_SQUOTE] = ACTIONS(813), - [anon_sym_as] = ACTIONS(813), - [anon_sym_async] = ACTIONS(813), - [anon_sym_await] = ACTIONS(813), - [anon_sym_break] = ACTIONS(813), - [anon_sym_const] = ACTIONS(813), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_default] = ACTIONS(813), - [anon_sym_enum] = ACTIONS(813), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_for] = ACTIONS(813), - [anon_sym_if] = ACTIONS(813), - [anon_sym_impl] = ACTIONS(813), - [anon_sym_let] = ACTIONS(813), - [anon_sym_loop] = ACTIONS(813), - [anon_sym_match] = ACTIONS(813), - [anon_sym_mod] = ACTIONS(813), - [anon_sym_pub] = ACTIONS(813), - [anon_sym_return] = ACTIONS(813), - [anon_sym_static] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(813), - [anon_sym_trait] = ACTIONS(813), - [anon_sym_type] = ACTIONS(813), - [anon_sym_union] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_use] = ACTIONS(813), - [anon_sym_where] = ACTIONS(813), - [anon_sym_while] = ACTIONS(813), - [sym_mutable_specifier] = ACTIONS(813), - [sym_integer_literal] = ACTIONS(815), - [aux_sym_string_literal_token1] = ACTIONS(815), - [sym_char_literal] = ACTIONS(815), - [anon_sym_true] = ACTIONS(813), - [anon_sym_false] = ACTIONS(813), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(813), - [sym_super] = ACTIONS(813), - [sym_crate] = ACTIONS(813), - [sym__raw_string_literal_start] = ACTIONS(815), - [sym_float_literal] = ACTIONS(815), + [sym_identifier] = ACTIONS(927), + [anon_sym_SEMI] = ACTIONS(929), + [anon_sym_LPAREN] = ACTIONS(929), + [anon_sym_RPAREN] = ACTIONS(929), + [anon_sym_LBRACK] = ACTIONS(929), + [anon_sym_RBRACK] = ACTIONS(929), + [anon_sym_LBRACE] = ACTIONS(929), + [anon_sym_RBRACE] = ACTIONS(929), + [anon_sym_EQ_GT] = ACTIONS(929), + [anon_sym_COLON] = ACTIONS(927), + [anon_sym_DOLLAR] = ACTIONS(927), + [anon_sym_PLUS] = ACTIONS(927), + [anon_sym_STAR] = ACTIONS(927), + [anon_sym_QMARK] = ACTIONS(929), + [anon_sym_u8] = ACTIONS(927), + [anon_sym_i8] = ACTIONS(927), + [anon_sym_u16] = ACTIONS(927), + [anon_sym_i16] = ACTIONS(927), + [anon_sym_u32] = ACTIONS(927), + [anon_sym_i32] = ACTIONS(927), + [anon_sym_u64] = ACTIONS(927), + [anon_sym_i64] = ACTIONS(927), + [anon_sym_u128] = ACTIONS(927), + [anon_sym_i128] = ACTIONS(927), + [anon_sym_isize] = ACTIONS(927), + [anon_sym_usize] = ACTIONS(927), + [anon_sym_f32] = ACTIONS(927), + [anon_sym_f64] = ACTIONS(927), + [anon_sym_bool] = ACTIONS(927), + [anon_sym_str] = ACTIONS(927), + [anon_sym_char] = ACTIONS(927), + [anon_sym_DASH] = ACTIONS(927), + [anon_sym_SLASH] = ACTIONS(927), + [anon_sym_PERCENT] = ACTIONS(927), + [anon_sym_CARET] = ACTIONS(927), + [anon_sym_BANG] = ACTIONS(927), + [anon_sym_AMP] = ACTIONS(927), + [anon_sym_PIPE] = ACTIONS(927), + [anon_sym_AMP_AMP] = ACTIONS(929), + [anon_sym_PIPE_PIPE] = ACTIONS(929), + [anon_sym_LT_LT] = ACTIONS(927), + [anon_sym_GT_GT] = ACTIONS(927), + [anon_sym_PLUS_EQ] = ACTIONS(929), + [anon_sym_DASH_EQ] = ACTIONS(929), + [anon_sym_STAR_EQ] = ACTIONS(929), + [anon_sym_SLASH_EQ] = ACTIONS(929), + [anon_sym_PERCENT_EQ] = ACTIONS(929), + [anon_sym_CARET_EQ] = ACTIONS(929), + [anon_sym_AMP_EQ] = ACTIONS(929), + [anon_sym_PIPE_EQ] = ACTIONS(929), + [anon_sym_LT_LT_EQ] = ACTIONS(929), + [anon_sym_GT_GT_EQ] = ACTIONS(929), + [anon_sym_EQ] = ACTIONS(927), + [anon_sym_EQ_EQ] = ACTIONS(929), + [anon_sym_BANG_EQ] = ACTIONS(929), + [anon_sym_GT] = ACTIONS(927), + [anon_sym_LT] = ACTIONS(927), + [anon_sym_GT_EQ] = ACTIONS(929), + [anon_sym_LT_EQ] = ACTIONS(929), + [anon_sym_AT] = ACTIONS(929), + [anon_sym__] = ACTIONS(927), + [anon_sym_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT] = ACTIONS(927), + [anon_sym_DOT_DOT_DOT] = ACTIONS(929), + [anon_sym_DOT_DOT_EQ] = ACTIONS(929), + [anon_sym_COMMA] = ACTIONS(929), + [anon_sym_COLON_COLON] = ACTIONS(929), + [anon_sym_DASH_GT] = ACTIONS(929), + [anon_sym_POUND] = ACTIONS(929), + [anon_sym_SQUOTE] = ACTIONS(927), + [anon_sym_as] = ACTIONS(927), + [anon_sym_async] = ACTIONS(927), + [anon_sym_await] = ACTIONS(927), + [anon_sym_break] = ACTIONS(927), + [anon_sym_const] = ACTIONS(927), + [anon_sym_continue] = ACTIONS(927), + [anon_sym_default] = ACTIONS(927), + [anon_sym_enum] = ACTIONS(927), + [anon_sym_fn] = ACTIONS(927), + [anon_sym_for] = ACTIONS(927), + [anon_sym_if] = ACTIONS(927), + [anon_sym_impl] = ACTIONS(927), + [anon_sym_let] = ACTIONS(927), + [anon_sym_loop] = ACTIONS(927), + [anon_sym_match] = ACTIONS(927), + [anon_sym_mod] = ACTIONS(927), + [anon_sym_pub] = ACTIONS(927), + [anon_sym_return] = ACTIONS(927), + [anon_sym_static] = ACTIONS(927), + [anon_sym_struct] = ACTIONS(927), + [anon_sym_trait] = ACTIONS(927), + [anon_sym_type] = ACTIONS(927), + [anon_sym_union] = ACTIONS(927), + [anon_sym_unsafe] = ACTIONS(927), + [anon_sym_use] = ACTIONS(927), + [anon_sym_where] = ACTIONS(927), + [anon_sym_while] = ACTIONS(927), + [sym_mutable_specifier] = ACTIONS(927), + [sym_integer_literal] = ACTIONS(929), + [aux_sym_string_literal_token1] = ACTIONS(929), + [sym_char_literal] = ACTIONS(929), + [anon_sym_true] = ACTIONS(927), + [anon_sym_false] = ACTIONS(927), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(927), + [sym_super] = ACTIONS(927), + [sym_crate] = ACTIONS(927), + [sym_metavariable] = ACTIONS(929), + [sym__raw_string_literal_start] = ACTIONS(929), + [sym_float_literal] = ACTIONS(929), }, [155] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1555), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(155), [sym_block_comment] = STATE(155), - [sym_identifier] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_EQ_GT] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(817), - [anon_sym_DOLLAR] = ACTIONS(817), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_QMARK] = ACTIONS(819), - [anon_sym_u8] = ACTIONS(817), - [anon_sym_i8] = ACTIONS(817), - [anon_sym_u16] = ACTIONS(817), - [anon_sym_i16] = ACTIONS(817), - [anon_sym_u32] = ACTIONS(817), - [anon_sym_i32] = ACTIONS(817), - [anon_sym_u64] = ACTIONS(817), - [anon_sym_i64] = ACTIONS(817), - [anon_sym_u128] = ACTIONS(817), - [anon_sym_i128] = ACTIONS(817), - [anon_sym_isize] = ACTIONS(817), - [anon_sym_usize] = ACTIONS(817), - [anon_sym_f32] = ACTIONS(817), - [anon_sym_f64] = ACTIONS(817), - [anon_sym_bool] = ACTIONS(817), - [anon_sym_str] = ACTIONS(817), - [anon_sym_char] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(817), - [anon_sym_PERCENT] = ACTIONS(817), - [anon_sym_CARET] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_AMP] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(817), - [anon_sym_AMP_AMP] = ACTIONS(819), - [anon_sym_PIPE_PIPE] = ACTIONS(819), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(817), - [anon_sym_PLUS_EQ] = ACTIONS(819), - [anon_sym_DASH_EQ] = ACTIONS(819), - [anon_sym_STAR_EQ] = ACTIONS(819), - [anon_sym_SLASH_EQ] = ACTIONS(819), - [anon_sym_PERCENT_EQ] = ACTIONS(819), - [anon_sym_CARET_EQ] = ACTIONS(819), - [anon_sym_AMP_EQ] = ACTIONS(819), - [anon_sym_PIPE_EQ] = ACTIONS(819), - [anon_sym_LT_LT_EQ] = ACTIONS(819), - [anon_sym_GT_GT_EQ] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(817), - [anon_sym_EQ_EQ] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(819), - [anon_sym_GT] = ACTIONS(817), - [anon_sym_LT] = ACTIONS(817), - [anon_sym_GT_EQ] = ACTIONS(819), - [anon_sym_LT_EQ] = ACTIONS(819), - [anon_sym_AT] = ACTIONS(819), - [anon_sym__] = ACTIONS(817), - [anon_sym_DOT] = ACTIONS(817), - [anon_sym_DOT_DOT] = ACTIONS(817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(819), - [anon_sym_DOT_DOT_EQ] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(819), - [anon_sym_COLON_COLON] = ACTIONS(819), - [anon_sym_DASH_GT] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_as] = ACTIONS(817), - [anon_sym_async] = ACTIONS(817), - [anon_sym_await] = ACTIONS(817), - [anon_sym_break] = ACTIONS(817), - [anon_sym_const] = ACTIONS(817), - [anon_sym_continue] = ACTIONS(817), - [anon_sym_default] = ACTIONS(817), - [anon_sym_enum] = ACTIONS(817), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_for] = ACTIONS(817), - [anon_sym_if] = ACTIONS(817), - [anon_sym_impl] = ACTIONS(817), - [anon_sym_let] = ACTIONS(817), - [anon_sym_loop] = ACTIONS(817), - [anon_sym_match] = ACTIONS(817), - [anon_sym_mod] = ACTIONS(817), - [anon_sym_pub] = ACTIONS(817), - [anon_sym_return] = ACTIONS(817), - [anon_sym_static] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(817), - [anon_sym_trait] = ACTIONS(817), - [anon_sym_type] = ACTIONS(817), - [anon_sym_union] = ACTIONS(817), - [anon_sym_unsafe] = ACTIONS(817), - [anon_sym_use] = ACTIONS(817), - [anon_sym_where] = ACTIONS(817), - [anon_sym_while] = ACTIONS(817), - [sym_mutable_specifier] = ACTIONS(817), - [sym_integer_literal] = ACTIONS(819), - [aux_sym_string_literal_token1] = ACTIONS(819), - [sym_char_literal] = ACTIONS(819), - [anon_sym_true] = ACTIONS(817), - [anon_sym_false] = ACTIONS(817), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(817), - [sym_super] = ACTIONS(817), - [sym_crate] = ACTIONS(817), - [sym_metavariable] = ACTIONS(819), - [sym__raw_string_literal_start] = ACTIONS(819), - [sym_float_literal] = ACTIONS(819), + [aux_sym_enum_variant_list_repeat1] = STATE(151), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(931), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(933), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [156] = { [sym_line_comment] = STATE(156), [sym_block_comment] = STATE(156), - [aux_sym__non_special_token_repeat1] = STATE(156), - [sym_identifier] = ACTIONS(739), - [anon_sym_SEMI] = ACTIONS(821), - [anon_sym_LPAREN] = ACTIONS(744), - [anon_sym_RPAREN] = ACTIONS(744), - [anon_sym_LBRACK] = ACTIONS(744), - [anon_sym_RBRACK] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(744), - [anon_sym_RBRACE] = ACTIONS(744), - [anon_sym_EQ_GT] = ACTIONS(821), - [anon_sym_COLON] = ACTIONS(824), - [anon_sym_DOLLAR] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(824), - [anon_sym_STAR] = ACTIONS(824), - [anon_sym_QMARK] = ACTIONS(821), - [anon_sym_u8] = ACTIONS(739), - [anon_sym_i8] = ACTIONS(739), - [anon_sym_u16] = ACTIONS(739), - [anon_sym_i16] = ACTIONS(739), - [anon_sym_u32] = ACTIONS(739), - [anon_sym_i32] = ACTIONS(739), - [anon_sym_u64] = ACTIONS(739), - [anon_sym_i64] = ACTIONS(739), - [anon_sym_u128] = ACTIONS(739), - [anon_sym_i128] = ACTIONS(739), - [anon_sym_isize] = ACTIONS(739), - [anon_sym_usize] = ACTIONS(739), - [anon_sym_f32] = ACTIONS(739), - [anon_sym_f64] = ACTIONS(739), - [anon_sym_bool] = ACTIONS(739), - [anon_sym_str] = ACTIONS(739), - [anon_sym_char] = ACTIONS(739), - [anon_sym_DASH] = ACTIONS(824), - [anon_sym_SLASH] = ACTIONS(824), - [anon_sym_PERCENT] = ACTIONS(824), - [anon_sym_CARET] = ACTIONS(824), - [anon_sym_BANG] = ACTIONS(824), - [anon_sym_AMP] = ACTIONS(824), - [anon_sym_PIPE] = ACTIONS(824), - [anon_sym_AMP_AMP] = ACTIONS(821), - [anon_sym_PIPE_PIPE] = ACTIONS(821), - [anon_sym_LT_LT] = ACTIONS(824), - [anon_sym_GT_GT] = ACTIONS(824), - [anon_sym_PLUS_EQ] = ACTIONS(821), - [anon_sym_DASH_EQ] = ACTIONS(821), - [anon_sym_STAR_EQ] = ACTIONS(821), - [anon_sym_SLASH_EQ] = ACTIONS(821), - [anon_sym_PERCENT_EQ] = ACTIONS(821), - [anon_sym_CARET_EQ] = ACTIONS(821), - [anon_sym_AMP_EQ] = ACTIONS(821), - [anon_sym_PIPE_EQ] = ACTIONS(821), - [anon_sym_LT_LT_EQ] = ACTIONS(821), - [anon_sym_GT_GT_EQ] = ACTIONS(821), - [anon_sym_EQ] = ACTIONS(824), - [anon_sym_EQ_EQ] = ACTIONS(821), - [anon_sym_BANG_EQ] = ACTIONS(821), - [anon_sym_GT] = ACTIONS(824), - [anon_sym_LT] = ACTIONS(824), - [anon_sym_GT_EQ] = ACTIONS(821), - [anon_sym_LT_EQ] = ACTIONS(821), - [anon_sym_AT] = ACTIONS(821), - [anon_sym__] = ACTIONS(824), - [anon_sym_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT] = ACTIONS(824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(821), - [anon_sym_DOT_DOT_EQ] = ACTIONS(821), - [anon_sym_COMMA] = ACTIONS(821), - [anon_sym_COLON_COLON] = ACTIONS(821), - [anon_sym_DASH_GT] = ACTIONS(821), - [anon_sym_POUND] = ACTIONS(821), - [anon_sym_SQUOTE] = ACTIONS(739), - [anon_sym_as] = ACTIONS(739), - [anon_sym_async] = ACTIONS(739), - [anon_sym_await] = ACTIONS(739), - [anon_sym_break] = ACTIONS(739), - [anon_sym_const] = ACTIONS(739), - [anon_sym_continue] = ACTIONS(739), - [anon_sym_default] = ACTIONS(739), - [anon_sym_enum] = ACTIONS(739), - [anon_sym_fn] = ACTIONS(739), - [anon_sym_for] = ACTIONS(739), - [anon_sym_if] = ACTIONS(739), - [anon_sym_impl] = ACTIONS(739), - [anon_sym_let] = ACTIONS(739), - [anon_sym_loop] = ACTIONS(739), - [anon_sym_match] = ACTIONS(739), - [anon_sym_mod] = ACTIONS(739), - [anon_sym_pub] = ACTIONS(739), - [anon_sym_return] = ACTIONS(739), - [anon_sym_static] = ACTIONS(739), - [anon_sym_struct] = ACTIONS(739), - [anon_sym_trait] = ACTIONS(739), - [anon_sym_type] = ACTIONS(739), - [anon_sym_union] = ACTIONS(739), - [anon_sym_unsafe] = ACTIONS(739), - [anon_sym_use] = ACTIONS(739), - [anon_sym_where] = ACTIONS(739), - [anon_sym_while] = ACTIONS(739), - [sym_mutable_specifier] = ACTIONS(739), - [sym_integer_literal] = ACTIONS(744), - [aux_sym_string_literal_token1] = ACTIONS(744), - [sym_char_literal] = ACTIONS(744), - [anon_sym_true] = ACTIONS(739), - [anon_sym_false] = ACTIONS(739), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(739), - [sym_super] = ACTIONS(739), - [sym_crate] = ACTIONS(739), - [sym__raw_string_literal_start] = ACTIONS(744), - [sym_float_literal] = ACTIONS(744), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(937), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_u8] = ACTIONS(935), + [anon_sym_i8] = ACTIONS(935), + [anon_sym_u16] = ACTIONS(935), + [anon_sym_i16] = ACTIONS(935), + [anon_sym_u32] = ACTIONS(935), + [anon_sym_i32] = ACTIONS(935), + [anon_sym_u64] = ACTIONS(935), + [anon_sym_i64] = ACTIONS(935), + [anon_sym_u128] = ACTIONS(935), + [anon_sym_i128] = ACTIONS(935), + [anon_sym_isize] = ACTIONS(935), + [anon_sym_usize] = ACTIONS(935), + [anon_sym_f32] = ACTIONS(935), + [anon_sym_f64] = ACTIONS(935), + [anon_sym_bool] = ACTIONS(935), + [anon_sym_str] = ACTIONS(935), + [anon_sym_char] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(937), + [anon_sym__] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_async] = ACTIONS(935), + [anon_sym_await] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_default] = ACTIONS(935), + [anon_sym_enum] = ACTIONS(935), + [anon_sym_fn] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_pub] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_static] = ACTIONS(935), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_trait] = ACTIONS(935), + [anon_sym_type] = ACTIONS(935), + [anon_sym_union] = ACTIONS(935), + [anon_sym_unsafe] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_where] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [sym_mutable_specifier] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(937), + [aux_sym_string_literal_token1] = ACTIONS(937), + [sym_char_literal] = ACTIONS(937), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(935), + [sym_super] = ACTIONS(935), + [sym_crate] = ACTIONS(935), + [sym_metavariable] = ACTIONS(937), + [sym__raw_string_literal_start] = ACTIONS(937), + [sym_float_literal] = ACTIONS(937), }, [157] = { [sym_line_comment] = STATE(157), [sym_block_comment] = STATE(157), - [sym_identifier] = ACTIONS(827), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_RBRACK] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_EQ_GT] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(827), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_STAR] = ACTIONS(827), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_u8] = ACTIONS(827), - [anon_sym_i8] = ACTIONS(827), - [anon_sym_u16] = ACTIONS(827), - [anon_sym_i16] = ACTIONS(827), - [anon_sym_u32] = ACTIONS(827), - [anon_sym_i32] = ACTIONS(827), - [anon_sym_u64] = ACTIONS(827), - [anon_sym_i64] = ACTIONS(827), - [anon_sym_u128] = ACTIONS(827), - [anon_sym_i128] = ACTIONS(827), - [anon_sym_isize] = ACTIONS(827), - [anon_sym_usize] = ACTIONS(827), - [anon_sym_f32] = ACTIONS(827), - [anon_sym_f64] = ACTIONS(827), - [anon_sym_bool] = ACTIONS(827), - [anon_sym_str] = ACTIONS(827), - [anon_sym_char] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(827), - [anon_sym_PERCENT] = ACTIONS(827), - [anon_sym_CARET] = ACTIONS(827), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_AMP] = ACTIONS(827), - [anon_sym_PIPE] = ACTIONS(827), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(827), - [anon_sym_GT_GT] = ACTIONS(827), - [anon_sym_PLUS_EQ] = ACTIONS(829), - [anon_sym_DASH_EQ] = ACTIONS(829), - [anon_sym_STAR_EQ] = ACTIONS(829), - [anon_sym_SLASH_EQ] = ACTIONS(829), - [anon_sym_PERCENT_EQ] = ACTIONS(829), - [anon_sym_CARET_EQ] = ACTIONS(829), - [anon_sym_AMP_EQ] = ACTIONS(829), - [anon_sym_PIPE_EQ] = ACTIONS(829), - [anon_sym_LT_LT_EQ] = ACTIONS(829), - [anon_sym_GT_GT_EQ] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(827), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(829), - [anon_sym__] = ACTIONS(827), - [anon_sym_DOT] = ACTIONS(827), - [anon_sym_DOT_DOT] = ACTIONS(827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [anon_sym_COMMA] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(829), - [anon_sym_DASH_GT] = ACTIONS(829), - [anon_sym_POUND] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(827), - [anon_sym_as] = ACTIONS(827), - [anon_sym_async] = ACTIONS(827), - [anon_sym_await] = ACTIONS(827), - [anon_sym_break] = ACTIONS(827), - [anon_sym_const] = ACTIONS(827), - [anon_sym_continue] = ACTIONS(827), - [anon_sym_default] = ACTIONS(827), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_fn] = ACTIONS(827), - [anon_sym_for] = ACTIONS(827), - [anon_sym_if] = ACTIONS(827), - [anon_sym_impl] = ACTIONS(827), - [anon_sym_let] = ACTIONS(827), - [anon_sym_loop] = ACTIONS(827), - [anon_sym_match] = ACTIONS(827), - [anon_sym_mod] = ACTIONS(827), - [anon_sym_pub] = ACTIONS(827), - [anon_sym_return] = ACTIONS(827), - [anon_sym_static] = ACTIONS(827), - [anon_sym_struct] = ACTIONS(827), - [anon_sym_trait] = ACTIONS(827), - [anon_sym_type] = ACTIONS(827), - [anon_sym_union] = ACTIONS(827), - [anon_sym_unsafe] = ACTIONS(827), - [anon_sym_use] = ACTIONS(827), - [anon_sym_where] = ACTIONS(827), - [anon_sym_while] = ACTIONS(827), - [sym_mutable_specifier] = ACTIONS(827), - [sym_integer_literal] = ACTIONS(829), - [aux_sym_string_literal_token1] = ACTIONS(829), - [sym_char_literal] = ACTIONS(829), - [anon_sym_true] = ACTIONS(827), - [anon_sym_false] = ACTIONS(827), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(827), - [sym_super] = ACTIONS(827), - [sym_crate] = ACTIONS(827), - [sym_metavariable] = ACTIONS(829), - [sym__raw_string_literal_start] = ACTIONS(829), - [sym_float_literal] = ACTIONS(829), + [sym_identifier] = ACTIONS(745), + [anon_sym_SEMI] = ACTIONS(747), + [anon_sym_LPAREN] = ACTIONS(747), + [anon_sym_RPAREN] = ACTIONS(747), + [anon_sym_LBRACK] = ACTIONS(747), + [anon_sym_RBRACK] = ACTIONS(747), + [anon_sym_LBRACE] = ACTIONS(747), + [anon_sym_RBRACE] = ACTIONS(747), + [anon_sym_EQ_GT] = ACTIONS(747), + [anon_sym_COLON] = ACTIONS(745), + [anon_sym_DOLLAR] = ACTIONS(745), + [anon_sym_PLUS] = ACTIONS(745), + [anon_sym_STAR] = ACTIONS(745), + [anon_sym_QMARK] = ACTIONS(747), + [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(745), + [anon_sym_SLASH] = ACTIONS(745), + [anon_sym_PERCENT] = ACTIONS(745), + [anon_sym_CARET] = ACTIONS(745), + [anon_sym_BANG] = ACTIONS(745), + [anon_sym_AMP] = ACTIONS(745), + [anon_sym_PIPE] = ACTIONS(745), + [anon_sym_AMP_AMP] = ACTIONS(747), + [anon_sym_PIPE_PIPE] = ACTIONS(747), + [anon_sym_LT_LT] = ACTIONS(745), + [anon_sym_GT_GT] = ACTIONS(745), + [anon_sym_PLUS_EQ] = ACTIONS(747), + [anon_sym_DASH_EQ] = ACTIONS(747), + [anon_sym_STAR_EQ] = ACTIONS(747), + [anon_sym_SLASH_EQ] = ACTIONS(747), + [anon_sym_PERCENT_EQ] = ACTIONS(747), + [anon_sym_CARET_EQ] = ACTIONS(747), + [anon_sym_AMP_EQ] = ACTIONS(747), + [anon_sym_PIPE_EQ] = ACTIONS(747), + [anon_sym_LT_LT_EQ] = ACTIONS(747), + [anon_sym_GT_GT_EQ] = ACTIONS(747), + [anon_sym_EQ] = ACTIONS(745), + [anon_sym_EQ_EQ] = ACTIONS(747), + [anon_sym_BANG_EQ] = ACTIONS(747), + [anon_sym_GT] = ACTIONS(745), + [anon_sym_LT] = ACTIONS(745), + [anon_sym_GT_EQ] = ACTIONS(747), + [anon_sym_LT_EQ] = ACTIONS(747), + [anon_sym_AT] = ACTIONS(747), + [anon_sym__] = ACTIONS(745), + [anon_sym_DOT] = ACTIONS(745), + [anon_sym_DOT_DOT] = ACTIONS(745), + [anon_sym_DOT_DOT_DOT] = ACTIONS(747), + [anon_sym_DOT_DOT_EQ] = ACTIONS(747), + [anon_sym_COMMA] = ACTIONS(747), + [anon_sym_COLON_COLON] = ACTIONS(747), + [anon_sym_DASH_GT] = ACTIONS(747), + [anon_sym_POUND] = ACTIONS(747), + [anon_sym_SQUOTE] = ACTIONS(745), + [anon_sym_as] = ACTIONS(745), + [anon_sym_async] = ACTIONS(745), + [anon_sym_await] = ACTIONS(745), + [anon_sym_break] = ACTIONS(745), + [anon_sym_const] = ACTIONS(745), + [anon_sym_continue] = ACTIONS(745), + [anon_sym_default] = ACTIONS(745), + [anon_sym_enum] = ACTIONS(745), + [anon_sym_fn] = ACTIONS(745), + [anon_sym_for] = ACTIONS(745), + [anon_sym_if] = ACTIONS(745), + [anon_sym_impl] = ACTIONS(745), + [anon_sym_let] = ACTIONS(745), + [anon_sym_loop] = ACTIONS(745), + [anon_sym_match] = ACTIONS(745), + [anon_sym_mod] = ACTIONS(745), + [anon_sym_pub] = ACTIONS(745), + [anon_sym_return] = ACTIONS(745), + [anon_sym_static] = ACTIONS(745), + [anon_sym_struct] = ACTIONS(745), + [anon_sym_trait] = ACTIONS(745), + [anon_sym_type] = ACTIONS(745), + [anon_sym_union] = ACTIONS(745), + [anon_sym_unsafe] = ACTIONS(745), + [anon_sym_use] = ACTIONS(745), + [anon_sym_where] = ACTIONS(745), + [anon_sym_while] = ACTIONS(745), + [sym_mutable_specifier] = ACTIONS(745), + [sym_integer_literal] = ACTIONS(747), + [aux_sym_string_literal_token1] = ACTIONS(747), + [sym_char_literal] = ACTIONS(747), + [anon_sym_true] = ACTIONS(745), + [anon_sym_false] = ACTIONS(745), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(745), + [sym_super] = ACTIONS(745), + [sym_crate] = ACTIONS(745), + [sym_metavariable] = ACTIONS(747), + [sym__raw_string_literal_start] = ACTIONS(747), + [sym_float_literal] = ACTIONS(747), }, [158] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1549), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(158), [sym_block_comment] = STATE(158), - [sym_identifier] = ACTIONS(831), - [anon_sym_SEMI] = ACTIONS(833), - [anon_sym_LPAREN] = ACTIONS(833), - [anon_sym_RPAREN] = ACTIONS(833), - [anon_sym_LBRACK] = ACTIONS(833), - [anon_sym_RBRACK] = ACTIONS(833), - [anon_sym_LBRACE] = ACTIONS(833), - [anon_sym_RBRACE] = ACTIONS(833), - [anon_sym_EQ_GT] = ACTIONS(833), - [anon_sym_COLON] = ACTIONS(831), - [anon_sym_DOLLAR] = ACTIONS(831), - [anon_sym_PLUS] = ACTIONS(831), - [anon_sym_STAR] = ACTIONS(831), - [anon_sym_QMARK] = ACTIONS(833), - [anon_sym_u8] = ACTIONS(831), - [anon_sym_i8] = ACTIONS(831), - [anon_sym_u16] = ACTIONS(831), - [anon_sym_i16] = ACTIONS(831), - [anon_sym_u32] = ACTIONS(831), - [anon_sym_i32] = ACTIONS(831), - [anon_sym_u64] = ACTIONS(831), - [anon_sym_i64] = ACTIONS(831), - [anon_sym_u128] = ACTIONS(831), - [anon_sym_i128] = ACTIONS(831), - [anon_sym_isize] = ACTIONS(831), - [anon_sym_usize] = ACTIONS(831), - [anon_sym_f32] = ACTIONS(831), - [anon_sym_f64] = ACTIONS(831), - [anon_sym_bool] = ACTIONS(831), - [anon_sym_str] = ACTIONS(831), - [anon_sym_char] = ACTIONS(831), - [anon_sym_DASH] = ACTIONS(831), - [anon_sym_SLASH] = ACTIONS(831), - [anon_sym_PERCENT] = ACTIONS(831), - [anon_sym_CARET] = ACTIONS(831), - [anon_sym_BANG] = ACTIONS(831), - [anon_sym_AMP] = ACTIONS(831), - [anon_sym_PIPE] = ACTIONS(831), - [anon_sym_AMP_AMP] = ACTIONS(833), - [anon_sym_PIPE_PIPE] = ACTIONS(833), - [anon_sym_LT_LT] = ACTIONS(831), - [anon_sym_GT_GT] = ACTIONS(831), - [anon_sym_PLUS_EQ] = ACTIONS(833), - [anon_sym_DASH_EQ] = ACTIONS(833), - [anon_sym_STAR_EQ] = ACTIONS(833), - [anon_sym_SLASH_EQ] = ACTIONS(833), - [anon_sym_PERCENT_EQ] = ACTIONS(833), - [anon_sym_CARET_EQ] = ACTIONS(833), - [anon_sym_AMP_EQ] = ACTIONS(833), - [anon_sym_PIPE_EQ] = ACTIONS(833), - [anon_sym_LT_LT_EQ] = ACTIONS(833), - [anon_sym_GT_GT_EQ] = ACTIONS(833), - [anon_sym_EQ] = ACTIONS(831), - [anon_sym_EQ_EQ] = ACTIONS(833), - [anon_sym_BANG_EQ] = ACTIONS(833), - [anon_sym_GT] = ACTIONS(831), - [anon_sym_LT] = ACTIONS(831), - [anon_sym_GT_EQ] = ACTIONS(833), - [anon_sym_LT_EQ] = ACTIONS(833), - [anon_sym_AT] = ACTIONS(833), - [anon_sym__] = ACTIONS(831), - [anon_sym_DOT] = ACTIONS(831), - [anon_sym_DOT_DOT] = ACTIONS(831), - [anon_sym_DOT_DOT_DOT] = ACTIONS(833), - [anon_sym_DOT_DOT_EQ] = ACTIONS(833), - [anon_sym_COMMA] = ACTIONS(833), - [anon_sym_COLON_COLON] = ACTIONS(833), - [anon_sym_DASH_GT] = ACTIONS(833), - [anon_sym_POUND] = ACTIONS(833), - [anon_sym_SQUOTE] = ACTIONS(831), - [anon_sym_as] = ACTIONS(831), - [anon_sym_async] = ACTIONS(831), - [anon_sym_await] = ACTIONS(831), - [anon_sym_break] = ACTIONS(831), - [anon_sym_const] = ACTIONS(831), - [anon_sym_continue] = ACTIONS(831), - [anon_sym_default] = ACTIONS(831), - [anon_sym_enum] = ACTIONS(831), - [anon_sym_fn] = ACTIONS(831), - [anon_sym_for] = ACTIONS(831), - [anon_sym_if] = ACTIONS(831), - [anon_sym_impl] = ACTIONS(831), - [anon_sym_let] = ACTIONS(831), - [anon_sym_loop] = ACTIONS(831), - [anon_sym_match] = ACTIONS(831), - [anon_sym_mod] = ACTIONS(831), - [anon_sym_pub] = ACTIONS(831), - [anon_sym_return] = ACTIONS(831), - [anon_sym_static] = ACTIONS(831), - [anon_sym_struct] = ACTIONS(831), - [anon_sym_trait] = ACTIONS(831), - [anon_sym_type] = ACTIONS(831), - [anon_sym_union] = ACTIONS(831), - [anon_sym_unsafe] = ACTIONS(831), - [anon_sym_use] = ACTIONS(831), - [anon_sym_where] = ACTIONS(831), - [anon_sym_while] = ACTIONS(831), - [sym_mutable_specifier] = ACTIONS(831), - [sym_integer_literal] = ACTIONS(833), - [aux_sym_string_literal_token1] = ACTIONS(833), - [sym_char_literal] = ACTIONS(833), - [anon_sym_true] = ACTIONS(831), - [anon_sym_false] = ACTIONS(831), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(831), - [sym_super] = ACTIONS(831), - [sym_crate] = ACTIONS(831), - [sym_metavariable] = ACTIONS(833), - [sym__raw_string_literal_start] = ACTIONS(833), - [sym_float_literal] = ACTIONS(833), + [aux_sym_enum_variant_list_repeat1] = STATE(163), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(939), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [159] = { [sym_line_comment] = STATE(159), [sym_block_comment] = STATE(159), - [sym_identifier] = ACTIONS(835), - [anon_sym_SEMI] = ACTIONS(837), - [anon_sym_LPAREN] = ACTIONS(837), - [anon_sym_RPAREN] = ACTIONS(837), - [anon_sym_LBRACK] = ACTIONS(837), - [anon_sym_RBRACK] = ACTIONS(837), - [anon_sym_LBRACE] = ACTIONS(837), - [anon_sym_RBRACE] = ACTIONS(837), - [anon_sym_EQ_GT] = ACTIONS(837), - [anon_sym_COLON] = ACTIONS(835), - [anon_sym_DOLLAR] = ACTIONS(835), - [anon_sym_PLUS] = ACTIONS(835), - [anon_sym_STAR] = ACTIONS(835), - [anon_sym_QMARK] = ACTIONS(837), - [anon_sym_u8] = ACTIONS(835), - [anon_sym_i8] = ACTIONS(835), - [anon_sym_u16] = ACTIONS(835), - [anon_sym_i16] = ACTIONS(835), - [anon_sym_u32] = ACTIONS(835), - [anon_sym_i32] = ACTIONS(835), - [anon_sym_u64] = ACTIONS(835), - [anon_sym_i64] = ACTIONS(835), - [anon_sym_u128] = ACTIONS(835), - [anon_sym_i128] = ACTIONS(835), - [anon_sym_isize] = ACTIONS(835), - [anon_sym_usize] = ACTIONS(835), - [anon_sym_f32] = ACTIONS(835), - [anon_sym_f64] = ACTIONS(835), - [anon_sym_bool] = ACTIONS(835), - [anon_sym_str] = ACTIONS(835), - [anon_sym_char] = ACTIONS(835), - [anon_sym_DASH] = ACTIONS(835), - [anon_sym_SLASH] = ACTIONS(835), - [anon_sym_PERCENT] = ACTIONS(835), - [anon_sym_CARET] = ACTIONS(835), - [anon_sym_BANG] = ACTIONS(835), - [anon_sym_AMP] = ACTIONS(835), - [anon_sym_PIPE] = ACTIONS(835), - [anon_sym_AMP_AMP] = ACTIONS(837), - [anon_sym_PIPE_PIPE] = ACTIONS(837), - [anon_sym_LT_LT] = ACTIONS(835), - [anon_sym_GT_GT] = ACTIONS(835), - [anon_sym_PLUS_EQ] = ACTIONS(837), - [anon_sym_DASH_EQ] = ACTIONS(837), - [anon_sym_STAR_EQ] = ACTIONS(837), - [anon_sym_SLASH_EQ] = ACTIONS(837), - [anon_sym_PERCENT_EQ] = ACTIONS(837), - [anon_sym_CARET_EQ] = ACTIONS(837), - [anon_sym_AMP_EQ] = ACTIONS(837), - [anon_sym_PIPE_EQ] = ACTIONS(837), - [anon_sym_LT_LT_EQ] = ACTIONS(837), - [anon_sym_GT_GT_EQ] = ACTIONS(837), - [anon_sym_EQ] = ACTIONS(835), - [anon_sym_EQ_EQ] = ACTIONS(837), - [anon_sym_BANG_EQ] = ACTIONS(837), - [anon_sym_GT] = ACTIONS(835), - [anon_sym_LT] = ACTIONS(835), - [anon_sym_GT_EQ] = ACTIONS(837), - [anon_sym_LT_EQ] = ACTIONS(837), - [anon_sym_AT] = ACTIONS(837), - [anon_sym__] = ACTIONS(835), - [anon_sym_DOT] = ACTIONS(835), - [anon_sym_DOT_DOT] = ACTIONS(835), - [anon_sym_DOT_DOT_DOT] = ACTIONS(837), - [anon_sym_DOT_DOT_EQ] = ACTIONS(837), - [anon_sym_COMMA] = ACTIONS(837), - [anon_sym_COLON_COLON] = ACTIONS(837), - [anon_sym_DASH_GT] = ACTIONS(837), - [anon_sym_POUND] = ACTIONS(837), - [anon_sym_SQUOTE] = ACTIONS(835), - [anon_sym_as] = ACTIONS(835), - [anon_sym_async] = ACTIONS(835), - [anon_sym_await] = ACTIONS(835), - [anon_sym_break] = ACTIONS(835), - [anon_sym_const] = ACTIONS(835), - [anon_sym_continue] = ACTIONS(835), - [anon_sym_default] = ACTIONS(835), - [anon_sym_enum] = ACTIONS(835), - [anon_sym_fn] = ACTIONS(835), - [anon_sym_for] = ACTIONS(835), - [anon_sym_if] = ACTIONS(835), - [anon_sym_impl] = ACTIONS(835), - [anon_sym_let] = ACTIONS(835), - [anon_sym_loop] = ACTIONS(835), - [anon_sym_match] = ACTIONS(835), - [anon_sym_mod] = ACTIONS(835), - [anon_sym_pub] = ACTIONS(835), - [anon_sym_return] = ACTIONS(835), - [anon_sym_static] = ACTIONS(835), - [anon_sym_struct] = ACTIONS(835), - [anon_sym_trait] = ACTIONS(835), - [anon_sym_type] = ACTIONS(835), - [anon_sym_union] = ACTIONS(835), - [anon_sym_unsafe] = ACTIONS(835), - [anon_sym_use] = ACTIONS(835), - [anon_sym_where] = ACTIONS(835), - [anon_sym_while] = ACTIONS(835), - [sym_mutable_specifier] = ACTIONS(835), - [sym_integer_literal] = ACTIONS(837), - [aux_sym_string_literal_token1] = ACTIONS(837), - [sym_char_literal] = ACTIONS(837), - [anon_sym_true] = ACTIONS(835), - [anon_sym_false] = ACTIONS(835), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(835), - [sym_super] = ACTIONS(835), - [sym_crate] = ACTIONS(835), - [sym_metavariable] = ACTIONS(837), - [sym__raw_string_literal_start] = ACTIONS(837), - [sym_float_literal] = ACTIONS(837), + [sym_identifier] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(945), + [anon_sym_LPAREN] = ACTIONS(945), + [anon_sym_RPAREN] = ACTIONS(945), + [anon_sym_LBRACK] = ACTIONS(945), + [anon_sym_RBRACK] = ACTIONS(945), + [anon_sym_LBRACE] = ACTIONS(945), + [anon_sym_RBRACE] = ACTIONS(945), + [anon_sym_EQ_GT] = ACTIONS(945), + [anon_sym_COLON] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_PLUS] = ACTIONS(943), + [anon_sym_STAR] = ACTIONS(943), + [anon_sym_QMARK] = ACTIONS(945), + [anon_sym_u8] = ACTIONS(943), + [anon_sym_i8] = ACTIONS(943), + [anon_sym_u16] = ACTIONS(943), + [anon_sym_i16] = ACTIONS(943), + [anon_sym_u32] = ACTIONS(943), + [anon_sym_i32] = ACTIONS(943), + [anon_sym_u64] = ACTIONS(943), + [anon_sym_i64] = ACTIONS(943), + [anon_sym_u128] = ACTIONS(943), + [anon_sym_i128] = ACTIONS(943), + [anon_sym_isize] = ACTIONS(943), + [anon_sym_usize] = ACTIONS(943), + [anon_sym_f32] = ACTIONS(943), + [anon_sym_f64] = ACTIONS(943), + [anon_sym_bool] = ACTIONS(943), + [anon_sym_str] = ACTIONS(943), + [anon_sym_char] = ACTIONS(943), + [anon_sym_DASH] = ACTIONS(943), + [anon_sym_SLASH] = ACTIONS(943), + [anon_sym_PERCENT] = ACTIONS(943), + [anon_sym_CARET] = ACTIONS(943), + [anon_sym_BANG] = ACTIONS(943), + [anon_sym_AMP] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_AMP_AMP] = ACTIONS(945), + [anon_sym_PIPE_PIPE] = ACTIONS(945), + [anon_sym_LT_LT] = ACTIONS(943), + [anon_sym_GT_GT] = ACTIONS(943), + [anon_sym_PLUS_EQ] = ACTIONS(945), + [anon_sym_DASH_EQ] = ACTIONS(945), + [anon_sym_STAR_EQ] = ACTIONS(945), + [anon_sym_SLASH_EQ] = ACTIONS(945), + [anon_sym_PERCENT_EQ] = ACTIONS(945), + [anon_sym_CARET_EQ] = ACTIONS(945), + [anon_sym_AMP_EQ] = ACTIONS(945), + [anon_sym_PIPE_EQ] = ACTIONS(945), + [anon_sym_LT_LT_EQ] = ACTIONS(945), + [anon_sym_GT_GT_EQ] = ACTIONS(945), + [anon_sym_EQ] = ACTIONS(943), + [anon_sym_EQ_EQ] = ACTIONS(945), + [anon_sym_BANG_EQ] = ACTIONS(945), + [anon_sym_GT] = ACTIONS(943), + [anon_sym_LT] = ACTIONS(943), + [anon_sym_GT_EQ] = ACTIONS(945), + [anon_sym_LT_EQ] = ACTIONS(945), + [anon_sym_AT] = ACTIONS(945), + [anon_sym__] = ACTIONS(943), + [anon_sym_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT] = ACTIONS(945), + [anon_sym_DOT_DOT_EQ] = ACTIONS(945), + [anon_sym_COMMA] = ACTIONS(945), + [anon_sym_COLON_COLON] = ACTIONS(945), + [anon_sym_DASH_GT] = ACTIONS(945), + [anon_sym_POUND] = ACTIONS(945), + [anon_sym_SQUOTE] = ACTIONS(943), + [anon_sym_as] = ACTIONS(943), + [anon_sym_async] = ACTIONS(943), + [anon_sym_await] = ACTIONS(943), + [anon_sym_break] = ACTIONS(943), + [anon_sym_const] = ACTIONS(943), + [anon_sym_continue] = ACTIONS(943), + [anon_sym_default] = ACTIONS(943), + [anon_sym_enum] = ACTIONS(943), + [anon_sym_fn] = ACTIONS(943), + [anon_sym_for] = ACTIONS(943), + [anon_sym_if] = ACTIONS(943), + [anon_sym_impl] = ACTIONS(943), + [anon_sym_let] = ACTIONS(943), + [anon_sym_loop] = ACTIONS(943), + [anon_sym_match] = ACTIONS(943), + [anon_sym_mod] = ACTIONS(943), + [anon_sym_pub] = ACTIONS(943), + [anon_sym_return] = ACTIONS(943), + [anon_sym_static] = ACTIONS(943), + [anon_sym_struct] = ACTIONS(943), + [anon_sym_trait] = ACTIONS(943), + [anon_sym_type] = ACTIONS(943), + [anon_sym_union] = ACTIONS(943), + [anon_sym_unsafe] = ACTIONS(943), + [anon_sym_use] = ACTIONS(943), + [anon_sym_where] = ACTIONS(943), + [anon_sym_while] = ACTIONS(943), + [sym_mutable_specifier] = ACTIONS(943), + [sym_integer_literal] = ACTIONS(945), + [aux_sym_string_literal_token1] = ACTIONS(945), + [sym_char_literal] = ACTIONS(945), + [anon_sym_true] = ACTIONS(943), + [anon_sym_false] = ACTIONS(943), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(943), + [sym_super] = ACTIONS(943), + [sym_crate] = ACTIONS(943), + [sym_metavariable] = ACTIONS(945), + [sym__raw_string_literal_start] = ACTIONS(945), + [sym_float_literal] = ACTIONS(945), }, [160] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1593), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), [sym_line_comment] = STATE(160), [sym_block_comment] = STATE(160), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_RBRACK] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(853), - [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(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(865), - [anon_sym_DOT_DOT] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(848), - [anon_sym_COLON_COLON] = ACTIONS(871), - [anon_sym_POUND] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(877), - [anon_sym_async] = ACTIONS(880), - [anon_sym_break] = ACTIONS(883), - [anon_sym_const] = ACTIONS(886), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_default] = ACTIONS(892), - [anon_sym_for] = ACTIONS(895), - [anon_sym_if] = ACTIONS(898), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_match] = ACTIONS(904), - [anon_sym_return] = ACTIONS(907), - [anon_sym_static] = ACTIONS(910), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(913), - [anon_sym_while] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_move] = ACTIONS(922), - [anon_sym_try] = ACTIONS(925), - [sym_integer_literal] = ACTIONS(928), - [aux_sym_string_literal_token1] = ACTIONS(931), - [sym_char_literal] = ACTIONS(928), - [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(937), - [sym_super] = ACTIONS(940), - [sym_crate] = ACTIONS(940), - [sym_metavariable] = ACTIONS(943), - [sym__raw_string_literal_start] = ACTIONS(946), - [sym_float_literal] = ACTIONS(928), + [aux_sym__non_special_token_repeat1] = STATE(150), + [sym_identifier] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(663), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(663), + [anon_sym_COLON] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(673), + [anon_sym_QMARK] = ACTIONS(663), + [anon_sym_u8] = ACTIONS(947), + [anon_sym_i8] = ACTIONS(947), + [anon_sym_u16] = ACTIONS(947), + [anon_sym_i16] = ACTIONS(947), + [anon_sym_u32] = ACTIONS(947), + [anon_sym_i32] = ACTIONS(947), + [anon_sym_u64] = ACTIONS(947), + [anon_sym_i64] = ACTIONS(947), + [anon_sym_u128] = ACTIONS(947), + [anon_sym_i128] = ACTIONS(947), + [anon_sym_isize] = ACTIONS(947), + [anon_sym_usize] = ACTIONS(947), + [anon_sym_f32] = ACTIONS(947), + [anon_sym_f64] = ACTIONS(947), + [anon_sym_bool] = ACTIONS(947), + [anon_sym_str] = ACTIONS(947), + [anon_sym_char] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(673), + [anon_sym_SLASH] = ACTIONS(673), + [anon_sym_PERCENT] = ACTIONS(673), + [anon_sym_CARET] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_AMP] = ACTIONS(673), + [anon_sym_PIPE] = ACTIONS(673), + [anon_sym_AMP_AMP] = ACTIONS(663), + [anon_sym_PIPE_PIPE] = ACTIONS(663), + [anon_sym_LT_LT] = ACTIONS(673), + [anon_sym_GT_GT] = ACTIONS(673), + [anon_sym_PLUS_EQ] = ACTIONS(663), + [anon_sym_DASH_EQ] = ACTIONS(663), + [anon_sym_STAR_EQ] = ACTIONS(663), + [anon_sym_SLASH_EQ] = ACTIONS(663), + [anon_sym_PERCENT_EQ] = ACTIONS(663), + [anon_sym_CARET_EQ] = ACTIONS(663), + [anon_sym_AMP_EQ] = ACTIONS(663), + [anon_sym_PIPE_EQ] = ACTIONS(663), + [anon_sym_LT_LT_EQ] = ACTIONS(663), + [anon_sym_GT_GT_EQ] = ACTIONS(663), + [anon_sym_EQ] = ACTIONS(673), + [anon_sym_EQ_EQ] = ACTIONS(663), + [anon_sym_BANG_EQ] = ACTIONS(663), + [anon_sym_GT] = ACTIONS(673), + [anon_sym_LT] = ACTIONS(673), + [anon_sym_GT_EQ] = ACTIONS(663), + [anon_sym_LT_EQ] = ACTIONS(663), + [anon_sym_AT] = ACTIONS(663), + [anon_sym__] = ACTIONS(673), + [anon_sym_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT] = ACTIONS(673), + [anon_sym_DOT_DOT_DOT] = ACTIONS(663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(663), + [anon_sym_COMMA] = ACTIONS(663), + [anon_sym_COLON_COLON] = ACTIONS(663), + [anon_sym_DASH_GT] = ACTIONS(663), + [anon_sym_POUND] = ACTIONS(663), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_as] = ACTIONS(947), + [anon_sym_async] = ACTIONS(947), + [anon_sym_await] = ACTIONS(947), + [anon_sym_break] = ACTIONS(947), + [anon_sym_const] = ACTIONS(947), + [anon_sym_continue] = ACTIONS(947), + [anon_sym_default] = ACTIONS(947), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_fn] = ACTIONS(947), + [anon_sym_for] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_impl] = ACTIONS(947), + [anon_sym_let] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(947), + [anon_sym_match] = ACTIONS(947), + [anon_sym_mod] = ACTIONS(947), + [anon_sym_pub] = ACTIONS(947), + [anon_sym_return] = ACTIONS(947), + [anon_sym_static] = ACTIONS(947), + [anon_sym_struct] = ACTIONS(947), + [anon_sym_trait] = ACTIONS(947), + [anon_sym_type] = ACTIONS(947), + [anon_sym_union] = ACTIONS(947), + [anon_sym_unsafe] = ACTIONS(947), + [anon_sym_use] = ACTIONS(947), + [anon_sym_where] = ACTIONS(947), + [anon_sym_while] = ACTIONS(947), + [sym_mutable_specifier] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(949), + [aux_sym_string_literal_token1] = ACTIONS(949), + [sym_char_literal] = ACTIONS(949), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(947), + [sym_super] = ACTIONS(947), + [sym_crate] = ACTIONS(947), + [sym__raw_string_literal_start] = ACTIONS(949), + [sym_float_literal] = ACTIONS(949), }, [161] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1576), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(161), [sym_block_comment] = STATE(161), - [sym_identifier] = ACTIONS(949), - [anon_sym_SEMI] = ACTIONS(951), - [anon_sym_LPAREN] = ACTIONS(951), - [anon_sym_RPAREN] = ACTIONS(951), - [anon_sym_LBRACK] = ACTIONS(951), - [anon_sym_RBRACK] = ACTIONS(951), - [anon_sym_LBRACE] = ACTIONS(951), - [anon_sym_RBRACE] = ACTIONS(951), - [anon_sym_EQ_GT] = ACTIONS(951), - [anon_sym_COLON] = ACTIONS(949), - [anon_sym_DOLLAR] = ACTIONS(949), - [anon_sym_PLUS] = ACTIONS(949), - [anon_sym_STAR] = ACTIONS(949), - [anon_sym_QMARK] = ACTIONS(951), - [anon_sym_u8] = ACTIONS(949), - [anon_sym_i8] = ACTIONS(949), - [anon_sym_u16] = ACTIONS(949), - [anon_sym_i16] = ACTIONS(949), - [anon_sym_u32] = ACTIONS(949), - [anon_sym_i32] = ACTIONS(949), - [anon_sym_u64] = ACTIONS(949), - [anon_sym_i64] = ACTIONS(949), - [anon_sym_u128] = ACTIONS(949), - [anon_sym_i128] = ACTIONS(949), - [anon_sym_isize] = ACTIONS(949), - [anon_sym_usize] = ACTIONS(949), - [anon_sym_f32] = ACTIONS(949), - [anon_sym_f64] = ACTIONS(949), - [anon_sym_bool] = ACTIONS(949), - [anon_sym_str] = ACTIONS(949), - [anon_sym_char] = ACTIONS(949), - [anon_sym_DASH] = ACTIONS(949), - [anon_sym_SLASH] = ACTIONS(949), - [anon_sym_PERCENT] = ACTIONS(949), - [anon_sym_CARET] = ACTIONS(949), - [anon_sym_BANG] = ACTIONS(949), - [anon_sym_AMP] = ACTIONS(949), - [anon_sym_PIPE] = ACTIONS(949), - [anon_sym_AMP_AMP] = ACTIONS(951), - [anon_sym_PIPE_PIPE] = ACTIONS(951), - [anon_sym_LT_LT] = ACTIONS(949), - [anon_sym_GT_GT] = ACTIONS(949), - [anon_sym_PLUS_EQ] = ACTIONS(951), - [anon_sym_DASH_EQ] = ACTIONS(951), - [anon_sym_STAR_EQ] = ACTIONS(951), - [anon_sym_SLASH_EQ] = ACTIONS(951), - [anon_sym_PERCENT_EQ] = ACTIONS(951), - [anon_sym_CARET_EQ] = ACTIONS(951), - [anon_sym_AMP_EQ] = ACTIONS(951), - [anon_sym_PIPE_EQ] = ACTIONS(951), - [anon_sym_LT_LT_EQ] = ACTIONS(951), - [anon_sym_GT_GT_EQ] = ACTIONS(951), - [anon_sym_EQ] = ACTIONS(949), - [anon_sym_EQ_EQ] = ACTIONS(951), - [anon_sym_BANG_EQ] = ACTIONS(951), - [anon_sym_GT] = ACTIONS(949), - [anon_sym_LT] = ACTIONS(949), - [anon_sym_GT_EQ] = ACTIONS(951), - [anon_sym_LT_EQ] = ACTIONS(951), - [anon_sym_AT] = ACTIONS(951), - [anon_sym__] = ACTIONS(949), - [anon_sym_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT] = ACTIONS(949), - [anon_sym_DOT_DOT_DOT] = ACTIONS(951), - [anon_sym_DOT_DOT_EQ] = ACTIONS(951), - [anon_sym_COMMA] = ACTIONS(951), - [anon_sym_COLON_COLON] = ACTIONS(951), - [anon_sym_DASH_GT] = ACTIONS(951), - [anon_sym_POUND] = ACTIONS(951), - [anon_sym_SQUOTE] = ACTIONS(949), - [anon_sym_as] = ACTIONS(949), - [anon_sym_async] = ACTIONS(949), - [anon_sym_await] = ACTIONS(949), - [anon_sym_break] = ACTIONS(949), - [anon_sym_const] = ACTIONS(949), - [anon_sym_continue] = ACTIONS(949), - [anon_sym_default] = ACTIONS(949), - [anon_sym_enum] = ACTIONS(949), - [anon_sym_fn] = ACTIONS(949), - [anon_sym_for] = ACTIONS(949), - [anon_sym_if] = ACTIONS(949), - [anon_sym_impl] = ACTIONS(949), - [anon_sym_let] = ACTIONS(949), - [anon_sym_loop] = ACTIONS(949), - [anon_sym_match] = ACTIONS(949), - [anon_sym_mod] = ACTIONS(949), - [anon_sym_pub] = ACTIONS(949), - [anon_sym_return] = ACTIONS(949), - [anon_sym_static] = ACTIONS(949), - [anon_sym_struct] = ACTIONS(949), - [anon_sym_trait] = ACTIONS(949), - [anon_sym_type] = ACTIONS(949), - [anon_sym_union] = ACTIONS(949), - [anon_sym_unsafe] = ACTIONS(949), - [anon_sym_use] = ACTIONS(949), - [anon_sym_where] = ACTIONS(949), - [anon_sym_while] = ACTIONS(949), - [sym_mutable_specifier] = ACTIONS(949), - [sym_integer_literal] = ACTIONS(951), - [aux_sym_string_literal_token1] = ACTIONS(951), - [sym_char_literal] = ACTIONS(951), - [anon_sym_true] = ACTIONS(949), - [anon_sym_false] = ACTIONS(949), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(949), - [sym_super] = ACTIONS(949), - [sym_crate] = ACTIONS(949), - [sym_metavariable] = ACTIONS(951), - [sym__raw_string_literal_start] = ACTIONS(951), - [sym_float_literal] = ACTIONS(951), + [aux_sym_enum_variant_list_repeat1] = STATE(1002), + [sym_identifier] = ACTIONS(787), + [anon_sym_LPAREN] = ACTIONS(790), + [anon_sym_LBRACK] = ACTIONS(793), + [anon_sym_RBRACK] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_STAR] = ACTIONS(801), + [anon_sym_u8] = ACTIONS(804), + [anon_sym_i8] = ACTIONS(804), + [anon_sym_u16] = ACTIONS(804), + [anon_sym_i16] = ACTIONS(804), + [anon_sym_u32] = ACTIONS(804), + [anon_sym_i32] = ACTIONS(804), + [anon_sym_u64] = ACTIONS(804), + [anon_sym_i64] = ACTIONS(804), + [anon_sym_u128] = ACTIONS(804), + [anon_sym_i128] = ACTIONS(804), + [anon_sym_isize] = ACTIONS(804), + [anon_sym_usize] = ACTIONS(804), + [anon_sym_f32] = ACTIONS(804), + [anon_sym_f64] = ACTIONS(804), + [anon_sym_bool] = ACTIONS(804), + [anon_sym_str] = ACTIONS(804), + [anon_sym_char] = ACTIONS(804), + [anon_sym_DASH] = ACTIONS(801), + [anon_sym_BANG] = ACTIONS(801), + [anon_sym_AMP] = ACTIONS(807), + [anon_sym_PIPE] = ACTIONS(810), + [anon_sym_LT] = ACTIONS(813), + [anon_sym_DOT_DOT] = ACTIONS(816), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_COLON_COLON] = ACTIONS(819), + [anon_sym_POUND] = ACTIONS(822), + [anon_sym_SQUOTE] = ACTIONS(825), + [anon_sym_async] = ACTIONS(828), + [anon_sym_break] = ACTIONS(831), + [anon_sym_const] = ACTIONS(834), + [anon_sym_continue] = ACTIONS(837), + [anon_sym_default] = ACTIONS(840), + [anon_sym_for] = ACTIONS(843), + [anon_sym_if] = ACTIONS(846), + [anon_sym_loop] = ACTIONS(849), + [anon_sym_match] = ACTIONS(852), + [anon_sym_return] = ACTIONS(855), + [anon_sym_static] = ACTIONS(858), + [anon_sym_union] = ACTIONS(840), + [anon_sym_unsafe] = ACTIONS(861), + [anon_sym_while] = ACTIONS(864), + [anon_sym_yield] = ACTIONS(867), + [anon_sym_move] = ACTIONS(870), + [anon_sym_try] = ACTIONS(873), + [sym_integer_literal] = ACTIONS(876), + [aux_sym_string_literal_token1] = ACTIONS(879), + [sym_char_literal] = ACTIONS(876), + [anon_sym_true] = ACTIONS(882), + [anon_sym_false] = ACTIONS(882), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(885), + [sym_super] = ACTIONS(888), + [sym_crate] = ACTIONS(888), + [sym_metavariable] = ACTIONS(891), + [sym__raw_string_literal_start] = ACTIONS(894), + [sym_float_literal] = ACTIONS(876), }, [162] = { [sym_line_comment] = STATE(162), [sym_block_comment] = STATE(162), - [sym_identifier] = ACTIONS(953), - [anon_sym_SEMI] = ACTIONS(955), - [anon_sym_LPAREN] = ACTIONS(955), - [anon_sym_RPAREN] = ACTIONS(955), - [anon_sym_LBRACK] = ACTIONS(955), - [anon_sym_RBRACK] = ACTIONS(955), - [anon_sym_LBRACE] = ACTIONS(955), - [anon_sym_RBRACE] = ACTIONS(955), - [anon_sym_EQ_GT] = ACTIONS(955), - [anon_sym_COLON] = ACTIONS(953), - [anon_sym_DOLLAR] = ACTIONS(953), - [anon_sym_PLUS] = ACTIONS(953), - [anon_sym_STAR] = ACTIONS(953), - [anon_sym_QMARK] = ACTIONS(955), - [anon_sym_u8] = ACTIONS(953), - [anon_sym_i8] = ACTIONS(953), - [anon_sym_u16] = ACTIONS(953), - [anon_sym_i16] = ACTIONS(953), - [anon_sym_u32] = ACTIONS(953), - [anon_sym_i32] = ACTIONS(953), - [anon_sym_u64] = ACTIONS(953), - [anon_sym_i64] = ACTIONS(953), - [anon_sym_u128] = ACTIONS(953), - [anon_sym_i128] = ACTIONS(953), - [anon_sym_isize] = ACTIONS(953), - [anon_sym_usize] = ACTIONS(953), - [anon_sym_f32] = ACTIONS(953), - [anon_sym_f64] = ACTIONS(953), - [anon_sym_bool] = ACTIONS(953), - [anon_sym_str] = ACTIONS(953), - [anon_sym_char] = ACTIONS(953), - [anon_sym_DASH] = ACTIONS(953), - [anon_sym_SLASH] = ACTIONS(953), - [anon_sym_PERCENT] = ACTIONS(953), - [anon_sym_CARET] = ACTIONS(953), - [anon_sym_BANG] = ACTIONS(953), - [anon_sym_AMP] = ACTIONS(953), - [anon_sym_PIPE] = ACTIONS(953), - [anon_sym_AMP_AMP] = ACTIONS(955), - [anon_sym_PIPE_PIPE] = ACTIONS(955), - [anon_sym_LT_LT] = ACTIONS(953), - [anon_sym_GT_GT] = ACTIONS(953), - [anon_sym_PLUS_EQ] = ACTIONS(955), - [anon_sym_DASH_EQ] = ACTIONS(955), - [anon_sym_STAR_EQ] = ACTIONS(955), - [anon_sym_SLASH_EQ] = ACTIONS(955), - [anon_sym_PERCENT_EQ] = ACTIONS(955), - [anon_sym_CARET_EQ] = ACTIONS(955), - [anon_sym_AMP_EQ] = ACTIONS(955), - [anon_sym_PIPE_EQ] = ACTIONS(955), - [anon_sym_LT_LT_EQ] = ACTIONS(955), - [anon_sym_GT_GT_EQ] = ACTIONS(955), - [anon_sym_EQ] = ACTIONS(953), - [anon_sym_EQ_EQ] = ACTIONS(955), - [anon_sym_BANG_EQ] = ACTIONS(955), - [anon_sym_GT] = ACTIONS(953), - [anon_sym_LT] = ACTIONS(953), - [anon_sym_GT_EQ] = ACTIONS(955), - [anon_sym_LT_EQ] = ACTIONS(955), - [anon_sym_AT] = ACTIONS(955), - [anon_sym__] = ACTIONS(953), - [anon_sym_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT] = ACTIONS(953), - [anon_sym_DOT_DOT_DOT] = ACTIONS(955), - [anon_sym_DOT_DOT_EQ] = ACTIONS(955), - [anon_sym_COMMA] = ACTIONS(955), - [anon_sym_COLON_COLON] = ACTIONS(955), - [anon_sym_DASH_GT] = ACTIONS(955), - [anon_sym_POUND] = ACTIONS(955), - [anon_sym_SQUOTE] = ACTIONS(953), - [anon_sym_as] = ACTIONS(953), - [anon_sym_async] = ACTIONS(953), - [anon_sym_await] = ACTIONS(953), - [anon_sym_break] = ACTIONS(953), - [anon_sym_const] = ACTIONS(953), - [anon_sym_continue] = ACTIONS(953), - [anon_sym_default] = ACTIONS(953), - [anon_sym_enum] = ACTIONS(953), - [anon_sym_fn] = ACTIONS(953), - [anon_sym_for] = ACTIONS(953), - [anon_sym_if] = ACTIONS(953), - [anon_sym_impl] = ACTIONS(953), - [anon_sym_let] = ACTIONS(953), - [anon_sym_loop] = ACTIONS(953), - [anon_sym_match] = ACTIONS(953), - [anon_sym_mod] = ACTIONS(953), - [anon_sym_pub] = ACTIONS(953), - [anon_sym_return] = ACTIONS(953), - [anon_sym_static] = ACTIONS(953), - [anon_sym_struct] = ACTIONS(953), - [anon_sym_trait] = ACTIONS(953), - [anon_sym_type] = ACTIONS(953), - [anon_sym_union] = ACTIONS(953), - [anon_sym_unsafe] = ACTIONS(953), - [anon_sym_use] = ACTIONS(953), - [anon_sym_where] = ACTIONS(953), - [anon_sym_while] = ACTIONS(953), - [sym_mutable_specifier] = ACTIONS(953), - [sym_integer_literal] = ACTIONS(955), - [aux_sym_string_literal_token1] = ACTIONS(955), - [sym_char_literal] = ACTIONS(955), - [anon_sym_true] = ACTIONS(953), - [anon_sym_false] = ACTIONS(953), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(953), - [sym_super] = ACTIONS(953), - [sym_crate] = ACTIONS(953), - [sym_metavariable] = ACTIONS(955), - [sym__raw_string_literal_start] = ACTIONS(955), - [sym_float_literal] = ACTIONS(955), + [sym_identifier] = ACTIONS(951), + [anon_sym_SEMI] = ACTIONS(953), + [anon_sym_LPAREN] = ACTIONS(953), + [anon_sym_RPAREN] = ACTIONS(953), + [anon_sym_LBRACK] = ACTIONS(953), + [anon_sym_RBRACK] = ACTIONS(953), + [anon_sym_LBRACE] = ACTIONS(953), + [anon_sym_RBRACE] = ACTIONS(953), + [anon_sym_EQ_GT] = ACTIONS(953), + [anon_sym_COLON] = ACTIONS(951), + [anon_sym_DOLLAR] = ACTIONS(951), + [anon_sym_PLUS] = ACTIONS(951), + [anon_sym_STAR] = ACTIONS(951), + [anon_sym_QMARK] = ACTIONS(953), + [anon_sym_u8] = ACTIONS(951), + [anon_sym_i8] = ACTIONS(951), + [anon_sym_u16] = ACTIONS(951), + [anon_sym_i16] = ACTIONS(951), + [anon_sym_u32] = ACTIONS(951), + [anon_sym_i32] = ACTIONS(951), + [anon_sym_u64] = ACTIONS(951), + [anon_sym_i64] = ACTIONS(951), + [anon_sym_u128] = ACTIONS(951), + [anon_sym_i128] = ACTIONS(951), + [anon_sym_isize] = ACTIONS(951), + [anon_sym_usize] = ACTIONS(951), + [anon_sym_f32] = ACTIONS(951), + [anon_sym_f64] = ACTIONS(951), + [anon_sym_bool] = ACTIONS(951), + [anon_sym_str] = ACTIONS(951), + [anon_sym_char] = ACTIONS(951), + [anon_sym_DASH] = ACTIONS(951), + [anon_sym_SLASH] = ACTIONS(951), + [anon_sym_PERCENT] = ACTIONS(951), + [anon_sym_CARET] = ACTIONS(951), + [anon_sym_BANG] = ACTIONS(951), + [anon_sym_AMP] = ACTIONS(951), + [anon_sym_PIPE] = ACTIONS(951), + [anon_sym_AMP_AMP] = ACTIONS(953), + [anon_sym_PIPE_PIPE] = ACTIONS(953), + [anon_sym_LT_LT] = ACTIONS(951), + [anon_sym_GT_GT] = ACTIONS(951), + [anon_sym_PLUS_EQ] = ACTIONS(953), + [anon_sym_DASH_EQ] = ACTIONS(953), + [anon_sym_STAR_EQ] = ACTIONS(953), + [anon_sym_SLASH_EQ] = ACTIONS(953), + [anon_sym_PERCENT_EQ] = ACTIONS(953), + [anon_sym_CARET_EQ] = ACTIONS(953), + [anon_sym_AMP_EQ] = ACTIONS(953), + [anon_sym_PIPE_EQ] = ACTIONS(953), + [anon_sym_LT_LT_EQ] = ACTIONS(953), + [anon_sym_GT_GT_EQ] = ACTIONS(953), + [anon_sym_EQ] = ACTIONS(951), + [anon_sym_EQ_EQ] = ACTIONS(953), + [anon_sym_BANG_EQ] = ACTIONS(953), + [anon_sym_GT] = ACTIONS(951), + [anon_sym_LT] = ACTIONS(951), + [anon_sym_GT_EQ] = ACTIONS(953), + [anon_sym_LT_EQ] = ACTIONS(953), + [anon_sym_AT] = ACTIONS(953), + [anon_sym__] = ACTIONS(951), + [anon_sym_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT] = ACTIONS(951), + [anon_sym_DOT_DOT_DOT] = ACTIONS(953), + [anon_sym_DOT_DOT_EQ] = ACTIONS(953), + [anon_sym_COMMA] = ACTIONS(953), + [anon_sym_COLON_COLON] = ACTIONS(953), + [anon_sym_DASH_GT] = ACTIONS(953), + [anon_sym_POUND] = ACTIONS(953), + [anon_sym_SQUOTE] = ACTIONS(951), + [anon_sym_as] = ACTIONS(951), + [anon_sym_async] = ACTIONS(951), + [anon_sym_await] = ACTIONS(951), + [anon_sym_break] = ACTIONS(951), + [anon_sym_const] = ACTIONS(951), + [anon_sym_continue] = ACTIONS(951), + [anon_sym_default] = ACTIONS(951), + [anon_sym_enum] = ACTIONS(951), + [anon_sym_fn] = ACTIONS(951), + [anon_sym_for] = ACTIONS(951), + [anon_sym_if] = ACTIONS(951), + [anon_sym_impl] = ACTIONS(951), + [anon_sym_let] = ACTIONS(951), + [anon_sym_loop] = ACTIONS(951), + [anon_sym_match] = ACTIONS(951), + [anon_sym_mod] = ACTIONS(951), + [anon_sym_pub] = ACTIONS(951), + [anon_sym_return] = ACTIONS(951), + [anon_sym_static] = ACTIONS(951), + [anon_sym_struct] = ACTIONS(951), + [anon_sym_trait] = ACTIONS(951), + [anon_sym_type] = ACTIONS(951), + [anon_sym_union] = ACTIONS(951), + [anon_sym_unsafe] = ACTIONS(951), + [anon_sym_use] = ACTIONS(951), + [anon_sym_where] = ACTIONS(951), + [anon_sym_while] = ACTIONS(951), + [sym_mutable_specifier] = ACTIONS(951), + [sym_integer_literal] = ACTIONS(953), + [aux_sym_string_literal_token1] = ACTIONS(953), + [sym_char_literal] = ACTIONS(953), + [anon_sym_true] = ACTIONS(951), + [anon_sym_false] = ACTIONS(951), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(951), + [sym_super] = ACTIONS(951), + [sym_crate] = ACTIONS(951), + [sym_metavariable] = ACTIONS(953), + [sym__raw_string_literal_start] = ACTIONS(953), + [sym_float_literal] = ACTIONS(953), }, [163] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1543), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(163), [sym_block_comment] = STATE(163), - [sym_identifier] = ACTIONS(735), - [anon_sym_SEMI] = ACTIONS(737), - [anon_sym_LPAREN] = ACTIONS(737), - [anon_sym_RPAREN] = ACTIONS(737), - [anon_sym_LBRACK] = ACTIONS(737), - [anon_sym_RBRACK] = ACTIONS(737), - [anon_sym_LBRACE] = ACTIONS(737), - [anon_sym_RBRACE] = ACTIONS(737), - [anon_sym_EQ_GT] = ACTIONS(737), - [anon_sym_COLON] = ACTIONS(735), - [anon_sym_DOLLAR] = ACTIONS(735), - [anon_sym_PLUS] = ACTIONS(735), - [anon_sym_STAR] = ACTIONS(735), - [anon_sym_QMARK] = ACTIONS(737), - [anon_sym_u8] = ACTIONS(735), - [anon_sym_i8] = ACTIONS(735), - [anon_sym_u16] = ACTIONS(735), - [anon_sym_i16] = ACTIONS(735), - [anon_sym_u32] = ACTIONS(735), - [anon_sym_i32] = ACTIONS(735), - [anon_sym_u64] = ACTIONS(735), - [anon_sym_i64] = ACTIONS(735), - [anon_sym_u128] = ACTIONS(735), - [anon_sym_i128] = ACTIONS(735), - [anon_sym_isize] = ACTIONS(735), - [anon_sym_usize] = ACTIONS(735), - [anon_sym_f32] = ACTIONS(735), - [anon_sym_f64] = ACTIONS(735), - [anon_sym_bool] = ACTIONS(735), - [anon_sym_str] = ACTIONS(735), - [anon_sym_char] = ACTIONS(735), - [anon_sym_DASH] = ACTIONS(735), - [anon_sym_SLASH] = ACTIONS(735), - [anon_sym_PERCENT] = ACTIONS(735), - [anon_sym_CARET] = ACTIONS(735), - [anon_sym_BANG] = ACTIONS(735), - [anon_sym_AMP] = ACTIONS(735), - [anon_sym_PIPE] = ACTIONS(735), - [anon_sym_AMP_AMP] = ACTIONS(737), - [anon_sym_PIPE_PIPE] = ACTIONS(737), - [anon_sym_LT_LT] = ACTIONS(735), - [anon_sym_GT_GT] = ACTIONS(735), - [anon_sym_PLUS_EQ] = ACTIONS(737), - [anon_sym_DASH_EQ] = ACTIONS(737), - [anon_sym_STAR_EQ] = ACTIONS(737), - [anon_sym_SLASH_EQ] = ACTIONS(737), - [anon_sym_PERCENT_EQ] = ACTIONS(737), - [anon_sym_CARET_EQ] = ACTIONS(737), - [anon_sym_AMP_EQ] = ACTIONS(737), - [anon_sym_PIPE_EQ] = ACTIONS(737), - [anon_sym_LT_LT_EQ] = ACTIONS(737), - [anon_sym_GT_GT_EQ] = ACTIONS(737), - [anon_sym_EQ] = ACTIONS(735), - [anon_sym_EQ_EQ] = ACTIONS(737), - [anon_sym_BANG_EQ] = ACTIONS(737), - [anon_sym_GT] = ACTIONS(735), - [anon_sym_LT] = ACTIONS(735), - [anon_sym_GT_EQ] = ACTIONS(737), - [anon_sym_LT_EQ] = ACTIONS(737), - [anon_sym_AT] = ACTIONS(737), - [anon_sym__] = ACTIONS(735), - [anon_sym_DOT] = ACTIONS(735), - [anon_sym_DOT_DOT] = ACTIONS(735), - [anon_sym_DOT_DOT_DOT] = ACTIONS(737), - [anon_sym_DOT_DOT_EQ] = ACTIONS(737), - [anon_sym_COMMA] = ACTIONS(737), - [anon_sym_COLON_COLON] = ACTIONS(737), - [anon_sym_DASH_GT] = ACTIONS(737), - [anon_sym_POUND] = ACTIONS(737), - [anon_sym_SQUOTE] = ACTIONS(735), - [anon_sym_as] = ACTIONS(735), - [anon_sym_async] = ACTIONS(735), - [anon_sym_await] = ACTIONS(735), - [anon_sym_break] = ACTIONS(735), - [anon_sym_const] = ACTIONS(735), - [anon_sym_continue] = ACTIONS(735), - [anon_sym_default] = ACTIONS(735), - [anon_sym_enum] = ACTIONS(735), - [anon_sym_fn] = ACTIONS(735), - [anon_sym_for] = ACTIONS(735), - [anon_sym_if] = ACTIONS(735), - [anon_sym_impl] = ACTIONS(735), - [anon_sym_let] = ACTIONS(735), - [anon_sym_loop] = ACTIONS(735), - [anon_sym_match] = ACTIONS(735), - [anon_sym_mod] = ACTIONS(735), - [anon_sym_pub] = ACTIONS(735), - [anon_sym_return] = ACTIONS(735), - [anon_sym_static] = ACTIONS(735), - [anon_sym_struct] = ACTIONS(735), - [anon_sym_trait] = ACTIONS(735), - [anon_sym_type] = ACTIONS(735), - [anon_sym_union] = ACTIONS(735), - [anon_sym_unsafe] = ACTIONS(735), - [anon_sym_use] = ACTIONS(735), - [anon_sym_where] = ACTIONS(735), - [anon_sym_while] = ACTIONS(735), - [sym_mutable_specifier] = ACTIONS(735), - [sym_integer_literal] = ACTIONS(737), - [aux_sym_string_literal_token1] = ACTIONS(737), - [sym_char_literal] = ACTIONS(737), - [anon_sym_true] = ACTIONS(735), - [anon_sym_false] = ACTIONS(735), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(735), - [sym_super] = ACTIONS(735), - [sym_crate] = ACTIONS(735), - [sym_metavariable] = ACTIONS(737), - [sym__raw_string_literal_start] = ACTIONS(737), - [sym_float_literal] = ACTIONS(737), + [aux_sym_enum_variant_list_repeat1] = STATE(161), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(955), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COMMA] = ACTIONS(957), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [164] = { [sym_line_comment] = STATE(164), [sym_block_comment] = STATE(164), - [sym_identifier] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_EQ_GT] = ACTIONS(959), - [anon_sym_COLON] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(957), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(957), - [anon_sym_i8] = ACTIONS(957), - [anon_sym_u16] = ACTIONS(957), - [anon_sym_i16] = ACTIONS(957), - [anon_sym_u32] = ACTIONS(957), - [anon_sym_i32] = ACTIONS(957), - [anon_sym_u64] = ACTIONS(957), - [anon_sym_i64] = ACTIONS(957), - [anon_sym_u128] = ACTIONS(957), - [anon_sym_i128] = ACTIONS(957), - [anon_sym_isize] = ACTIONS(957), - [anon_sym_usize] = ACTIONS(957), - [anon_sym_f32] = ACTIONS(957), - [anon_sym_f64] = ACTIONS(957), - [anon_sym_bool] = ACTIONS(957), - [anon_sym_str] = ACTIONS(957), - [anon_sym_char] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_SLASH] = ACTIONS(957), - [anon_sym_PERCENT] = ACTIONS(957), - [anon_sym_CARET] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [anon_sym_PLUS_EQ] = ACTIONS(959), - [anon_sym_DASH_EQ] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(959), - [anon_sym_SLASH_EQ] = ACTIONS(959), - [anon_sym_PERCENT_EQ] = ACTIONS(959), - [anon_sym_CARET_EQ] = ACTIONS(959), - [anon_sym_AMP_EQ] = ACTIONS(959), - [anon_sym_PIPE_EQ] = ACTIONS(959), - [anon_sym_LT_LT_EQ] = ACTIONS(959), - [anon_sym_GT_GT_EQ] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(959), - [anon_sym__] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(959), - [anon_sym_COLON_COLON] = ACTIONS(959), - [anon_sym_DASH_GT] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(957), - [anon_sym_as] = ACTIONS(957), - [anon_sym_async] = ACTIONS(957), - [anon_sym_await] = ACTIONS(957), - [anon_sym_break] = ACTIONS(957), - [anon_sym_const] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_default] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(957), - [anon_sym_fn] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_if] = ACTIONS(957), - [anon_sym_impl] = ACTIONS(957), - [anon_sym_let] = ACTIONS(957), - [anon_sym_loop] = ACTIONS(957), - [anon_sym_match] = ACTIONS(957), - [anon_sym_mod] = ACTIONS(957), - [anon_sym_pub] = ACTIONS(957), - [anon_sym_return] = ACTIONS(957), - [anon_sym_static] = ACTIONS(957), - [anon_sym_struct] = ACTIONS(957), - [anon_sym_trait] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_union] = ACTIONS(957), - [anon_sym_unsafe] = ACTIONS(957), - [anon_sym_use] = ACTIONS(957), - [anon_sym_where] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [sym_mutable_specifier] = ACTIONS(957), - [sym_integer_literal] = ACTIONS(959), - [aux_sym_string_literal_token1] = ACTIONS(959), - [sym_char_literal] = ACTIONS(959), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(957), - [sym_super] = ACTIONS(957), - [sym_crate] = ACTIONS(957), - [sym_metavariable] = ACTIONS(959), - [sym__raw_string_literal_start] = ACTIONS(959), - [sym_float_literal] = ACTIONS(959), + [sym_identifier] = ACTIONS(959), + [anon_sym_SEMI] = ACTIONS(961), + [anon_sym_LPAREN] = ACTIONS(961), + [anon_sym_RPAREN] = ACTIONS(961), + [anon_sym_LBRACK] = ACTIONS(961), + [anon_sym_RBRACK] = ACTIONS(961), + [anon_sym_LBRACE] = ACTIONS(961), + [anon_sym_RBRACE] = ACTIONS(961), + [anon_sym_EQ_GT] = ACTIONS(961), + [anon_sym_COLON] = ACTIONS(959), + [anon_sym_DOLLAR] = ACTIONS(959), + [anon_sym_PLUS] = ACTIONS(959), + [anon_sym_STAR] = ACTIONS(959), + [anon_sym_QMARK] = ACTIONS(961), + [anon_sym_u8] = ACTIONS(959), + [anon_sym_i8] = ACTIONS(959), + [anon_sym_u16] = ACTIONS(959), + [anon_sym_i16] = ACTIONS(959), + [anon_sym_u32] = ACTIONS(959), + [anon_sym_i32] = ACTIONS(959), + [anon_sym_u64] = ACTIONS(959), + [anon_sym_i64] = ACTIONS(959), + [anon_sym_u128] = ACTIONS(959), + [anon_sym_i128] = ACTIONS(959), + [anon_sym_isize] = ACTIONS(959), + [anon_sym_usize] = ACTIONS(959), + [anon_sym_f32] = ACTIONS(959), + [anon_sym_f64] = ACTIONS(959), + [anon_sym_bool] = ACTIONS(959), + [anon_sym_str] = ACTIONS(959), + [anon_sym_char] = ACTIONS(959), + [anon_sym_DASH] = ACTIONS(959), + [anon_sym_SLASH] = ACTIONS(959), + [anon_sym_PERCENT] = ACTIONS(959), + [anon_sym_CARET] = ACTIONS(959), + [anon_sym_BANG] = ACTIONS(959), + [anon_sym_AMP] = ACTIONS(959), + [anon_sym_PIPE] = ACTIONS(959), + [anon_sym_AMP_AMP] = ACTIONS(961), + [anon_sym_PIPE_PIPE] = ACTIONS(961), + [anon_sym_LT_LT] = ACTIONS(959), + [anon_sym_GT_GT] = ACTIONS(959), + [anon_sym_PLUS_EQ] = ACTIONS(961), + [anon_sym_DASH_EQ] = ACTIONS(961), + [anon_sym_STAR_EQ] = ACTIONS(961), + [anon_sym_SLASH_EQ] = ACTIONS(961), + [anon_sym_PERCENT_EQ] = ACTIONS(961), + [anon_sym_CARET_EQ] = ACTIONS(961), + [anon_sym_AMP_EQ] = ACTIONS(961), + [anon_sym_PIPE_EQ] = ACTIONS(961), + [anon_sym_LT_LT_EQ] = ACTIONS(961), + [anon_sym_GT_GT_EQ] = ACTIONS(961), + [anon_sym_EQ] = ACTIONS(959), + [anon_sym_EQ_EQ] = ACTIONS(961), + [anon_sym_BANG_EQ] = ACTIONS(961), + [anon_sym_GT] = ACTIONS(959), + [anon_sym_LT] = ACTIONS(959), + [anon_sym_GT_EQ] = ACTIONS(961), + [anon_sym_LT_EQ] = ACTIONS(961), + [anon_sym_AT] = ACTIONS(961), + [anon_sym__] = ACTIONS(959), + [anon_sym_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT] = ACTIONS(959), + [anon_sym_DOT_DOT_DOT] = ACTIONS(961), + [anon_sym_DOT_DOT_EQ] = ACTIONS(961), + [anon_sym_COMMA] = ACTIONS(961), + [anon_sym_COLON_COLON] = ACTIONS(961), + [anon_sym_DASH_GT] = ACTIONS(961), + [anon_sym_POUND] = ACTIONS(961), + [anon_sym_SQUOTE] = ACTIONS(959), + [anon_sym_as] = ACTIONS(959), + [anon_sym_async] = ACTIONS(959), + [anon_sym_await] = ACTIONS(959), + [anon_sym_break] = ACTIONS(959), + [anon_sym_const] = ACTIONS(959), + [anon_sym_continue] = ACTIONS(959), + [anon_sym_default] = ACTIONS(959), + [anon_sym_enum] = ACTIONS(959), + [anon_sym_fn] = ACTIONS(959), + [anon_sym_for] = ACTIONS(959), + [anon_sym_if] = ACTIONS(959), + [anon_sym_impl] = ACTIONS(959), + [anon_sym_let] = ACTIONS(959), + [anon_sym_loop] = ACTIONS(959), + [anon_sym_match] = ACTIONS(959), + [anon_sym_mod] = ACTIONS(959), + [anon_sym_pub] = ACTIONS(959), + [anon_sym_return] = ACTIONS(959), + [anon_sym_static] = ACTIONS(959), + [anon_sym_struct] = ACTIONS(959), + [anon_sym_trait] = ACTIONS(959), + [anon_sym_type] = ACTIONS(959), + [anon_sym_union] = ACTIONS(959), + [anon_sym_unsafe] = ACTIONS(959), + [anon_sym_use] = ACTIONS(959), + [anon_sym_where] = ACTIONS(959), + [anon_sym_while] = ACTIONS(959), + [sym_mutable_specifier] = ACTIONS(959), + [sym_integer_literal] = ACTIONS(961), + [aux_sym_string_literal_token1] = ACTIONS(961), + [sym_char_literal] = ACTIONS(961), + [anon_sym_true] = ACTIONS(959), + [anon_sym_false] = ACTIONS(959), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(959), + [sym_super] = ACTIONS(959), + [sym_crate] = ACTIONS(959), + [sym_metavariable] = ACTIONS(961), + [sym__raw_string_literal_start] = ACTIONS(961), + [sym_float_literal] = ACTIONS(961), }, [165] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1622), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), [sym_line_comment] = STATE(165), [sym_block_comment] = STATE(165), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), - [sym_identifier] = ACTIONS(839), - [anon_sym_LPAREN] = ACTIONS(842), - [anon_sym_LBRACK] = ACTIONS(845), - [anon_sym_RBRACK] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(850), - [anon_sym_STAR] = ACTIONS(853), - [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(853), - [anon_sym_BANG] = ACTIONS(853), - [anon_sym_AMP] = ACTIONS(859), - [anon_sym_PIPE] = ACTIONS(862), - [anon_sym_LT] = ACTIONS(865), - [anon_sym_DOT_DOT] = ACTIONS(868), - [anon_sym_COMMA] = ACTIONS(848), - [anon_sym_COLON_COLON] = ACTIONS(871), - [anon_sym_POUND] = ACTIONS(874), - [anon_sym_SQUOTE] = ACTIONS(877), - [anon_sym_async] = ACTIONS(880), - [anon_sym_break] = ACTIONS(883), - [anon_sym_const] = ACTIONS(886), - [anon_sym_continue] = ACTIONS(889), - [anon_sym_default] = ACTIONS(892), - [anon_sym_for] = ACTIONS(895), - [anon_sym_if] = ACTIONS(898), - [anon_sym_loop] = ACTIONS(901), - [anon_sym_match] = ACTIONS(904), - [anon_sym_return] = ACTIONS(907), - [anon_sym_static] = ACTIONS(910), - [anon_sym_union] = ACTIONS(892), - [anon_sym_unsafe] = ACTIONS(913), - [anon_sym_while] = ACTIONS(916), - [anon_sym_yield] = ACTIONS(919), - [anon_sym_move] = ACTIONS(922), - [anon_sym_try] = ACTIONS(925), - [sym_integer_literal] = ACTIONS(928), - [aux_sym_string_literal_token1] = ACTIONS(931), - [sym_char_literal] = ACTIONS(928), - [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(937), - [sym_super] = ACTIONS(940), - [sym_crate] = ACTIONS(940), - [sym_metavariable] = ACTIONS(943), - [sym__raw_string_literal_start] = ACTIONS(946), - [sym_float_literal] = ACTIONS(928), + [sym_identifier] = ACTIONS(963), + [anon_sym_SEMI] = ACTIONS(965), + [anon_sym_LPAREN] = ACTIONS(965), + [anon_sym_RPAREN] = ACTIONS(965), + [anon_sym_LBRACK] = ACTIONS(965), + [anon_sym_RBRACK] = ACTIONS(965), + [anon_sym_LBRACE] = ACTIONS(965), + [anon_sym_RBRACE] = ACTIONS(965), + [anon_sym_EQ_GT] = ACTIONS(965), + [anon_sym_COLON] = ACTIONS(963), + [anon_sym_DOLLAR] = ACTIONS(963), + [anon_sym_PLUS] = ACTIONS(963), + [anon_sym_STAR] = ACTIONS(963), + [anon_sym_QMARK] = ACTIONS(965), + [anon_sym_u8] = ACTIONS(963), + [anon_sym_i8] = ACTIONS(963), + [anon_sym_u16] = ACTIONS(963), + [anon_sym_i16] = ACTIONS(963), + [anon_sym_u32] = ACTIONS(963), + [anon_sym_i32] = ACTIONS(963), + [anon_sym_u64] = ACTIONS(963), + [anon_sym_i64] = ACTIONS(963), + [anon_sym_u128] = ACTIONS(963), + [anon_sym_i128] = ACTIONS(963), + [anon_sym_isize] = ACTIONS(963), + [anon_sym_usize] = ACTIONS(963), + [anon_sym_f32] = ACTIONS(963), + [anon_sym_f64] = ACTIONS(963), + [anon_sym_bool] = ACTIONS(963), + [anon_sym_str] = ACTIONS(963), + [anon_sym_char] = ACTIONS(963), + [anon_sym_DASH] = ACTIONS(963), + [anon_sym_SLASH] = ACTIONS(963), + [anon_sym_PERCENT] = ACTIONS(963), + [anon_sym_CARET] = ACTIONS(963), + [anon_sym_BANG] = ACTIONS(963), + [anon_sym_AMP] = ACTIONS(963), + [anon_sym_PIPE] = ACTIONS(963), + [anon_sym_AMP_AMP] = ACTIONS(965), + [anon_sym_PIPE_PIPE] = ACTIONS(965), + [anon_sym_LT_LT] = ACTIONS(963), + [anon_sym_GT_GT] = ACTIONS(963), + [anon_sym_PLUS_EQ] = ACTIONS(965), + [anon_sym_DASH_EQ] = ACTIONS(965), + [anon_sym_STAR_EQ] = ACTIONS(965), + [anon_sym_SLASH_EQ] = ACTIONS(965), + [anon_sym_PERCENT_EQ] = ACTIONS(965), + [anon_sym_CARET_EQ] = ACTIONS(965), + [anon_sym_AMP_EQ] = ACTIONS(965), + [anon_sym_PIPE_EQ] = ACTIONS(965), + [anon_sym_LT_LT_EQ] = ACTIONS(965), + [anon_sym_GT_GT_EQ] = ACTIONS(965), + [anon_sym_EQ] = ACTIONS(963), + [anon_sym_EQ_EQ] = ACTIONS(965), + [anon_sym_BANG_EQ] = ACTIONS(965), + [anon_sym_GT] = ACTIONS(963), + [anon_sym_LT] = ACTIONS(963), + [anon_sym_GT_EQ] = ACTIONS(965), + [anon_sym_LT_EQ] = ACTIONS(965), + [anon_sym_AT] = ACTIONS(965), + [anon_sym__] = ACTIONS(963), + [anon_sym_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT] = ACTIONS(963), + [anon_sym_DOT_DOT_DOT] = ACTIONS(965), + [anon_sym_DOT_DOT_EQ] = ACTIONS(965), + [anon_sym_COMMA] = ACTIONS(965), + [anon_sym_COLON_COLON] = ACTIONS(965), + [anon_sym_DASH_GT] = ACTIONS(965), + [anon_sym_POUND] = ACTIONS(965), + [anon_sym_SQUOTE] = ACTIONS(963), + [anon_sym_as] = ACTIONS(963), + [anon_sym_async] = ACTIONS(963), + [anon_sym_await] = ACTIONS(963), + [anon_sym_break] = ACTIONS(963), + [anon_sym_const] = ACTIONS(963), + [anon_sym_continue] = ACTIONS(963), + [anon_sym_default] = ACTIONS(963), + [anon_sym_enum] = ACTIONS(963), + [anon_sym_fn] = ACTIONS(963), + [anon_sym_for] = ACTIONS(963), + [anon_sym_if] = ACTIONS(963), + [anon_sym_impl] = ACTIONS(963), + [anon_sym_let] = ACTIONS(963), + [anon_sym_loop] = ACTIONS(963), + [anon_sym_match] = ACTIONS(963), + [anon_sym_mod] = ACTIONS(963), + [anon_sym_pub] = ACTIONS(963), + [anon_sym_return] = ACTIONS(963), + [anon_sym_static] = ACTIONS(963), + [anon_sym_struct] = ACTIONS(963), + [anon_sym_trait] = ACTIONS(963), + [anon_sym_type] = ACTIONS(963), + [anon_sym_union] = ACTIONS(963), + [anon_sym_unsafe] = ACTIONS(963), + [anon_sym_use] = ACTIONS(963), + [anon_sym_where] = ACTIONS(963), + [anon_sym_while] = ACTIONS(963), + [sym_mutable_specifier] = ACTIONS(963), + [sym_integer_literal] = ACTIONS(965), + [aux_sym_string_literal_token1] = ACTIONS(965), + [sym_char_literal] = ACTIONS(965), + [anon_sym_true] = ACTIONS(963), + [anon_sym_false] = ACTIONS(963), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(963), + [sym_super] = ACTIONS(963), + [sym_crate] = ACTIONS(963), + [sym_metavariable] = ACTIONS(965), + [sym__raw_string_literal_start] = ACTIONS(965), + [sym_float_literal] = ACTIONS(965), }, [166] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1554), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), [sym_line_comment] = STATE(166), [sym_block_comment] = STATE(166), - [aux_sym_enum_variant_list_repeat1] = STATE(149), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_RBRACK] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(743), + [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_EQ_GT] = ACTIONS(743), + [anon_sym_COLON] = ACTIONS(741), + [anon_sym_DOLLAR] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(741), + [anon_sym_i8] = ACTIONS(741), + [anon_sym_u16] = ACTIONS(741), + [anon_sym_i16] = ACTIONS(741), + [anon_sym_u32] = ACTIONS(741), + [anon_sym_i32] = ACTIONS(741), + [anon_sym_u64] = ACTIONS(741), + [anon_sym_i64] = ACTIONS(741), + [anon_sym_u128] = ACTIONS(741), + [anon_sym_i128] = ACTIONS(741), + [anon_sym_isize] = ACTIONS(741), + [anon_sym_usize] = ACTIONS(741), + [anon_sym_f32] = ACTIONS(741), + [anon_sym_f64] = ACTIONS(741), + [anon_sym_bool] = ACTIONS(741), + [anon_sym_str] = ACTIONS(741), + [anon_sym_char] = ACTIONS(741), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(741), + [anon_sym_PERCENT] = ACTIONS(741), + [anon_sym_CARET] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(741), + [anon_sym_PLUS_EQ] = ACTIONS(743), + [anon_sym_DASH_EQ] = ACTIONS(743), + [anon_sym_STAR_EQ] = ACTIONS(743), + [anon_sym_SLASH_EQ] = ACTIONS(743), + [anon_sym_PERCENT_EQ] = ACTIONS(743), + [anon_sym_CARET_EQ] = ACTIONS(743), + [anon_sym_AMP_EQ] = ACTIONS(743), + [anon_sym_PIPE_EQ] = ACTIONS(743), + [anon_sym_LT_LT_EQ] = ACTIONS(743), + [anon_sym_GT_GT_EQ] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(743), + [anon_sym_BANG_EQ] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(743), + [anon_sym_LT_EQ] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), + [anon_sym__] = ACTIONS(741), + [anon_sym_DOT] = ACTIONS(741), + [anon_sym_DOT_DOT] = ACTIONS(741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(743), + [anon_sym_COMMA] = ACTIONS(743), + [anon_sym_COLON_COLON] = ACTIONS(743), + [anon_sym_DASH_GT] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(741), + [anon_sym_as] = ACTIONS(741), + [anon_sym_async] = ACTIONS(741), + [anon_sym_await] = ACTIONS(741), + [anon_sym_break] = ACTIONS(741), + [anon_sym_const] = ACTIONS(741), + [anon_sym_continue] = ACTIONS(741), + [anon_sym_default] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(741), + [anon_sym_fn] = ACTIONS(741), + [anon_sym_for] = ACTIONS(741), + [anon_sym_if] = ACTIONS(741), + [anon_sym_impl] = ACTIONS(741), + [anon_sym_let] = ACTIONS(741), + [anon_sym_loop] = ACTIONS(741), + [anon_sym_match] = ACTIONS(741), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_pub] = ACTIONS(741), + [anon_sym_return] = ACTIONS(741), + [anon_sym_static] = ACTIONS(741), + [anon_sym_struct] = ACTIONS(741), + [anon_sym_trait] = ACTIONS(741), + [anon_sym_type] = ACTIONS(741), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_use] = ACTIONS(741), + [anon_sym_where] = ACTIONS(741), + [anon_sym_while] = ACTIONS(741), + [sym_mutable_specifier] = ACTIONS(741), + [sym_integer_literal] = ACTIONS(743), + [aux_sym_string_literal_token1] = ACTIONS(743), + [sym_char_literal] = ACTIONS(743), + [anon_sym_true] = ACTIONS(741), + [anon_sym_false] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(741), + [sym_super] = ACTIONS(741), + [sym_crate] = ACTIONS(741), + [sym_metavariable] = ACTIONS(743), + [sym__raw_string_literal_start] = ACTIONS(743), + [sym_float_literal] = ACTIONS(743), + }, + [167] = { + [sym_line_comment] = STATE(167), + [sym_block_comment] = STATE(167), + [sym_identifier] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_RBRACK] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_EQ_GT] = ACTIONS(969), + [anon_sym_COLON] = ACTIONS(967), + [anon_sym_DOLLAR] = ACTIONS(967), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(969), + [anon_sym_u8] = ACTIONS(967), + [anon_sym_i8] = ACTIONS(967), + [anon_sym_u16] = ACTIONS(967), + [anon_sym_i16] = ACTIONS(967), + [anon_sym_u32] = ACTIONS(967), + [anon_sym_i32] = ACTIONS(967), + [anon_sym_u64] = ACTIONS(967), + [anon_sym_i64] = ACTIONS(967), + [anon_sym_u128] = ACTIONS(967), + [anon_sym_i128] = ACTIONS(967), + [anon_sym_isize] = ACTIONS(967), + [anon_sym_usize] = ACTIONS(967), + [anon_sym_f32] = ACTIONS(967), + [anon_sym_f64] = ACTIONS(967), + [anon_sym_bool] = ACTIONS(967), + [anon_sym_str] = ACTIONS(967), + [anon_sym_char] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE_PIPE] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_STAR_EQ] = ACTIONS(969), + [anon_sym_SLASH_EQ] = ACTIONS(969), + [anon_sym_PERCENT_EQ] = ACTIONS(969), + [anon_sym_CARET_EQ] = ACTIONS(969), + [anon_sym_AMP_EQ] = ACTIONS(969), + [anon_sym_PIPE_EQ] = ACTIONS(969), + [anon_sym_LT_LT_EQ] = ACTIONS(969), + [anon_sym_GT_GT_EQ] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(969), + [anon_sym_BANG_EQ] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), + [anon_sym__] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(969), + [anon_sym_COLON_COLON] = ACTIONS(969), + [anon_sym_DASH_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_async] = ACTIONS(967), + [anon_sym_await] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_default] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(967), + [anon_sym_fn] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_impl] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_loop] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_mod] = ACTIONS(967), + [anon_sym_pub] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_static] = ACTIONS(967), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_trait] = ACTIONS(967), + [anon_sym_type] = ACTIONS(967), + [anon_sym_union] = ACTIONS(967), + [anon_sym_unsafe] = ACTIONS(967), + [anon_sym_use] = ACTIONS(967), + [anon_sym_where] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [sym_mutable_specifier] = ACTIONS(967), + [sym_integer_literal] = ACTIONS(969), + [aux_sym_string_literal_token1] = ACTIONS(969), + [sym_char_literal] = ACTIONS(969), + [anon_sym_true] = ACTIONS(967), + [anon_sym_false] = ACTIONS(967), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(967), + [sym_super] = ACTIONS(967), + [sym_crate] = ACTIONS(967), + [sym_metavariable] = ACTIONS(969), + [sym__raw_string_literal_start] = ACTIONS(969), + [sym_float_literal] = ACTIONS(969), + }, + [168] = { + [sym_line_comment] = STATE(168), + [sym_block_comment] = STATE(168), + [sym_identifier] = ACTIONS(741), + [anon_sym_SEMI] = ACTIONS(743), + [anon_sym_LPAREN] = ACTIONS(743), + [anon_sym_RPAREN] = ACTIONS(743), + [anon_sym_LBRACK] = ACTIONS(743), + [anon_sym_RBRACK] = ACTIONS(743), + [anon_sym_LBRACE] = ACTIONS(743), + [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_EQ_GT] = ACTIONS(743), + [anon_sym_COLON] = ACTIONS(971), + [anon_sym_DOLLAR] = ACTIONS(741), + [anon_sym_PLUS] = ACTIONS(741), + [anon_sym_STAR] = ACTIONS(741), + [anon_sym_QMARK] = ACTIONS(743), + [anon_sym_u8] = ACTIONS(741), + [anon_sym_i8] = ACTIONS(741), + [anon_sym_u16] = ACTIONS(741), + [anon_sym_i16] = ACTIONS(741), + [anon_sym_u32] = ACTIONS(741), + [anon_sym_i32] = ACTIONS(741), + [anon_sym_u64] = ACTIONS(741), + [anon_sym_i64] = ACTIONS(741), + [anon_sym_u128] = ACTIONS(741), + [anon_sym_i128] = ACTIONS(741), + [anon_sym_isize] = ACTIONS(741), + [anon_sym_usize] = ACTIONS(741), + [anon_sym_f32] = ACTIONS(741), + [anon_sym_f64] = ACTIONS(741), + [anon_sym_bool] = ACTIONS(741), + [anon_sym_str] = ACTIONS(741), + [anon_sym_char] = ACTIONS(741), + [anon_sym_DASH] = ACTIONS(741), + [anon_sym_SLASH] = ACTIONS(741), + [anon_sym_PERCENT] = ACTIONS(741), + [anon_sym_CARET] = ACTIONS(741), + [anon_sym_BANG] = ACTIONS(741), + [anon_sym_AMP] = ACTIONS(741), + [anon_sym_PIPE] = ACTIONS(741), + [anon_sym_AMP_AMP] = ACTIONS(743), + [anon_sym_PIPE_PIPE] = ACTIONS(743), + [anon_sym_LT_LT] = ACTIONS(741), + [anon_sym_GT_GT] = ACTIONS(741), + [anon_sym_PLUS_EQ] = ACTIONS(743), + [anon_sym_DASH_EQ] = ACTIONS(743), + [anon_sym_STAR_EQ] = ACTIONS(743), + [anon_sym_SLASH_EQ] = ACTIONS(743), + [anon_sym_PERCENT_EQ] = ACTIONS(743), + [anon_sym_CARET_EQ] = ACTIONS(743), + [anon_sym_AMP_EQ] = ACTIONS(743), + [anon_sym_PIPE_EQ] = ACTIONS(743), + [anon_sym_LT_LT_EQ] = ACTIONS(743), + [anon_sym_GT_GT_EQ] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(741), + [anon_sym_EQ_EQ] = ACTIONS(743), + [anon_sym_BANG_EQ] = ACTIONS(743), + [anon_sym_GT] = ACTIONS(741), + [anon_sym_LT] = ACTIONS(741), + [anon_sym_GT_EQ] = ACTIONS(743), + [anon_sym_LT_EQ] = ACTIONS(743), + [anon_sym_AT] = ACTIONS(743), + [anon_sym__] = ACTIONS(741), + [anon_sym_DOT] = ACTIONS(741), + [anon_sym_DOT_DOT] = ACTIONS(741), + [anon_sym_DOT_DOT_DOT] = ACTIONS(743), + [anon_sym_DOT_DOT_EQ] = ACTIONS(743), + [anon_sym_COMMA] = ACTIONS(743), + [anon_sym_COLON_COLON] = ACTIONS(743), + [anon_sym_DASH_GT] = ACTIONS(743), + [anon_sym_POUND] = ACTIONS(743), + [anon_sym_SQUOTE] = ACTIONS(741), + [anon_sym_as] = ACTIONS(741), + [anon_sym_async] = ACTIONS(741), + [anon_sym_await] = ACTIONS(741), + [anon_sym_break] = ACTIONS(741), + [anon_sym_const] = ACTIONS(741), + [anon_sym_continue] = ACTIONS(741), + [anon_sym_default] = ACTIONS(741), + [anon_sym_enum] = ACTIONS(741), + [anon_sym_fn] = ACTIONS(741), + [anon_sym_for] = ACTIONS(741), + [anon_sym_if] = ACTIONS(741), + [anon_sym_impl] = ACTIONS(741), + [anon_sym_let] = ACTIONS(741), + [anon_sym_loop] = ACTIONS(741), + [anon_sym_match] = ACTIONS(741), + [anon_sym_mod] = ACTIONS(741), + [anon_sym_pub] = ACTIONS(741), + [anon_sym_return] = ACTIONS(741), + [anon_sym_static] = ACTIONS(741), + [anon_sym_struct] = ACTIONS(741), + [anon_sym_trait] = ACTIONS(741), + [anon_sym_type] = ACTIONS(741), + [anon_sym_union] = ACTIONS(741), + [anon_sym_unsafe] = ACTIONS(741), + [anon_sym_use] = ACTIONS(741), + [anon_sym_where] = ACTIONS(741), + [anon_sym_while] = ACTIONS(741), + [sym_mutable_specifier] = ACTIONS(741), + [sym_integer_literal] = ACTIONS(743), + [aux_sym_string_literal_token1] = ACTIONS(743), + [sym_char_literal] = ACTIONS(743), + [anon_sym_true] = ACTIONS(741), + [anon_sym_false] = ACTIONS(741), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(741), + [sym_super] = ACTIONS(741), + [sym_crate] = ACTIONS(741), + [sym_metavariable] = ACTIONS(743), + [sym__raw_string_literal_start] = ACTIONS(743), + [sym_float_literal] = ACTIONS(743), + }, + [169] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2593), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(169), + [sym_block_comment] = STATE(169), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [170] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2730), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(170), + [sym_block_comment] = STATE(170), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [171] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1840), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(171), + [sym_block_comment] = STATE(171), + [aux_sym_enum_variant_list_repeat1] = STATE(212), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(981), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(961), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35376,9 +35970,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COMMA] = ACTIONS(963), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -35411,291 +36004,859 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [167] = { - [sym_line_comment] = STATE(167), - [sym_block_comment] = STATE(167), - [sym_identifier] = ACTIONS(965), - [anon_sym_SEMI] = ACTIONS(967), - [anon_sym_LPAREN] = ACTIONS(967), - [anon_sym_RPAREN] = ACTIONS(967), - [anon_sym_LBRACK] = ACTIONS(967), - [anon_sym_RBRACK] = ACTIONS(967), - [anon_sym_LBRACE] = ACTIONS(967), - [anon_sym_RBRACE] = ACTIONS(967), - [anon_sym_EQ_GT] = ACTIONS(967), - [anon_sym_COLON] = ACTIONS(965), - [anon_sym_DOLLAR] = ACTIONS(965), - [anon_sym_PLUS] = ACTIONS(965), - [anon_sym_STAR] = ACTIONS(965), - [anon_sym_QMARK] = ACTIONS(967), - [anon_sym_u8] = ACTIONS(965), - [anon_sym_i8] = ACTIONS(965), - [anon_sym_u16] = ACTIONS(965), - [anon_sym_i16] = ACTIONS(965), - [anon_sym_u32] = ACTIONS(965), - [anon_sym_i32] = ACTIONS(965), - [anon_sym_u64] = ACTIONS(965), - [anon_sym_i64] = ACTIONS(965), - [anon_sym_u128] = ACTIONS(965), - [anon_sym_i128] = ACTIONS(965), - [anon_sym_isize] = ACTIONS(965), - [anon_sym_usize] = ACTIONS(965), - [anon_sym_f32] = ACTIONS(965), - [anon_sym_f64] = ACTIONS(965), - [anon_sym_bool] = ACTIONS(965), - [anon_sym_str] = ACTIONS(965), - [anon_sym_char] = ACTIONS(965), - [anon_sym_DASH] = ACTIONS(965), - [anon_sym_SLASH] = ACTIONS(965), - [anon_sym_PERCENT] = ACTIONS(965), - [anon_sym_CARET] = ACTIONS(965), - [anon_sym_BANG] = ACTIONS(965), - [anon_sym_AMP] = ACTIONS(965), - [anon_sym_PIPE] = ACTIONS(965), - [anon_sym_AMP_AMP] = ACTIONS(967), - [anon_sym_PIPE_PIPE] = ACTIONS(967), - [anon_sym_LT_LT] = ACTIONS(965), - [anon_sym_GT_GT] = ACTIONS(965), - [anon_sym_PLUS_EQ] = ACTIONS(967), - [anon_sym_DASH_EQ] = ACTIONS(967), - [anon_sym_STAR_EQ] = ACTIONS(967), - [anon_sym_SLASH_EQ] = ACTIONS(967), - [anon_sym_PERCENT_EQ] = ACTIONS(967), - [anon_sym_CARET_EQ] = ACTIONS(967), - [anon_sym_AMP_EQ] = ACTIONS(967), - [anon_sym_PIPE_EQ] = ACTIONS(967), - [anon_sym_LT_LT_EQ] = ACTIONS(967), - [anon_sym_GT_GT_EQ] = ACTIONS(967), - [anon_sym_EQ] = ACTIONS(965), - [anon_sym_EQ_EQ] = ACTIONS(967), - [anon_sym_BANG_EQ] = ACTIONS(967), - [anon_sym_GT] = ACTIONS(965), - [anon_sym_LT] = ACTIONS(965), - [anon_sym_GT_EQ] = ACTIONS(967), - [anon_sym_LT_EQ] = ACTIONS(967), - [anon_sym_AT] = ACTIONS(967), - [anon_sym__] = ACTIONS(965), - [anon_sym_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT] = ACTIONS(965), - [anon_sym_DOT_DOT_DOT] = ACTIONS(967), - [anon_sym_DOT_DOT_EQ] = ACTIONS(967), - [anon_sym_COMMA] = ACTIONS(967), - [anon_sym_COLON_COLON] = ACTIONS(967), - [anon_sym_DASH_GT] = ACTIONS(967), - [anon_sym_POUND] = ACTIONS(967), - [anon_sym_SQUOTE] = ACTIONS(965), - [anon_sym_as] = ACTIONS(965), - [anon_sym_async] = ACTIONS(965), - [anon_sym_await] = ACTIONS(965), - [anon_sym_break] = ACTIONS(965), - [anon_sym_const] = ACTIONS(965), - [anon_sym_continue] = ACTIONS(965), - [anon_sym_default] = ACTIONS(965), - [anon_sym_enum] = ACTIONS(965), - [anon_sym_fn] = ACTIONS(965), - [anon_sym_for] = ACTIONS(965), - [anon_sym_if] = ACTIONS(965), - [anon_sym_impl] = ACTIONS(965), - [anon_sym_let] = ACTIONS(965), - [anon_sym_loop] = ACTIONS(965), - [anon_sym_match] = ACTIONS(965), - [anon_sym_mod] = ACTIONS(965), - [anon_sym_pub] = ACTIONS(965), - [anon_sym_return] = ACTIONS(965), - [anon_sym_static] = ACTIONS(965), - [anon_sym_struct] = ACTIONS(965), - [anon_sym_trait] = ACTIONS(965), - [anon_sym_type] = ACTIONS(965), - [anon_sym_union] = ACTIONS(965), - [anon_sym_unsafe] = ACTIONS(965), - [anon_sym_use] = ACTIONS(965), - [anon_sym_where] = ACTIONS(965), - [anon_sym_while] = ACTIONS(965), - [sym_mutable_specifier] = ACTIONS(965), - [sym_integer_literal] = ACTIONS(967), - [aux_sym_string_literal_token1] = ACTIONS(967), - [sym_char_literal] = ACTIONS(967), - [anon_sym_true] = ACTIONS(965), - [anon_sym_false] = ACTIONS(965), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(965), - [sym_super] = ACTIONS(965), - [sym_crate] = ACTIONS(965), - [sym_metavariable] = ACTIONS(967), - [sym__raw_string_literal_start] = ACTIONS(967), - [sym_float_literal] = ACTIONS(967), + [172] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2504), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(172), + [sym_block_comment] = STATE(172), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, - [168] = { - [sym_line_comment] = STATE(168), - [sym_block_comment] = STATE(168), - [sym_identifier] = ACTIONS(969), - [anon_sym_SEMI] = ACTIONS(971), - [anon_sym_LPAREN] = ACTIONS(971), - [anon_sym_RPAREN] = ACTIONS(971), - [anon_sym_LBRACK] = ACTIONS(971), - [anon_sym_RBRACK] = ACTIONS(971), - [anon_sym_LBRACE] = ACTIONS(971), - [anon_sym_RBRACE] = ACTIONS(971), - [anon_sym_EQ_GT] = ACTIONS(971), - [anon_sym_COLON] = ACTIONS(969), + [173] = { + [sym_line_comment] = STATE(173), + [sym_block_comment] = STATE(173), + [sym_identifier] = ACTIONS(935), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_RBRACK] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(937), + [anon_sym_COLON] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_PLUS] = ACTIONS(935), + [anon_sym_STAR] = ACTIONS(935), + [anon_sym_QMARK] = ACTIONS(937), + [anon_sym_u8] = ACTIONS(935), + [anon_sym_i8] = ACTIONS(935), + [anon_sym_u16] = ACTIONS(935), + [anon_sym_i16] = ACTIONS(935), + [anon_sym_u32] = ACTIONS(935), + [anon_sym_i32] = ACTIONS(935), + [anon_sym_u64] = ACTIONS(935), + [anon_sym_i64] = ACTIONS(935), + [anon_sym_u128] = ACTIONS(935), + [anon_sym_i128] = ACTIONS(935), + [anon_sym_isize] = ACTIONS(935), + [anon_sym_usize] = ACTIONS(935), + [anon_sym_f32] = ACTIONS(935), + [anon_sym_f64] = ACTIONS(935), + [anon_sym_bool] = ACTIONS(935), + [anon_sym_str] = ACTIONS(935), + [anon_sym_char] = ACTIONS(935), + [anon_sym_DASH] = ACTIONS(935), + [anon_sym_SLASH] = ACTIONS(935), + [anon_sym_PERCENT] = ACTIONS(935), + [anon_sym_CARET] = ACTIONS(935), + [anon_sym_BANG] = ACTIONS(935), + [anon_sym_AMP] = ACTIONS(935), + [anon_sym_PIPE] = ACTIONS(935), + [anon_sym_AMP_AMP] = ACTIONS(937), + [anon_sym_PIPE_PIPE] = ACTIONS(937), + [anon_sym_LT_LT] = ACTIONS(935), + [anon_sym_GT_GT] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PERCENT_EQ] = ACTIONS(937), + [anon_sym_CARET_EQ] = ACTIONS(937), + [anon_sym_AMP_EQ] = ACTIONS(937), + [anon_sym_PIPE_EQ] = ACTIONS(937), + [anon_sym_LT_LT_EQ] = ACTIONS(937), + [anon_sym_GT_GT_EQ] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_EQ_EQ] = ACTIONS(937), + [anon_sym_BANG_EQ] = ACTIONS(937), + [anon_sym_GT] = ACTIONS(935), + [anon_sym_LT] = ACTIONS(935), + [anon_sym_GT_EQ] = ACTIONS(937), + [anon_sym_LT_EQ] = ACTIONS(937), + [anon_sym_AT] = ACTIONS(937), + [anon_sym__] = ACTIONS(935), + [anon_sym_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT] = ACTIONS(937), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_COLON_COLON] = ACTIONS(937), + [anon_sym_DASH_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(937), + [anon_sym_SQUOTE] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_async] = ACTIONS(935), + [anon_sym_await] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_default] = ACTIONS(935), + [anon_sym_enum] = ACTIONS(935), + [anon_sym_fn] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_impl] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_mod] = ACTIONS(935), + [anon_sym_pub] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_static] = ACTIONS(935), + [anon_sym_struct] = ACTIONS(935), + [anon_sym_trait] = ACTIONS(935), + [anon_sym_type] = ACTIONS(935), + [anon_sym_union] = ACTIONS(935), + [anon_sym_unsafe] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_where] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [sym_mutable_specifier] = ACTIONS(935), + [sym_integer_literal] = ACTIONS(937), + [aux_sym_string_literal_token1] = ACTIONS(937), + [sym_char_literal] = ACTIONS(937), + [anon_sym_true] = ACTIONS(935), + [anon_sym_false] = ACTIONS(935), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(935), + [sym_super] = ACTIONS(935), + [sym_crate] = ACTIONS(935), + [sym__raw_string_literal_start] = ACTIONS(937), + [sym_float_literal] = ACTIONS(937), + }, + [174] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2573), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(174), + [sym_block_comment] = STATE(174), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [175] = { + [sym_line_comment] = STATE(175), + [sym_block_comment] = STATE(175), + [sym_identifier] = ACTIONS(967), + [anon_sym_SEMI] = ACTIONS(969), + [anon_sym_LPAREN] = ACTIONS(969), + [anon_sym_RPAREN] = ACTIONS(969), + [anon_sym_LBRACK] = ACTIONS(969), + [anon_sym_RBRACK] = ACTIONS(969), + [anon_sym_LBRACE] = ACTIONS(969), + [anon_sym_RBRACE] = ACTIONS(969), + [anon_sym_EQ_GT] = ACTIONS(969), + [anon_sym_COLON] = ACTIONS(967), [anon_sym_DOLLAR] = ACTIONS(969), - [anon_sym_PLUS] = ACTIONS(969), - [anon_sym_STAR] = ACTIONS(969), - [anon_sym_QMARK] = ACTIONS(971), - [anon_sym_u8] = ACTIONS(969), - [anon_sym_i8] = ACTIONS(969), - [anon_sym_u16] = ACTIONS(969), - [anon_sym_i16] = ACTIONS(969), - [anon_sym_u32] = ACTIONS(969), - [anon_sym_i32] = ACTIONS(969), - [anon_sym_u64] = ACTIONS(969), - [anon_sym_i64] = ACTIONS(969), - [anon_sym_u128] = ACTIONS(969), - [anon_sym_i128] = ACTIONS(969), - [anon_sym_isize] = ACTIONS(969), - [anon_sym_usize] = ACTIONS(969), - [anon_sym_f32] = ACTIONS(969), - [anon_sym_f64] = ACTIONS(969), - [anon_sym_bool] = ACTIONS(969), - [anon_sym_str] = ACTIONS(969), - [anon_sym_char] = ACTIONS(969), - [anon_sym_DASH] = ACTIONS(969), - [anon_sym_SLASH] = ACTIONS(969), - [anon_sym_PERCENT] = ACTIONS(969), - [anon_sym_CARET] = ACTIONS(969), - [anon_sym_BANG] = ACTIONS(969), - [anon_sym_AMP] = ACTIONS(969), - [anon_sym_PIPE] = ACTIONS(969), - [anon_sym_AMP_AMP] = ACTIONS(971), - [anon_sym_PIPE_PIPE] = ACTIONS(971), - [anon_sym_LT_LT] = ACTIONS(969), - [anon_sym_GT_GT] = ACTIONS(969), - [anon_sym_PLUS_EQ] = ACTIONS(971), - [anon_sym_DASH_EQ] = ACTIONS(971), - [anon_sym_STAR_EQ] = ACTIONS(971), - [anon_sym_SLASH_EQ] = ACTIONS(971), - [anon_sym_PERCENT_EQ] = ACTIONS(971), - [anon_sym_CARET_EQ] = ACTIONS(971), - [anon_sym_AMP_EQ] = ACTIONS(971), - [anon_sym_PIPE_EQ] = ACTIONS(971), - [anon_sym_LT_LT_EQ] = ACTIONS(971), - [anon_sym_GT_GT_EQ] = ACTIONS(971), - [anon_sym_EQ] = ACTIONS(969), - [anon_sym_EQ_EQ] = ACTIONS(971), - [anon_sym_BANG_EQ] = ACTIONS(971), - [anon_sym_GT] = ACTIONS(969), - [anon_sym_LT] = ACTIONS(969), - [anon_sym_GT_EQ] = ACTIONS(971), - [anon_sym_LT_EQ] = ACTIONS(971), - [anon_sym_AT] = ACTIONS(971), - [anon_sym__] = ACTIONS(969), - [anon_sym_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT] = ACTIONS(969), - [anon_sym_DOT_DOT_DOT] = ACTIONS(971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(971), - [anon_sym_COMMA] = ACTIONS(971), - [anon_sym_COLON_COLON] = ACTIONS(971), - [anon_sym_DASH_GT] = ACTIONS(971), - [anon_sym_POUND] = ACTIONS(971), - [anon_sym_SQUOTE] = ACTIONS(969), - [anon_sym_as] = ACTIONS(969), - [anon_sym_async] = ACTIONS(969), - [anon_sym_await] = ACTIONS(969), - [anon_sym_break] = ACTIONS(969), - [anon_sym_const] = ACTIONS(969), - [anon_sym_continue] = ACTIONS(969), - [anon_sym_default] = ACTIONS(969), - [anon_sym_enum] = ACTIONS(969), - [anon_sym_fn] = ACTIONS(969), - [anon_sym_for] = ACTIONS(969), - [anon_sym_if] = ACTIONS(969), - [anon_sym_impl] = ACTIONS(969), - [anon_sym_let] = ACTIONS(969), - [anon_sym_loop] = ACTIONS(969), - [anon_sym_match] = ACTIONS(969), - [anon_sym_mod] = ACTIONS(969), - [anon_sym_pub] = ACTIONS(969), - [anon_sym_return] = ACTIONS(969), - [anon_sym_static] = ACTIONS(969), - [anon_sym_struct] = ACTIONS(969), - [anon_sym_trait] = ACTIONS(969), - [anon_sym_type] = ACTIONS(969), - [anon_sym_union] = ACTIONS(969), - [anon_sym_unsafe] = ACTIONS(969), - [anon_sym_use] = ACTIONS(969), - [anon_sym_where] = ACTIONS(969), - [anon_sym_while] = ACTIONS(969), - [sym_mutable_specifier] = ACTIONS(969), - [sym_integer_literal] = ACTIONS(971), - [aux_sym_string_literal_token1] = ACTIONS(971), - [sym_char_literal] = ACTIONS(971), - [anon_sym_true] = ACTIONS(969), - [anon_sym_false] = ACTIONS(969), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(969), - [sym_super] = ACTIONS(969), - [sym_crate] = ACTIONS(969), - [sym_metavariable] = ACTIONS(971), - [sym__raw_string_literal_start] = ACTIONS(971), - [sym_float_literal] = ACTIONS(971), + [anon_sym_PLUS] = ACTIONS(967), + [anon_sym_STAR] = ACTIONS(967), + [anon_sym_QMARK] = ACTIONS(969), + [anon_sym_u8] = ACTIONS(967), + [anon_sym_i8] = ACTIONS(967), + [anon_sym_u16] = ACTIONS(967), + [anon_sym_i16] = ACTIONS(967), + [anon_sym_u32] = ACTIONS(967), + [anon_sym_i32] = ACTIONS(967), + [anon_sym_u64] = ACTIONS(967), + [anon_sym_i64] = ACTIONS(967), + [anon_sym_u128] = ACTIONS(967), + [anon_sym_i128] = ACTIONS(967), + [anon_sym_isize] = ACTIONS(967), + [anon_sym_usize] = ACTIONS(967), + [anon_sym_f32] = ACTIONS(967), + [anon_sym_f64] = ACTIONS(967), + [anon_sym_bool] = ACTIONS(967), + [anon_sym_str] = ACTIONS(967), + [anon_sym_char] = ACTIONS(967), + [anon_sym_DASH] = ACTIONS(967), + [anon_sym_SLASH] = ACTIONS(967), + [anon_sym_PERCENT] = ACTIONS(967), + [anon_sym_CARET] = ACTIONS(967), + [anon_sym_BANG] = ACTIONS(967), + [anon_sym_AMP] = ACTIONS(967), + [anon_sym_PIPE] = ACTIONS(967), + [anon_sym_AMP_AMP] = ACTIONS(969), + [anon_sym_PIPE_PIPE] = ACTIONS(969), + [anon_sym_LT_LT] = ACTIONS(967), + [anon_sym_GT_GT] = ACTIONS(967), + [anon_sym_PLUS_EQ] = ACTIONS(969), + [anon_sym_DASH_EQ] = ACTIONS(969), + [anon_sym_STAR_EQ] = ACTIONS(969), + [anon_sym_SLASH_EQ] = ACTIONS(969), + [anon_sym_PERCENT_EQ] = ACTIONS(969), + [anon_sym_CARET_EQ] = ACTIONS(969), + [anon_sym_AMP_EQ] = ACTIONS(969), + [anon_sym_PIPE_EQ] = ACTIONS(969), + [anon_sym_LT_LT_EQ] = ACTIONS(969), + [anon_sym_GT_GT_EQ] = ACTIONS(969), + [anon_sym_EQ] = ACTIONS(967), + [anon_sym_EQ_EQ] = ACTIONS(969), + [anon_sym_BANG_EQ] = ACTIONS(969), + [anon_sym_GT] = ACTIONS(967), + [anon_sym_LT] = ACTIONS(967), + [anon_sym_GT_EQ] = ACTIONS(969), + [anon_sym_LT_EQ] = ACTIONS(969), + [anon_sym_AT] = ACTIONS(969), + [anon_sym__] = ACTIONS(967), + [anon_sym_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT] = ACTIONS(967), + [anon_sym_DOT_DOT_DOT] = ACTIONS(969), + [anon_sym_DOT_DOT_EQ] = ACTIONS(969), + [anon_sym_COMMA] = ACTIONS(969), + [anon_sym_COLON_COLON] = ACTIONS(969), + [anon_sym_DASH_GT] = ACTIONS(969), + [anon_sym_POUND] = ACTIONS(969), + [anon_sym_SQUOTE] = ACTIONS(967), + [anon_sym_as] = ACTIONS(967), + [anon_sym_async] = ACTIONS(967), + [anon_sym_await] = ACTIONS(967), + [anon_sym_break] = ACTIONS(967), + [anon_sym_const] = ACTIONS(967), + [anon_sym_continue] = ACTIONS(967), + [anon_sym_default] = ACTIONS(967), + [anon_sym_enum] = ACTIONS(967), + [anon_sym_fn] = ACTIONS(967), + [anon_sym_for] = ACTIONS(967), + [anon_sym_if] = ACTIONS(967), + [anon_sym_impl] = ACTIONS(967), + [anon_sym_let] = ACTIONS(967), + [anon_sym_loop] = ACTIONS(967), + [anon_sym_match] = ACTIONS(967), + [anon_sym_mod] = ACTIONS(967), + [anon_sym_pub] = ACTIONS(967), + [anon_sym_return] = ACTIONS(967), + [anon_sym_static] = ACTIONS(967), + [anon_sym_struct] = ACTIONS(967), + [anon_sym_trait] = ACTIONS(967), + [anon_sym_type] = ACTIONS(967), + [anon_sym_union] = ACTIONS(967), + [anon_sym_unsafe] = ACTIONS(967), + [anon_sym_use] = ACTIONS(967), + [anon_sym_where] = ACTIONS(967), + [anon_sym_while] = ACTIONS(967), + [sym_mutable_specifier] = ACTIONS(967), + [sym_integer_literal] = ACTIONS(969), + [aux_sym_string_literal_token1] = ACTIONS(969), + [sym_char_literal] = ACTIONS(969), + [anon_sym_true] = ACTIONS(967), + [anon_sym_false] = ACTIONS(967), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(967), + [sym_super] = ACTIONS(967), + [sym_crate] = ACTIONS(967), + [sym__raw_string_literal_start] = ACTIONS(969), + [sym_float_literal] = ACTIONS(969), + }, + [176] = { + [sym_line_comment] = STATE(176), + [sym_block_comment] = STATE(176), + [sym_identifier] = ACTIONS(753), + [anon_sym_SEMI] = ACTIONS(755), + [anon_sym_LPAREN] = ACTIONS(755), + [anon_sym_RPAREN] = ACTIONS(755), + [anon_sym_LBRACK] = ACTIONS(755), + [anon_sym_RBRACK] = ACTIONS(755), + [anon_sym_LBRACE] = ACTIONS(755), + [anon_sym_RBRACE] = ACTIONS(755), + [anon_sym_EQ_GT] = ACTIONS(755), + [anon_sym_COLON] = ACTIONS(753), + [anon_sym_DOLLAR] = ACTIONS(755), + [anon_sym_PLUS] = ACTIONS(753), + [anon_sym_STAR] = ACTIONS(753), + [anon_sym_QMARK] = ACTIONS(755), + [anon_sym_u8] = ACTIONS(753), + [anon_sym_i8] = ACTIONS(753), + [anon_sym_u16] = ACTIONS(753), + [anon_sym_i16] = ACTIONS(753), + [anon_sym_u32] = ACTIONS(753), + [anon_sym_i32] = ACTIONS(753), + [anon_sym_u64] = ACTIONS(753), + [anon_sym_i64] = ACTIONS(753), + [anon_sym_u128] = ACTIONS(753), + [anon_sym_i128] = ACTIONS(753), + [anon_sym_isize] = ACTIONS(753), + [anon_sym_usize] = ACTIONS(753), + [anon_sym_f32] = ACTIONS(753), + [anon_sym_f64] = ACTIONS(753), + [anon_sym_bool] = ACTIONS(753), + [anon_sym_str] = ACTIONS(753), + [anon_sym_char] = ACTIONS(753), + [anon_sym_DASH] = ACTIONS(753), + [anon_sym_SLASH] = ACTIONS(753), + [anon_sym_PERCENT] = ACTIONS(753), + [anon_sym_CARET] = ACTIONS(753), + [anon_sym_BANG] = ACTIONS(753), + [anon_sym_AMP] = ACTIONS(753), + [anon_sym_PIPE] = ACTIONS(753), + [anon_sym_AMP_AMP] = ACTIONS(755), + [anon_sym_PIPE_PIPE] = ACTIONS(755), + [anon_sym_LT_LT] = ACTIONS(753), + [anon_sym_GT_GT] = ACTIONS(753), + [anon_sym_PLUS_EQ] = ACTIONS(755), + [anon_sym_DASH_EQ] = ACTIONS(755), + [anon_sym_STAR_EQ] = ACTIONS(755), + [anon_sym_SLASH_EQ] = ACTIONS(755), + [anon_sym_PERCENT_EQ] = ACTIONS(755), + [anon_sym_CARET_EQ] = ACTIONS(755), + [anon_sym_AMP_EQ] = ACTIONS(755), + [anon_sym_PIPE_EQ] = ACTIONS(755), + [anon_sym_LT_LT_EQ] = ACTIONS(755), + [anon_sym_GT_GT_EQ] = ACTIONS(755), + [anon_sym_EQ] = ACTIONS(753), + [anon_sym_EQ_EQ] = ACTIONS(755), + [anon_sym_BANG_EQ] = ACTIONS(755), + [anon_sym_GT] = ACTIONS(753), + [anon_sym_LT] = ACTIONS(753), + [anon_sym_GT_EQ] = ACTIONS(755), + [anon_sym_LT_EQ] = ACTIONS(755), + [anon_sym_AT] = ACTIONS(755), + [anon_sym__] = ACTIONS(753), + [anon_sym_DOT] = ACTIONS(753), + [anon_sym_DOT_DOT] = ACTIONS(753), + [anon_sym_DOT_DOT_DOT] = ACTIONS(755), + [anon_sym_DOT_DOT_EQ] = ACTIONS(755), + [anon_sym_COMMA] = ACTIONS(755), + [anon_sym_COLON_COLON] = ACTIONS(755), + [anon_sym_DASH_GT] = ACTIONS(755), + [anon_sym_POUND] = ACTIONS(755), + [anon_sym_SQUOTE] = ACTIONS(753), + [anon_sym_as] = ACTIONS(753), + [anon_sym_async] = ACTIONS(753), + [anon_sym_await] = ACTIONS(753), + [anon_sym_break] = ACTIONS(753), + [anon_sym_const] = ACTIONS(753), + [anon_sym_continue] = ACTIONS(753), + [anon_sym_default] = ACTIONS(753), + [anon_sym_enum] = ACTIONS(753), + [anon_sym_fn] = ACTIONS(753), + [anon_sym_for] = ACTIONS(753), + [anon_sym_if] = ACTIONS(753), + [anon_sym_impl] = ACTIONS(753), + [anon_sym_let] = ACTIONS(753), + [anon_sym_loop] = ACTIONS(753), + [anon_sym_match] = ACTIONS(753), + [anon_sym_mod] = ACTIONS(753), + [anon_sym_pub] = ACTIONS(753), + [anon_sym_return] = ACTIONS(753), + [anon_sym_static] = ACTIONS(753), + [anon_sym_struct] = ACTIONS(753), + [anon_sym_trait] = ACTIONS(753), + [anon_sym_type] = ACTIONS(753), + [anon_sym_union] = ACTIONS(753), + [anon_sym_unsafe] = ACTIONS(753), + [anon_sym_use] = ACTIONS(753), + [anon_sym_where] = ACTIONS(753), + [anon_sym_while] = ACTIONS(753), + [sym_mutable_specifier] = ACTIONS(753), + [sym_integer_literal] = ACTIONS(755), + [aux_sym_string_literal_token1] = ACTIONS(755), + [sym_char_literal] = ACTIONS(755), + [anon_sym_true] = ACTIONS(753), + [anon_sym_false] = ACTIONS(753), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(753), + [sym_super] = ACTIONS(753), + [sym_crate] = ACTIONS(753), + [sym__raw_string_literal_start] = ACTIONS(755), + [sym_float_literal] = ACTIONS(755), + }, + [177] = { + [sym_line_comment] = STATE(177), + [sym_block_comment] = STATE(177), + [sym_identifier] = ACTIONS(767), + [anon_sym_SEMI] = ACTIONS(769), + [anon_sym_LPAREN] = ACTIONS(769), + [anon_sym_RPAREN] = ACTIONS(769), + [anon_sym_LBRACK] = ACTIONS(769), + [anon_sym_RBRACK] = ACTIONS(769), + [anon_sym_LBRACE] = ACTIONS(769), + [anon_sym_RBRACE] = ACTIONS(769), + [anon_sym_EQ_GT] = ACTIONS(769), + [anon_sym_COLON] = ACTIONS(767), + [anon_sym_DOLLAR] = ACTIONS(769), + [anon_sym_PLUS] = ACTIONS(767), + [anon_sym_STAR] = ACTIONS(767), + [anon_sym_QMARK] = ACTIONS(769), + [anon_sym_u8] = ACTIONS(767), + [anon_sym_i8] = ACTIONS(767), + [anon_sym_u16] = ACTIONS(767), + [anon_sym_i16] = ACTIONS(767), + [anon_sym_u32] = ACTIONS(767), + [anon_sym_i32] = ACTIONS(767), + [anon_sym_u64] = ACTIONS(767), + [anon_sym_i64] = ACTIONS(767), + [anon_sym_u128] = ACTIONS(767), + [anon_sym_i128] = ACTIONS(767), + [anon_sym_isize] = ACTIONS(767), + [anon_sym_usize] = ACTIONS(767), + [anon_sym_f32] = ACTIONS(767), + [anon_sym_f64] = ACTIONS(767), + [anon_sym_bool] = ACTIONS(767), + [anon_sym_str] = ACTIONS(767), + [anon_sym_char] = ACTIONS(767), + [anon_sym_DASH] = ACTIONS(767), + [anon_sym_SLASH] = ACTIONS(767), + [anon_sym_PERCENT] = ACTIONS(767), + [anon_sym_CARET] = ACTIONS(767), + [anon_sym_BANG] = ACTIONS(767), + [anon_sym_AMP] = ACTIONS(767), + [anon_sym_PIPE] = ACTIONS(767), + [anon_sym_AMP_AMP] = ACTIONS(769), + [anon_sym_PIPE_PIPE] = ACTIONS(769), + [anon_sym_LT_LT] = ACTIONS(767), + [anon_sym_GT_GT] = ACTIONS(767), + [anon_sym_PLUS_EQ] = ACTIONS(769), + [anon_sym_DASH_EQ] = ACTIONS(769), + [anon_sym_STAR_EQ] = ACTIONS(769), + [anon_sym_SLASH_EQ] = ACTIONS(769), + [anon_sym_PERCENT_EQ] = ACTIONS(769), + [anon_sym_CARET_EQ] = ACTIONS(769), + [anon_sym_AMP_EQ] = ACTIONS(769), + [anon_sym_PIPE_EQ] = ACTIONS(769), + [anon_sym_LT_LT_EQ] = ACTIONS(769), + [anon_sym_GT_GT_EQ] = ACTIONS(769), + [anon_sym_EQ] = ACTIONS(767), + [anon_sym_EQ_EQ] = ACTIONS(769), + [anon_sym_BANG_EQ] = ACTIONS(769), + [anon_sym_GT] = ACTIONS(767), + [anon_sym_LT] = ACTIONS(767), + [anon_sym_GT_EQ] = ACTIONS(769), + [anon_sym_LT_EQ] = ACTIONS(769), + [anon_sym_AT] = ACTIONS(769), + [anon_sym__] = ACTIONS(767), + [anon_sym_DOT] = ACTIONS(767), + [anon_sym_DOT_DOT] = ACTIONS(767), + [anon_sym_DOT_DOT_DOT] = ACTIONS(769), + [anon_sym_DOT_DOT_EQ] = ACTIONS(769), + [anon_sym_COMMA] = ACTIONS(769), + [anon_sym_COLON_COLON] = ACTIONS(769), + [anon_sym_DASH_GT] = ACTIONS(769), + [anon_sym_POUND] = ACTIONS(769), + [anon_sym_SQUOTE] = ACTIONS(767), + [anon_sym_as] = ACTIONS(767), + [anon_sym_async] = ACTIONS(767), + [anon_sym_await] = ACTIONS(767), + [anon_sym_break] = ACTIONS(767), + [anon_sym_const] = ACTIONS(767), + [anon_sym_continue] = ACTIONS(767), + [anon_sym_default] = ACTIONS(767), + [anon_sym_enum] = ACTIONS(767), + [anon_sym_fn] = ACTIONS(767), + [anon_sym_for] = ACTIONS(767), + [anon_sym_if] = ACTIONS(767), + [anon_sym_impl] = ACTIONS(767), + [anon_sym_let] = ACTIONS(767), + [anon_sym_loop] = ACTIONS(767), + [anon_sym_match] = ACTIONS(767), + [anon_sym_mod] = ACTIONS(767), + [anon_sym_pub] = ACTIONS(767), + [anon_sym_return] = ACTIONS(767), + [anon_sym_static] = ACTIONS(767), + [anon_sym_struct] = ACTIONS(767), + [anon_sym_trait] = ACTIONS(767), + [anon_sym_type] = ACTIONS(767), + [anon_sym_union] = ACTIONS(767), + [anon_sym_unsafe] = ACTIONS(767), + [anon_sym_use] = ACTIONS(767), + [anon_sym_where] = ACTIONS(767), + [anon_sym_while] = ACTIONS(767), + [sym_mutable_specifier] = ACTIONS(767), + [sym_integer_literal] = ACTIONS(769), + [aux_sym_string_literal_token1] = ACTIONS(769), + [sym_char_literal] = ACTIONS(769), + [anon_sym_true] = ACTIONS(767), + [anon_sym_false] = ACTIONS(767), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(767), + [sym_super] = ACTIONS(767), + [sym_crate] = ACTIONS(767), + [sym__raw_string_literal_start] = ACTIONS(769), + [sym_float_literal] = ACTIONS(769), + }, + [178] = { + [sym_line_comment] = STATE(178), + [sym_block_comment] = STATE(178), + [sym_identifier] = ACTIONS(771), + [anon_sym_SEMI] = ACTIONS(773), + [anon_sym_LPAREN] = ACTIONS(773), + [anon_sym_RPAREN] = ACTIONS(773), + [anon_sym_LBRACK] = ACTIONS(773), + [anon_sym_RBRACK] = ACTIONS(773), + [anon_sym_LBRACE] = ACTIONS(773), + [anon_sym_RBRACE] = ACTIONS(773), + [anon_sym_EQ_GT] = ACTIONS(773), + [anon_sym_COLON] = ACTIONS(771), + [anon_sym_DOLLAR] = ACTIONS(773), + [anon_sym_PLUS] = ACTIONS(771), + [anon_sym_STAR] = ACTIONS(771), + [anon_sym_QMARK] = ACTIONS(773), + [anon_sym_u8] = ACTIONS(771), + [anon_sym_i8] = ACTIONS(771), + [anon_sym_u16] = ACTIONS(771), + [anon_sym_i16] = ACTIONS(771), + [anon_sym_u32] = ACTIONS(771), + [anon_sym_i32] = ACTIONS(771), + [anon_sym_u64] = ACTIONS(771), + [anon_sym_i64] = ACTIONS(771), + [anon_sym_u128] = ACTIONS(771), + [anon_sym_i128] = ACTIONS(771), + [anon_sym_isize] = ACTIONS(771), + [anon_sym_usize] = ACTIONS(771), + [anon_sym_f32] = ACTIONS(771), + [anon_sym_f64] = ACTIONS(771), + [anon_sym_bool] = ACTIONS(771), + [anon_sym_str] = ACTIONS(771), + [anon_sym_char] = ACTIONS(771), + [anon_sym_DASH] = ACTIONS(771), + [anon_sym_SLASH] = ACTIONS(771), + [anon_sym_PERCENT] = ACTIONS(771), + [anon_sym_CARET] = ACTIONS(771), + [anon_sym_BANG] = ACTIONS(771), + [anon_sym_AMP] = ACTIONS(771), + [anon_sym_PIPE] = ACTIONS(771), + [anon_sym_AMP_AMP] = ACTIONS(773), + [anon_sym_PIPE_PIPE] = ACTIONS(773), + [anon_sym_LT_LT] = ACTIONS(771), + [anon_sym_GT_GT] = ACTIONS(771), + [anon_sym_PLUS_EQ] = ACTIONS(773), + [anon_sym_DASH_EQ] = ACTIONS(773), + [anon_sym_STAR_EQ] = ACTIONS(773), + [anon_sym_SLASH_EQ] = ACTIONS(773), + [anon_sym_PERCENT_EQ] = ACTIONS(773), + [anon_sym_CARET_EQ] = ACTIONS(773), + [anon_sym_AMP_EQ] = ACTIONS(773), + [anon_sym_PIPE_EQ] = ACTIONS(773), + [anon_sym_LT_LT_EQ] = ACTIONS(773), + [anon_sym_GT_GT_EQ] = ACTIONS(773), + [anon_sym_EQ] = ACTIONS(771), + [anon_sym_EQ_EQ] = ACTIONS(773), + [anon_sym_BANG_EQ] = ACTIONS(773), + [anon_sym_GT] = ACTIONS(771), + [anon_sym_LT] = ACTIONS(771), + [anon_sym_GT_EQ] = ACTIONS(773), + [anon_sym_LT_EQ] = ACTIONS(773), + [anon_sym_AT] = ACTIONS(773), + [anon_sym__] = ACTIONS(771), + [anon_sym_DOT] = ACTIONS(771), + [anon_sym_DOT_DOT] = ACTIONS(771), + [anon_sym_DOT_DOT_DOT] = ACTIONS(773), + [anon_sym_DOT_DOT_EQ] = ACTIONS(773), + [anon_sym_COMMA] = ACTIONS(773), + [anon_sym_COLON_COLON] = ACTIONS(773), + [anon_sym_DASH_GT] = ACTIONS(773), + [anon_sym_POUND] = ACTIONS(773), + [anon_sym_SQUOTE] = ACTIONS(771), + [anon_sym_as] = ACTIONS(771), + [anon_sym_async] = ACTIONS(771), + [anon_sym_await] = ACTIONS(771), + [anon_sym_break] = ACTIONS(771), + [anon_sym_const] = ACTIONS(771), + [anon_sym_continue] = ACTIONS(771), + [anon_sym_default] = ACTIONS(771), + [anon_sym_enum] = ACTIONS(771), + [anon_sym_fn] = ACTIONS(771), + [anon_sym_for] = ACTIONS(771), + [anon_sym_if] = ACTIONS(771), + [anon_sym_impl] = ACTIONS(771), + [anon_sym_let] = ACTIONS(771), + [anon_sym_loop] = ACTIONS(771), + [anon_sym_match] = ACTIONS(771), + [anon_sym_mod] = ACTIONS(771), + [anon_sym_pub] = ACTIONS(771), + [anon_sym_return] = ACTIONS(771), + [anon_sym_static] = ACTIONS(771), + [anon_sym_struct] = ACTIONS(771), + [anon_sym_trait] = ACTIONS(771), + [anon_sym_type] = ACTIONS(771), + [anon_sym_union] = ACTIONS(771), + [anon_sym_unsafe] = ACTIONS(771), + [anon_sym_use] = ACTIONS(771), + [anon_sym_where] = ACTIONS(771), + [anon_sym_while] = ACTIONS(771), + [sym_mutable_specifier] = ACTIONS(771), + [sym_integer_literal] = ACTIONS(773), + [aux_sym_string_literal_token1] = ACTIONS(773), + [sym_char_literal] = ACTIONS(773), + [anon_sym_true] = ACTIONS(771), + [anon_sym_false] = ACTIONS(771), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(771), + [sym_super] = ACTIONS(771), + [sym_crate] = ACTIONS(771), + [sym__raw_string_literal_start] = ACTIONS(773), + [sym_float_literal] = ACTIONS(773), }, - [169] = { + [179] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(169), - [sym_block_comment] = STATE(169), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(179), + [sym_block_comment] = STATE(179), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(973), + [anon_sym_RBRACK] = ACTIONS(983), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -35722,7 +36883,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -35755,101 +36916,329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [170] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2523), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(170), - [sym_block_comment] = STATE(170), - [sym_identifier] = ACTIONS(464), + [180] = { + [sym_line_comment] = STATE(180), + [sym_block_comment] = STATE(180), + [sym_identifier] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_RPAREN] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_RBRACK] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_EQ_GT] = ACTIONS(987), + [anon_sym_COLON] = ACTIONS(985), + [anon_sym_DOLLAR] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(985), + [anon_sym_i8] = ACTIONS(985), + [anon_sym_u16] = ACTIONS(985), + [anon_sym_i16] = ACTIONS(985), + [anon_sym_u32] = ACTIONS(985), + [anon_sym_i32] = ACTIONS(985), + [anon_sym_u64] = ACTIONS(985), + [anon_sym_i64] = ACTIONS(985), + [anon_sym_u128] = ACTIONS(985), + [anon_sym_i128] = ACTIONS(985), + [anon_sym_isize] = ACTIONS(985), + [anon_sym_usize] = ACTIONS(985), + [anon_sym_f32] = ACTIONS(985), + [anon_sym_f64] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_str] = ACTIONS(985), + [anon_sym_char] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(987), + [anon_sym_PIPE_PIPE] = ACTIONS(987), + [anon_sym_LT_LT] = ACTIONS(985), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_PLUS_EQ] = ACTIONS(987), + [anon_sym_DASH_EQ] = ACTIONS(987), + [anon_sym_STAR_EQ] = ACTIONS(987), + [anon_sym_SLASH_EQ] = ACTIONS(987), + [anon_sym_PERCENT_EQ] = ACTIONS(987), + [anon_sym_CARET_EQ] = ACTIONS(987), + [anon_sym_AMP_EQ] = ACTIONS(987), + [anon_sym_PIPE_EQ] = ACTIONS(987), + [anon_sym_LT_LT_EQ] = ACTIONS(987), + [anon_sym_GT_GT_EQ] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_AT] = ACTIONS(987), + [anon_sym__] = ACTIONS(985), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(987), + [anon_sym_COMMA] = ACTIONS(987), + [anon_sym_COLON_COLON] = ACTIONS(987), + [anon_sym_DASH_GT] = ACTIONS(987), + [anon_sym_POUND] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_async] = ACTIONS(985), + [anon_sym_await] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_fn] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_impl] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_pub] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_static] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_trait] = ACTIONS(985), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_unsafe] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_where] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [sym_mutable_specifier] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(987), + [aux_sym_string_literal_token1] = ACTIONS(987), + [sym_char_literal] = ACTIONS(987), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(985), + [sym_super] = ACTIONS(985), + [sym_crate] = ACTIONS(985), + [sym__raw_string_literal_start] = ACTIONS(987), + [sym_float_literal] = ACTIONS(987), + }, + [181] = { + [sym_line_comment] = STATE(181), + [sym_block_comment] = STATE(181), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_RPAREN] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_RBRACK] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_EQ_GT] = ACTIONS(991), + [anon_sym_COLON] = ACTIONS(989), + [anon_sym_DOLLAR] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_u8] = ACTIONS(989), + [anon_sym_i8] = ACTIONS(989), + [anon_sym_u16] = ACTIONS(989), + [anon_sym_i16] = ACTIONS(989), + [anon_sym_u32] = ACTIONS(989), + [anon_sym_i32] = ACTIONS(989), + [anon_sym_u64] = ACTIONS(989), + [anon_sym_i64] = ACTIONS(989), + [anon_sym_u128] = ACTIONS(989), + [anon_sym_i128] = ACTIONS(989), + [anon_sym_isize] = ACTIONS(989), + [anon_sym_usize] = ACTIONS(989), + [anon_sym_f32] = ACTIONS(989), + [anon_sym_f64] = ACTIONS(989), + [anon_sym_bool] = ACTIONS(989), + [anon_sym_str] = ACTIONS(989), + [anon_sym_char] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(989), + [anon_sym_CARET] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_PERCENT_EQ] = ACTIONS(991), + [anon_sym_CARET_EQ] = ACTIONS(991), + [anon_sym_AMP_EQ] = ACTIONS(991), + [anon_sym_PIPE_EQ] = ACTIONS(991), + [anon_sym_LT_LT_EQ] = ACTIONS(991), + [anon_sym_GT_GT_EQ] = ACTIONS(991), + [anon_sym_EQ] = ACTIONS(989), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_AT] = ACTIONS(991), + [anon_sym__] = ACTIONS(989), + [anon_sym_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_COMMA] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(991), + [anon_sym_DASH_GT] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_as] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_await] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_fn] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_impl] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_loop] = ACTIONS(989), + [anon_sym_match] = ACTIONS(989), + [anon_sym_mod] = ACTIONS(989), + [anon_sym_pub] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_static] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_trait] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_union] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_use] = ACTIONS(989), + [anon_sym_where] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [sym_mutable_specifier] = ACTIONS(989), + [sym_integer_literal] = ACTIONS(991), + [aux_sym_string_literal_token1] = ACTIONS(991), + [sym_char_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(989), + [anon_sym_false] = ACTIONS(989), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_crate] = ACTIONS(989), + [sym__raw_string_literal_start] = ACTIONS(991), + [sym_float_literal] = ACTIONS(991), + }, + [182] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2629), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(182), + [sym_block_comment] = STATE(182), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), + [anon_sym_let] = ACTIONS(979), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -35862,182 +37251,410 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [171] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2627), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(171), - [sym_block_comment] = STATE(171), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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), + [183] = { + [sym_line_comment] = STATE(183), + [sym_block_comment] = STATE(183), + [sym_identifier] = ACTIONS(947), + [anon_sym_SEMI] = ACTIONS(949), + [anon_sym_LPAREN] = ACTIONS(949), + [anon_sym_RPAREN] = ACTIONS(949), + [anon_sym_LBRACK] = ACTIONS(949), + [anon_sym_RBRACK] = ACTIONS(949), + [anon_sym_LBRACE] = ACTIONS(949), + [anon_sym_RBRACE] = ACTIONS(949), + [anon_sym_EQ_GT] = ACTIONS(949), + [anon_sym_COLON] = ACTIONS(947), + [anon_sym_DOLLAR] = ACTIONS(949), + [anon_sym_PLUS] = ACTIONS(947), + [anon_sym_STAR] = ACTIONS(947), + [anon_sym_QMARK] = ACTIONS(949), + [anon_sym_u8] = ACTIONS(947), + [anon_sym_i8] = ACTIONS(947), + [anon_sym_u16] = ACTIONS(947), + [anon_sym_i16] = ACTIONS(947), + [anon_sym_u32] = ACTIONS(947), + [anon_sym_i32] = ACTIONS(947), + [anon_sym_u64] = ACTIONS(947), + [anon_sym_i64] = ACTIONS(947), + [anon_sym_u128] = ACTIONS(947), + [anon_sym_i128] = ACTIONS(947), + [anon_sym_isize] = ACTIONS(947), + [anon_sym_usize] = ACTIONS(947), + [anon_sym_f32] = ACTIONS(947), + [anon_sym_f64] = ACTIONS(947), + [anon_sym_bool] = ACTIONS(947), + [anon_sym_str] = ACTIONS(947), + [anon_sym_char] = ACTIONS(947), + [anon_sym_DASH] = ACTIONS(947), + [anon_sym_SLASH] = ACTIONS(947), + [anon_sym_PERCENT] = ACTIONS(947), + [anon_sym_CARET] = ACTIONS(947), + [anon_sym_BANG] = ACTIONS(947), + [anon_sym_AMP] = ACTIONS(947), + [anon_sym_PIPE] = ACTIONS(947), + [anon_sym_AMP_AMP] = ACTIONS(949), + [anon_sym_PIPE_PIPE] = ACTIONS(949), + [anon_sym_LT_LT] = ACTIONS(947), + [anon_sym_GT_GT] = ACTIONS(947), + [anon_sym_PLUS_EQ] = ACTIONS(949), + [anon_sym_DASH_EQ] = ACTIONS(949), + [anon_sym_STAR_EQ] = ACTIONS(949), + [anon_sym_SLASH_EQ] = ACTIONS(949), + [anon_sym_PERCENT_EQ] = ACTIONS(949), + [anon_sym_CARET_EQ] = ACTIONS(949), + [anon_sym_AMP_EQ] = ACTIONS(949), + [anon_sym_PIPE_EQ] = ACTIONS(949), + [anon_sym_LT_LT_EQ] = ACTIONS(949), + [anon_sym_GT_GT_EQ] = ACTIONS(949), + [anon_sym_EQ] = ACTIONS(947), + [anon_sym_EQ_EQ] = ACTIONS(949), + [anon_sym_BANG_EQ] = ACTIONS(949), + [anon_sym_GT] = ACTIONS(947), + [anon_sym_LT] = ACTIONS(947), + [anon_sym_GT_EQ] = ACTIONS(949), + [anon_sym_LT_EQ] = ACTIONS(949), + [anon_sym_AT] = ACTIONS(949), + [anon_sym__] = ACTIONS(947), + [anon_sym_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT] = ACTIONS(947), + [anon_sym_DOT_DOT_DOT] = ACTIONS(949), + [anon_sym_DOT_DOT_EQ] = ACTIONS(949), + [anon_sym_COMMA] = ACTIONS(949), + [anon_sym_COLON_COLON] = ACTIONS(949), + [anon_sym_DASH_GT] = ACTIONS(949), + [anon_sym_POUND] = ACTIONS(949), + [anon_sym_SQUOTE] = ACTIONS(947), + [anon_sym_as] = ACTIONS(947), + [anon_sym_async] = ACTIONS(947), + [anon_sym_await] = ACTIONS(947), + [anon_sym_break] = ACTIONS(947), + [anon_sym_const] = ACTIONS(947), + [anon_sym_continue] = ACTIONS(947), + [anon_sym_default] = ACTIONS(947), + [anon_sym_enum] = ACTIONS(947), + [anon_sym_fn] = ACTIONS(947), + [anon_sym_for] = ACTIONS(947), + [anon_sym_if] = ACTIONS(947), + [anon_sym_impl] = ACTIONS(947), + [anon_sym_let] = ACTIONS(947), + [anon_sym_loop] = ACTIONS(947), + [anon_sym_match] = ACTIONS(947), + [anon_sym_mod] = ACTIONS(947), + [anon_sym_pub] = ACTIONS(947), + [anon_sym_return] = ACTIONS(947), + [anon_sym_static] = ACTIONS(947), + [anon_sym_struct] = ACTIONS(947), + [anon_sym_trait] = ACTIONS(947), + [anon_sym_type] = ACTIONS(947), + [anon_sym_union] = ACTIONS(947), + [anon_sym_unsafe] = ACTIONS(947), + [anon_sym_use] = ACTIONS(947), + [anon_sym_where] = ACTIONS(947), + [anon_sym_while] = ACTIONS(947), + [sym_mutable_specifier] = ACTIONS(947), + [sym_integer_literal] = ACTIONS(949), + [aux_sym_string_literal_token1] = ACTIONS(949), + [sym_char_literal] = ACTIONS(949), + [anon_sym_true] = ACTIONS(947), + [anon_sym_false] = ACTIONS(947), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(947), + [sym_super] = ACTIONS(947), + [sym_crate] = ACTIONS(947), + [sym__raw_string_literal_start] = ACTIONS(949), + [sym_float_literal] = ACTIONS(949), + }, + [184] = { + [sym_line_comment] = STATE(184), + [sym_block_comment] = STATE(184), + [sym_identifier] = ACTIONS(993), + [anon_sym_SEMI] = ACTIONS(995), + [anon_sym_LPAREN] = ACTIONS(995), + [anon_sym_RPAREN] = ACTIONS(995), + [anon_sym_LBRACK] = ACTIONS(995), + [anon_sym_RBRACK] = ACTIONS(995), + [anon_sym_LBRACE] = ACTIONS(995), + [anon_sym_RBRACE] = ACTIONS(995), + [anon_sym_EQ_GT] = ACTIONS(995), + [anon_sym_COLON] = ACTIONS(993), + [anon_sym_DOLLAR] = ACTIONS(995), + [anon_sym_PLUS] = ACTIONS(993), + [anon_sym_STAR] = ACTIONS(993), + [anon_sym_QMARK] = ACTIONS(995), + [anon_sym_u8] = ACTIONS(993), + [anon_sym_i8] = ACTIONS(993), + [anon_sym_u16] = ACTIONS(993), + [anon_sym_i16] = ACTIONS(993), + [anon_sym_u32] = ACTIONS(993), + [anon_sym_i32] = ACTIONS(993), + [anon_sym_u64] = ACTIONS(993), + [anon_sym_i64] = ACTIONS(993), + [anon_sym_u128] = ACTIONS(993), + [anon_sym_i128] = ACTIONS(993), + [anon_sym_isize] = ACTIONS(993), + [anon_sym_usize] = ACTIONS(993), + [anon_sym_f32] = ACTIONS(993), + [anon_sym_f64] = ACTIONS(993), + [anon_sym_bool] = ACTIONS(993), + [anon_sym_str] = ACTIONS(993), + [anon_sym_char] = ACTIONS(993), + [anon_sym_DASH] = ACTIONS(993), + [anon_sym_SLASH] = ACTIONS(993), + [anon_sym_PERCENT] = ACTIONS(993), + [anon_sym_CARET] = ACTIONS(993), + [anon_sym_BANG] = ACTIONS(993), + [anon_sym_AMP] = ACTIONS(993), + [anon_sym_PIPE] = ACTIONS(993), + [anon_sym_AMP_AMP] = ACTIONS(995), + [anon_sym_PIPE_PIPE] = ACTIONS(995), + [anon_sym_LT_LT] = ACTIONS(993), + [anon_sym_GT_GT] = ACTIONS(993), + [anon_sym_PLUS_EQ] = ACTIONS(995), + [anon_sym_DASH_EQ] = ACTIONS(995), + [anon_sym_STAR_EQ] = ACTIONS(995), + [anon_sym_SLASH_EQ] = ACTIONS(995), + [anon_sym_PERCENT_EQ] = ACTIONS(995), + [anon_sym_CARET_EQ] = ACTIONS(995), + [anon_sym_AMP_EQ] = ACTIONS(995), + [anon_sym_PIPE_EQ] = ACTIONS(995), + [anon_sym_LT_LT_EQ] = ACTIONS(995), + [anon_sym_GT_GT_EQ] = ACTIONS(995), + [anon_sym_EQ] = ACTIONS(993), + [anon_sym_EQ_EQ] = ACTIONS(995), + [anon_sym_BANG_EQ] = ACTIONS(995), + [anon_sym_GT] = ACTIONS(993), + [anon_sym_LT] = ACTIONS(993), + [anon_sym_GT_EQ] = ACTIONS(995), + [anon_sym_LT_EQ] = ACTIONS(995), + [anon_sym_AT] = ACTIONS(995), + [anon_sym__] = ACTIONS(993), + [anon_sym_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT] = ACTIONS(993), + [anon_sym_DOT_DOT_DOT] = ACTIONS(995), + [anon_sym_DOT_DOT_EQ] = ACTIONS(995), + [anon_sym_COMMA] = ACTIONS(995), + [anon_sym_COLON_COLON] = ACTIONS(995), + [anon_sym_DASH_GT] = ACTIONS(995), + [anon_sym_POUND] = ACTIONS(995), + [anon_sym_SQUOTE] = ACTIONS(993), + [anon_sym_as] = ACTIONS(993), + [anon_sym_async] = ACTIONS(993), + [anon_sym_await] = ACTIONS(993), + [anon_sym_break] = ACTIONS(993), + [anon_sym_const] = ACTIONS(993), + [anon_sym_continue] = ACTIONS(993), + [anon_sym_default] = ACTIONS(993), + [anon_sym_enum] = ACTIONS(993), + [anon_sym_fn] = ACTIONS(993), + [anon_sym_for] = ACTIONS(993), + [anon_sym_if] = ACTIONS(993), + [anon_sym_impl] = ACTIONS(993), + [anon_sym_let] = ACTIONS(993), + [anon_sym_loop] = ACTIONS(993), + [anon_sym_match] = ACTIONS(993), + [anon_sym_mod] = ACTIONS(993), + [anon_sym_pub] = ACTIONS(993), + [anon_sym_return] = ACTIONS(993), + [anon_sym_static] = ACTIONS(993), + [anon_sym_struct] = ACTIONS(993), + [anon_sym_trait] = ACTIONS(993), + [anon_sym_type] = ACTIONS(993), + [anon_sym_union] = ACTIONS(993), + [anon_sym_unsafe] = ACTIONS(993), + [anon_sym_use] = ACTIONS(993), + [anon_sym_where] = ACTIONS(993), + [anon_sym_while] = ACTIONS(993), + [sym_mutable_specifier] = ACTIONS(993), + [sym_integer_literal] = ACTIONS(995), + [aux_sym_string_literal_token1] = ACTIONS(995), + [sym_char_literal] = ACTIONS(995), + [anon_sym_true] = ACTIONS(993), + [anon_sym_false] = ACTIONS(993), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(993), + [sym_super] = ACTIONS(993), + [sym_crate] = ACTIONS(993), + [sym__raw_string_literal_start] = ACTIONS(995), + [sym_float_literal] = ACTIONS(995), + }, + [185] = { + [sym_line_comment] = STATE(185), + [sym_block_comment] = STATE(185), + [sym_identifier] = ACTIONS(997), + [anon_sym_SEMI] = ACTIONS(999), + [anon_sym_LPAREN] = ACTIONS(999), + [anon_sym_RPAREN] = ACTIONS(999), + [anon_sym_LBRACK] = ACTIONS(999), + [anon_sym_RBRACK] = ACTIONS(999), + [anon_sym_LBRACE] = ACTIONS(999), + [anon_sym_RBRACE] = ACTIONS(999), + [anon_sym_EQ_GT] = ACTIONS(999), + [anon_sym_COLON] = ACTIONS(997), + [anon_sym_DOLLAR] = ACTIONS(999), + [anon_sym_PLUS] = ACTIONS(997), + [anon_sym_STAR] = ACTIONS(997), + [anon_sym_QMARK] = ACTIONS(999), + [anon_sym_u8] = ACTIONS(997), + [anon_sym_i8] = ACTIONS(997), + [anon_sym_u16] = ACTIONS(997), + [anon_sym_i16] = ACTIONS(997), + [anon_sym_u32] = ACTIONS(997), + [anon_sym_i32] = ACTIONS(997), + [anon_sym_u64] = ACTIONS(997), + [anon_sym_i64] = ACTIONS(997), + [anon_sym_u128] = ACTIONS(997), + [anon_sym_i128] = ACTIONS(997), + [anon_sym_isize] = ACTIONS(997), + [anon_sym_usize] = ACTIONS(997), + [anon_sym_f32] = ACTIONS(997), + [anon_sym_f64] = ACTIONS(997), + [anon_sym_bool] = ACTIONS(997), + [anon_sym_str] = ACTIONS(997), + [anon_sym_char] = ACTIONS(997), + [anon_sym_DASH] = ACTIONS(997), + [anon_sym_SLASH] = ACTIONS(997), + [anon_sym_PERCENT] = ACTIONS(997), + [anon_sym_CARET] = ACTIONS(997), + [anon_sym_BANG] = ACTIONS(997), + [anon_sym_AMP] = ACTIONS(997), + [anon_sym_PIPE] = ACTIONS(997), + [anon_sym_AMP_AMP] = ACTIONS(999), + [anon_sym_PIPE_PIPE] = ACTIONS(999), + [anon_sym_LT_LT] = ACTIONS(997), + [anon_sym_GT_GT] = ACTIONS(997), + [anon_sym_PLUS_EQ] = ACTIONS(999), + [anon_sym_DASH_EQ] = ACTIONS(999), + [anon_sym_STAR_EQ] = ACTIONS(999), + [anon_sym_SLASH_EQ] = ACTIONS(999), + [anon_sym_PERCENT_EQ] = ACTIONS(999), + [anon_sym_CARET_EQ] = ACTIONS(999), + [anon_sym_AMP_EQ] = ACTIONS(999), + [anon_sym_PIPE_EQ] = ACTIONS(999), + [anon_sym_LT_LT_EQ] = ACTIONS(999), + [anon_sym_GT_GT_EQ] = ACTIONS(999), + [anon_sym_EQ] = ACTIONS(997), + [anon_sym_EQ_EQ] = ACTIONS(999), + [anon_sym_BANG_EQ] = ACTIONS(999), + [anon_sym_GT] = ACTIONS(997), + [anon_sym_LT] = ACTIONS(997), + [anon_sym_GT_EQ] = ACTIONS(999), + [anon_sym_LT_EQ] = ACTIONS(999), + [anon_sym_AT] = ACTIONS(999), + [anon_sym__] = ACTIONS(997), + [anon_sym_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT] = ACTIONS(997), + [anon_sym_DOT_DOT_DOT] = ACTIONS(999), + [anon_sym_DOT_DOT_EQ] = ACTIONS(999), + [anon_sym_COMMA] = ACTIONS(999), + [anon_sym_COLON_COLON] = ACTIONS(999), + [anon_sym_DASH_GT] = ACTIONS(999), + [anon_sym_POUND] = ACTIONS(999), + [anon_sym_SQUOTE] = ACTIONS(997), + [anon_sym_as] = ACTIONS(997), + [anon_sym_async] = ACTIONS(997), + [anon_sym_await] = ACTIONS(997), + [anon_sym_break] = ACTIONS(997), + [anon_sym_const] = ACTIONS(997), + [anon_sym_continue] = ACTIONS(997), + [anon_sym_default] = ACTIONS(997), + [anon_sym_enum] = ACTIONS(997), + [anon_sym_fn] = ACTIONS(997), + [anon_sym_for] = ACTIONS(997), + [anon_sym_if] = ACTIONS(997), + [anon_sym_impl] = ACTIONS(997), + [anon_sym_let] = ACTIONS(997), + [anon_sym_loop] = ACTIONS(997), + [anon_sym_match] = ACTIONS(997), + [anon_sym_mod] = ACTIONS(997), + [anon_sym_pub] = ACTIONS(997), + [anon_sym_return] = ACTIONS(997), + [anon_sym_static] = ACTIONS(997), + [anon_sym_struct] = ACTIONS(997), + [anon_sym_trait] = ACTIONS(997), + [anon_sym_type] = ACTIONS(997), + [anon_sym_union] = ACTIONS(997), + [anon_sym_unsafe] = ACTIONS(997), + [anon_sym_use] = ACTIONS(997), + [anon_sym_where] = ACTIONS(997), + [anon_sym_while] = ACTIONS(997), + [sym_mutable_specifier] = ACTIONS(997), + [sym_integer_literal] = ACTIONS(999), + [aux_sym_string_literal_token1] = ACTIONS(999), + [sym_char_literal] = ACTIONS(999), + [anon_sym_true] = ACTIONS(997), + [anon_sym_false] = ACTIONS(997), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(997), + [sym_super] = ACTIONS(997), + [sym_crate] = ACTIONS(997), + [sym__raw_string_literal_start] = ACTIONS(999), + [sym_float_literal] = ACTIONS(999), }, - [172] = { + [186] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(172), - [sym_block_comment] = STATE(172), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1793), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(186), + [sym_block_comment] = STATE(186), [aux_sym_enum_variant_list_repeat1] = STATE(214), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1001), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(983), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36064,7 +37681,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -36097,61 +37714,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [173] = { + [187] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(173), - [sym_block_comment] = STATE(173), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(187), + [sym_block_comment] = STATE(187), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(985), + [anon_sym_RBRACK] = ACTIONS(1003), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36178,7 +37795,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -36211,403 +37828,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [174] = { - [sym_line_comment] = STATE(174), - [sym_block_comment] = STATE(174), - [sym_identifier] = ACTIONS(827), - [anon_sym_SEMI] = ACTIONS(829), - [anon_sym_LPAREN] = ACTIONS(829), - [anon_sym_RPAREN] = ACTIONS(829), - [anon_sym_LBRACK] = ACTIONS(829), - [anon_sym_RBRACK] = ACTIONS(829), - [anon_sym_LBRACE] = ACTIONS(829), - [anon_sym_RBRACE] = ACTIONS(829), - [anon_sym_EQ_GT] = ACTIONS(829), - [anon_sym_COLON] = ACTIONS(827), - [anon_sym_DOLLAR] = ACTIONS(829), - [anon_sym_PLUS] = ACTIONS(827), - [anon_sym_STAR] = ACTIONS(827), - [anon_sym_QMARK] = ACTIONS(829), - [anon_sym_u8] = ACTIONS(827), - [anon_sym_i8] = ACTIONS(827), - [anon_sym_u16] = ACTIONS(827), - [anon_sym_i16] = ACTIONS(827), - [anon_sym_u32] = ACTIONS(827), - [anon_sym_i32] = ACTIONS(827), - [anon_sym_u64] = ACTIONS(827), - [anon_sym_i64] = ACTIONS(827), - [anon_sym_u128] = ACTIONS(827), - [anon_sym_i128] = ACTIONS(827), - [anon_sym_isize] = ACTIONS(827), - [anon_sym_usize] = ACTIONS(827), - [anon_sym_f32] = ACTIONS(827), - [anon_sym_f64] = ACTIONS(827), - [anon_sym_bool] = ACTIONS(827), - [anon_sym_str] = ACTIONS(827), - [anon_sym_char] = ACTIONS(827), - [anon_sym_DASH] = ACTIONS(827), - [anon_sym_SLASH] = ACTIONS(827), - [anon_sym_PERCENT] = ACTIONS(827), - [anon_sym_CARET] = ACTIONS(827), - [anon_sym_BANG] = ACTIONS(827), - [anon_sym_AMP] = ACTIONS(827), - [anon_sym_PIPE] = ACTIONS(827), - [anon_sym_AMP_AMP] = ACTIONS(829), - [anon_sym_PIPE_PIPE] = ACTIONS(829), - [anon_sym_LT_LT] = ACTIONS(827), - [anon_sym_GT_GT] = ACTIONS(827), - [anon_sym_PLUS_EQ] = ACTIONS(829), - [anon_sym_DASH_EQ] = ACTIONS(829), - [anon_sym_STAR_EQ] = ACTIONS(829), - [anon_sym_SLASH_EQ] = ACTIONS(829), - [anon_sym_PERCENT_EQ] = ACTIONS(829), - [anon_sym_CARET_EQ] = ACTIONS(829), - [anon_sym_AMP_EQ] = ACTIONS(829), - [anon_sym_PIPE_EQ] = ACTIONS(829), - [anon_sym_LT_LT_EQ] = ACTIONS(829), - [anon_sym_GT_GT_EQ] = ACTIONS(829), - [anon_sym_EQ] = ACTIONS(827), - [anon_sym_EQ_EQ] = ACTIONS(829), - [anon_sym_BANG_EQ] = ACTIONS(829), - [anon_sym_GT] = ACTIONS(827), - [anon_sym_LT] = ACTIONS(827), - [anon_sym_GT_EQ] = ACTIONS(829), - [anon_sym_LT_EQ] = ACTIONS(829), - [anon_sym_AT] = ACTIONS(829), - [anon_sym__] = ACTIONS(827), - [anon_sym_DOT] = ACTIONS(827), - [anon_sym_DOT_DOT] = ACTIONS(827), - [anon_sym_DOT_DOT_DOT] = ACTIONS(829), - [anon_sym_DOT_DOT_EQ] = ACTIONS(829), - [anon_sym_COMMA] = ACTIONS(829), - [anon_sym_COLON_COLON] = ACTIONS(829), - [anon_sym_DASH_GT] = ACTIONS(829), - [anon_sym_POUND] = ACTIONS(829), - [anon_sym_SQUOTE] = ACTIONS(827), - [anon_sym_as] = ACTIONS(827), - [anon_sym_async] = ACTIONS(827), - [anon_sym_await] = ACTIONS(827), - [anon_sym_break] = ACTIONS(827), - [anon_sym_const] = ACTIONS(827), - [anon_sym_continue] = ACTIONS(827), - [anon_sym_default] = ACTIONS(827), - [anon_sym_enum] = ACTIONS(827), - [anon_sym_fn] = ACTIONS(827), - [anon_sym_for] = ACTIONS(827), - [anon_sym_if] = ACTIONS(827), - [anon_sym_impl] = ACTIONS(827), - [anon_sym_let] = ACTIONS(827), - [anon_sym_loop] = ACTIONS(827), - [anon_sym_match] = ACTIONS(827), - [anon_sym_mod] = ACTIONS(827), - [anon_sym_pub] = ACTIONS(827), - [anon_sym_return] = ACTIONS(827), - [anon_sym_static] = ACTIONS(827), - [anon_sym_struct] = ACTIONS(827), - [anon_sym_trait] = ACTIONS(827), - [anon_sym_type] = ACTIONS(827), - [anon_sym_union] = ACTIONS(827), - [anon_sym_unsafe] = ACTIONS(827), - [anon_sym_use] = ACTIONS(827), - [anon_sym_where] = ACTIONS(827), - [anon_sym_while] = ACTIONS(827), - [sym_mutable_specifier] = ACTIONS(827), - [sym_integer_literal] = ACTIONS(829), - [aux_sym_string_literal_token1] = ACTIONS(829), - [sym_char_literal] = ACTIONS(829), - [anon_sym_true] = ACTIONS(827), - [anon_sym_false] = ACTIONS(827), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(827), - [sym_super] = ACTIONS(827), - [sym_crate] = ACTIONS(827), - [sym__raw_string_literal_start] = ACTIONS(829), - [sym_float_literal] = ACTIONS(829), - }, - [175] = { - [sym_line_comment] = STATE(175), - [sym_block_comment] = STATE(175), - [sym_identifier] = ACTIONS(777), - [anon_sym_SEMI] = ACTIONS(779), - [anon_sym_LPAREN] = ACTIONS(779), - [anon_sym_RPAREN] = ACTIONS(779), - [anon_sym_LBRACK] = ACTIONS(779), - [anon_sym_RBRACK] = ACTIONS(779), - [anon_sym_LBRACE] = ACTIONS(779), - [anon_sym_RBRACE] = ACTIONS(779), - [anon_sym_EQ_GT] = ACTIONS(779), - [anon_sym_COLON] = ACTIONS(777), - [anon_sym_DOLLAR] = ACTIONS(779), - [anon_sym_PLUS] = ACTIONS(777), - [anon_sym_STAR] = ACTIONS(777), - [anon_sym_QMARK] = ACTIONS(779), - [anon_sym_u8] = ACTIONS(777), - [anon_sym_i8] = ACTIONS(777), - [anon_sym_u16] = ACTIONS(777), - [anon_sym_i16] = ACTIONS(777), - [anon_sym_u32] = ACTIONS(777), - [anon_sym_i32] = ACTIONS(777), - [anon_sym_u64] = ACTIONS(777), - [anon_sym_i64] = ACTIONS(777), - [anon_sym_u128] = ACTIONS(777), - [anon_sym_i128] = ACTIONS(777), - [anon_sym_isize] = ACTIONS(777), - [anon_sym_usize] = ACTIONS(777), - [anon_sym_f32] = ACTIONS(777), - [anon_sym_f64] = ACTIONS(777), - [anon_sym_bool] = ACTIONS(777), - [anon_sym_str] = ACTIONS(777), - [anon_sym_char] = ACTIONS(777), - [anon_sym_DASH] = ACTIONS(777), - [anon_sym_SLASH] = ACTIONS(777), - [anon_sym_PERCENT] = ACTIONS(777), - [anon_sym_CARET] = ACTIONS(777), - [anon_sym_BANG] = ACTIONS(777), - [anon_sym_AMP] = ACTIONS(777), - [anon_sym_PIPE] = ACTIONS(777), - [anon_sym_AMP_AMP] = ACTIONS(779), - [anon_sym_PIPE_PIPE] = ACTIONS(779), - [anon_sym_LT_LT] = ACTIONS(777), - [anon_sym_GT_GT] = ACTIONS(777), - [anon_sym_PLUS_EQ] = ACTIONS(779), - [anon_sym_DASH_EQ] = ACTIONS(779), - [anon_sym_STAR_EQ] = ACTIONS(779), - [anon_sym_SLASH_EQ] = ACTIONS(779), - [anon_sym_PERCENT_EQ] = ACTIONS(779), - [anon_sym_CARET_EQ] = ACTIONS(779), - [anon_sym_AMP_EQ] = ACTIONS(779), - [anon_sym_PIPE_EQ] = ACTIONS(779), - [anon_sym_LT_LT_EQ] = ACTIONS(779), - [anon_sym_GT_GT_EQ] = ACTIONS(779), - [anon_sym_EQ] = ACTIONS(777), - [anon_sym_EQ_EQ] = ACTIONS(779), - [anon_sym_BANG_EQ] = ACTIONS(779), - [anon_sym_GT] = ACTIONS(777), - [anon_sym_LT] = ACTIONS(777), - [anon_sym_GT_EQ] = ACTIONS(779), - [anon_sym_LT_EQ] = ACTIONS(779), - [anon_sym_AT] = ACTIONS(779), - [anon_sym__] = ACTIONS(777), - [anon_sym_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT] = ACTIONS(777), - [anon_sym_DOT_DOT_DOT] = ACTIONS(779), - [anon_sym_DOT_DOT_EQ] = ACTIONS(779), - [anon_sym_COMMA] = ACTIONS(779), - [anon_sym_COLON_COLON] = ACTIONS(779), - [anon_sym_DASH_GT] = ACTIONS(779), - [anon_sym_POUND] = ACTIONS(779), - [anon_sym_SQUOTE] = ACTIONS(777), - [anon_sym_as] = ACTIONS(777), - [anon_sym_async] = ACTIONS(777), - [anon_sym_await] = ACTIONS(777), - [anon_sym_break] = ACTIONS(777), - [anon_sym_const] = ACTIONS(777), - [anon_sym_continue] = ACTIONS(777), - [anon_sym_default] = ACTIONS(777), - [anon_sym_enum] = ACTIONS(777), - [anon_sym_fn] = ACTIONS(777), - [anon_sym_for] = ACTIONS(777), - [anon_sym_if] = ACTIONS(777), - [anon_sym_impl] = ACTIONS(777), - [anon_sym_let] = ACTIONS(777), - [anon_sym_loop] = ACTIONS(777), - [anon_sym_match] = ACTIONS(777), - [anon_sym_mod] = ACTIONS(777), - [anon_sym_pub] = ACTIONS(777), - [anon_sym_return] = ACTIONS(777), - [anon_sym_static] = ACTIONS(777), - [anon_sym_struct] = ACTIONS(777), - [anon_sym_trait] = ACTIONS(777), - [anon_sym_type] = ACTIONS(777), - [anon_sym_union] = ACTIONS(777), - [anon_sym_unsafe] = ACTIONS(777), - [anon_sym_use] = ACTIONS(777), - [anon_sym_where] = ACTIONS(777), - [anon_sym_while] = ACTIONS(777), - [sym_mutable_specifier] = ACTIONS(777), - [sym_integer_literal] = ACTIONS(779), - [aux_sym_string_literal_token1] = ACTIONS(779), - [sym_char_literal] = ACTIONS(779), - [anon_sym_true] = ACTIONS(777), - [anon_sym_false] = ACTIONS(777), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(777), - [sym_super] = ACTIONS(777), - [sym_crate] = ACTIONS(777), - [sym__raw_string_literal_start] = ACTIONS(779), - [sym_float_literal] = ACTIONS(779), - }, - [176] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2640), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(176), - [sym_block_comment] = STATE(176), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [177] = { + [188] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(177), - [sym_block_comment] = STATE(177), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(188), + [sym_block_comment] = STATE(188), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(987), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36634,7 +37909,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -36667,101 +37942,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [178] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2496), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(178), - [sym_block_comment] = STATE(178), - [sym_identifier] = ACTIONS(464), + [189] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2548), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(189), + [sym_block_comment] = STATE(189), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), + [anon_sym_let] = ACTIONS(979), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -36774,68 +38049,68 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [179] = { + [190] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(179), - [sym_block_comment] = STATE(179), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(190), + [sym_block_comment] = STATE(190), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(989), + [anon_sym_RBRACK] = ACTIONS(1007), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -36862,7 +38137,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -36895,333 +38170,105 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [180] = { - [sym_line_comment] = STATE(180), - [sym_block_comment] = STATE(180), - [sym_identifier] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_RPAREN] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_RBRACK] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_EQ_GT] = ACTIONS(993), - [anon_sym_COLON] = ACTIONS(991), - [anon_sym_DOLLAR] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_u8] = ACTIONS(991), - [anon_sym_i8] = ACTIONS(991), - [anon_sym_u16] = ACTIONS(991), - [anon_sym_i16] = ACTIONS(991), - [anon_sym_u32] = ACTIONS(991), - [anon_sym_i32] = ACTIONS(991), - [anon_sym_u64] = ACTIONS(991), - [anon_sym_i64] = ACTIONS(991), - [anon_sym_u128] = ACTIONS(991), - [anon_sym_i128] = ACTIONS(991), - [anon_sym_isize] = ACTIONS(991), - [anon_sym_usize] = ACTIONS(991), - [anon_sym_f32] = ACTIONS(991), - [anon_sym_f64] = ACTIONS(991), - [anon_sym_bool] = ACTIONS(991), - [anon_sym_str] = ACTIONS(991), - [anon_sym_char] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(991), - [anon_sym_GT_GT] = ACTIONS(991), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(991), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_AT] = ACTIONS(993), - [anon_sym__] = ACTIONS(991), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(993), - [anon_sym_COMMA] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(993), - [anon_sym_DASH_GT] = ACTIONS(993), - [anon_sym_POUND] = ACTIONS(993), - [anon_sym_SQUOTE] = ACTIONS(991), - [anon_sym_as] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_await] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_default] = ACTIONS(991), - [anon_sym_enum] = ACTIONS(991), - [anon_sym_fn] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_impl] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_loop] = ACTIONS(991), - [anon_sym_match] = ACTIONS(991), - [anon_sym_mod] = ACTIONS(991), - [anon_sym_pub] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_static] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(991), - [anon_sym_trait] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_union] = ACTIONS(991), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_use] = ACTIONS(991), - [anon_sym_where] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [sym_mutable_specifier] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(993), - [aux_sym_string_literal_token1] = ACTIONS(993), - [sym_char_literal] = ACTIONS(993), - [anon_sym_true] = ACTIONS(991), - [anon_sym_false] = ACTIONS(991), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_crate] = ACTIONS(991), - [sym__raw_string_literal_start] = ACTIONS(993), - [sym_float_literal] = ACTIONS(993), - }, - [181] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2606), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(181), - [sym_block_comment] = STATE(181), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [182] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2615), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(182), - [sym_block_comment] = STATE(182), - [sym_identifier] = ACTIONS(464), + [191] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(191), + [sym_block_comment] = STATE(191), + [aux_sym_enum_variant_list_repeat1] = STATE(211), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1009), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -37230,182 +38277,68 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [183] = { - [sym_line_comment] = STATE(183), - [sym_block_comment] = STATE(183), - [sym_identifier] = ACTIONS(813), - [anon_sym_SEMI] = ACTIONS(815), - [anon_sym_LPAREN] = ACTIONS(815), - [anon_sym_RPAREN] = ACTIONS(815), - [anon_sym_LBRACK] = ACTIONS(815), - [anon_sym_RBRACK] = ACTIONS(815), - [anon_sym_LBRACE] = ACTIONS(815), - [anon_sym_RBRACE] = ACTIONS(815), - [anon_sym_EQ_GT] = ACTIONS(815), - [anon_sym_COLON] = ACTIONS(813), - [anon_sym_DOLLAR] = ACTIONS(815), - [anon_sym_PLUS] = ACTIONS(813), - [anon_sym_STAR] = ACTIONS(813), - [anon_sym_QMARK] = ACTIONS(815), - [anon_sym_u8] = ACTIONS(813), - [anon_sym_i8] = ACTIONS(813), - [anon_sym_u16] = ACTIONS(813), - [anon_sym_i16] = ACTIONS(813), - [anon_sym_u32] = ACTIONS(813), - [anon_sym_i32] = ACTIONS(813), - [anon_sym_u64] = ACTIONS(813), - [anon_sym_i64] = ACTIONS(813), - [anon_sym_u128] = ACTIONS(813), - [anon_sym_i128] = ACTIONS(813), - [anon_sym_isize] = ACTIONS(813), - [anon_sym_usize] = ACTIONS(813), - [anon_sym_f32] = ACTIONS(813), - [anon_sym_f64] = ACTIONS(813), - [anon_sym_bool] = ACTIONS(813), - [anon_sym_str] = ACTIONS(813), - [anon_sym_char] = ACTIONS(813), - [anon_sym_DASH] = ACTIONS(813), - [anon_sym_SLASH] = ACTIONS(813), - [anon_sym_PERCENT] = ACTIONS(813), - [anon_sym_CARET] = ACTIONS(813), - [anon_sym_BANG] = ACTIONS(813), - [anon_sym_AMP] = ACTIONS(813), - [anon_sym_PIPE] = ACTIONS(813), - [anon_sym_AMP_AMP] = ACTIONS(815), - [anon_sym_PIPE_PIPE] = ACTIONS(815), - [anon_sym_LT_LT] = ACTIONS(813), - [anon_sym_GT_GT] = ACTIONS(813), - [anon_sym_PLUS_EQ] = ACTIONS(815), - [anon_sym_DASH_EQ] = ACTIONS(815), - [anon_sym_STAR_EQ] = ACTIONS(815), - [anon_sym_SLASH_EQ] = ACTIONS(815), - [anon_sym_PERCENT_EQ] = ACTIONS(815), - [anon_sym_CARET_EQ] = ACTIONS(815), - [anon_sym_AMP_EQ] = ACTIONS(815), - [anon_sym_PIPE_EQ] = ACTIONS(815), - [anon_sym_LT_LT_EQ] = ACTIONS(815), - [anon_sym_GT_GT_EQ] = ACTIONS(815), - [anon_sym_EQ] = ACTIONS(813), - [anon_sym_EQ_EQ] = ACTIONS(815), - [anon_sym_BANG_EQ] = ACTIONS(815), - [anon_sym_GT] = ACTIONS(813), - [anon_sym_LT] = ACTIONS(813), - [anon_sym_GT_EQ] = ACTIONS(815), - [anon_sym_LT_EQ] = ACTIONS(815), - [anon_sym_AT] = ACTIONS(815), - [anon_sym__] = ACTIONS(813), - [anon_sym_DOT] = ACTIONS(813), - [anon_sym_DOT_DOT] = ACTIONS(813), - [anon_sym_DOT_DOT_DOT] = ACTIONS(815), - [anon_sym_DOT_DOT_EQ] = ACTIONS(815), - [anon_sym_COMMA] = ACTIONS(815), - [anon_sym_COLON_COLON] = ACTIONS(815), - [anon_sym_DASH_GT] = ACTIONS(815), - [anon_sym_POUND] = ACTIONS(815), - [anon_sym_SQUOTE] = ACTIONS(813), - [anon_sym_as] = ACTIONS(813), - [anon_sym_async] = ACTIONS(813), - [anon_sym_await] = ACTIONS(813), - [anon_sym_break] = ACTIONS(813), - [anon_sym_const] = ACTIONS(813), - [anon_sym_continue] = ACTIONS(813), - [anon_sym_default] = ACTIONS(813), - [anon_sym_enum] = ACTIONS(813), - [anon_sym_fn] = ACTIONS(813), - [anon_sym_for] = ACTIONS(813), - [anon_sym_if] = ACTIONS(813), - [anon_sym_impl] = ACTIONS(813), - [anon_sym_let] = ACTIONS(813), - [anon_sym_loop] = ACTIONS(813), - [anon_sym_match] = ACTIONS(813), - [anon_sym_mod] = ACTIONS(813), - [anon_sym_pub] = ACTIONS(813), - [anon_sym_return] = ACTIONS(813), - [anon_sym_static] = ACTIONS(813), - [anon_sym_struct] = ACTIONS(813), - [anon_sym_trait] = ACTIONS(813), - [anon_sym_type] = ACTIONS(813), - [anon_sym_union] = ACTIONS(813), - [anon_sym_unsafe] = ACTIONS(813), - [anon_sym_use] = ACTIONS(813), - [anon_sym_where] = ACTIONS(813), - [anon_sym_while] = ACTIONS(813), - [sym_mutable_specifier] = ACTIONS(813), - [sym_integer_literal] = ACTIONS(815), - [aux_sym_string_literal_token1] = ACTIONS(815), - [sym_char_literal] = ACTIONS(815), - [anon_sym_true] = ACTIONS(813), - [anon_sym_false] = ACTIONS(813), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(813), - [sym_super] = ACTIONS(813), - [sym_crate] = ACTIONS(813), - [sym__raw_string_literal_start] = ACTIONS(815), - [sym_float_literal] = ACTIONS(815), - }, - [184] = { + [192] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(184), - [sym_block_comment] = STATE(184), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(192), + [sym_block_comment] = STATE(192), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(995), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1011), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37432,7 +38365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -37465,175 +38398,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [185] = { - [sym_line_comment] = STATE(185), - [sym_block_comment] = STATE(185), - [sym_identifier] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_RPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_RBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_EQ_GT] = ACTIONS(999), - [anon_sym_COLON] = ACTIONS(997), - [anon_sym_DOLLAR] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PERCENT] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_AT] = ACTIONS(999), - [anon_sym__] = ACTIONS(997), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_COMMA] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_DASH_GT] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_await] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_fn] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_impl] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_struct] = ACTIONS(997), - [anon_sym_trait] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_union] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_where] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [sym_mutable_specifier] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(999), - [aux_sym_string_literal_token1] = ACTIONS(999), - [sym_char_literal] = ACTIONS(999), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_crate] = ACTIONS(997), - [sym__raw_string_literal_start] = ACTIONS(999), - [sym_float_literal] = ACTIONS(999), - }, - [186] = { + [193] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(186), - [sym_block_comment] = STATE(186), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(193), + [sym_block_comment] = STATE(193), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1013), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1001), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37660,7 +38479,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -37693,175 +38512,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [187] = { - [sym_line_comment] = STATE(187), - [sym_block_comment] = STATE(187), - [sym_identifier] = ACTIONS(797), - [anon_sym_SEMI] = ACTIONS(799), - [anon_sym_LPAREN] = ACTIONS(799), - [anon_sym_RPAREN] = ACTIONS(799), - [anon_sym_LBRACK] = ACTIONS(799), - [anon_sym_RBRACK] = ACTIONS(799), - [anon_sym_LBRACE] = ACTIONS(799), - [anon_sym_RBRACE] = ACTIONS(799), - [anon_sym_EQ_GT] = ACTIONS(799), - [anon_sym_COLON] = ACTIONS(797), - [anon_sym_DOLLAR] = ACTIONS(799), - [anon_sym_PLUS] = ACTIONS(797), - [anon_sym_STAR] = ACTIONS(797), - [anon_sym_QMARK] = ACTIONS(799), - [anon_sym_u8] = ACTIONS(797), - [anon_sym_i8] = ACTIONS(797), - [anon_sym_u16] = ACTIONS(797), - [anon_sym_i16] = ACTIONS(797), - [anon_sym_u32] = ACTIONS(797), - [anon_sym_i32] = ACTIONS(797), - [anon_sym_u64] = ACTIONS(797), - [anon_sym_i64] = ACTIONS(797), - [anon_sym_u128] = ACTIONS(797), - [anon_sym_i128] = ACTIONS(797), - [anon_sym_isize] = ACTIONS(797), - [anon_sym_usize] = ACTIONS(797), - [anon_sym_f32] = ACTIONS(797), - [anon_sym_f64] = ACTIONS(797), - [anon_sym_bool] = ACTIONS(797), - [anon_sym_str] = ACTIONS(797), - [anon_sym_char] = ACTIONS(797), - [anon_sym_DASH] = ACTIONS(797), - [anon_sym_SLASH] = ACTIONS(797), - [anon_sym_PERCENT] = ACTIONS(797), - [anon_sym_CARET] = ACTIONS(797), - [anon_sym_BANG] = ACTIONS(797), - [anon_sym_AMP] = ACTIONS(797), - [anon_sym_PIPE] = ACTIONS(797), - [anon_sym_AMP_AMP] = ACTIONS(799), - [anon_sym_PIPE_PIPE] = ACTIONS(799), - [anon_sym_LT_LT] = ACTIONS(797), - [anon_sym_GT_GT] = ACTIONS(797), - [anon_sym_PLUS_EQ] = ACTIONS(799), - [anon_sym_DASH_EQ] = ACTIONS(799), - [anon_sym_STAR_EQ] = ACTIONS(799), - [anon_sym_SLASH_EQ] = ACTIONS(799), - [anon_sym_PERCENT_EQ] = ACTIONS(799), - [anon_sym_CARET_EQ] = ACTIONS(799), - [anon_sym_AMP_EQ] = ACTIONS(799), - [anon_sym_PIPE_EQ] = ACTIONS(799), - [anon_sym_LT_LT_EQ] = ACTIONS(799), - [anon_sym_GT_GT_EQ] = ACTIONS(799), - [anon_sym_EQ] = ACTIONS(797), - [anon_sym_EQ_EQ] = ACTIONS(799), - [anon_sym_BANG_EQ] = ACTIONS(799), - [anon_sym_GT] = ACTIONS(797), - [anon_sym_LT] = ACTIONS(797), - [anon_sym_GT_EQ] = ACTIONS(799), - [anon_sym_LT_EQ] = ACTIONS(799), - [anon_sym_AT] = ACTIONS(799), - [anon_sym__] = ACTIONS(797), - [anon_sym_DOT] = ACTIONS(797), - [anon_sym_DOT_DOT] = ACTIONS(797), - [anon_sym_DOT_DOT_DOT] = ACTIONS(799), - [anon_sym_DOT_DOT_EQ] = ACTIONS(799), - [anon_sym_COMMA] = ACTIONS(799), - [anon_sym_COLON_COLON] = ACTIONS(799), - [anon_sym_DASH_GT] = ACTIONS(799), - [anon_sym_POUND] = ACTIONS(799), - [anon_sym_SQUOTE] = ACTIONS(797), - [anon_sym_as] = ACTIONS(797), - [anon_sym_async] = ACTIONS(797), - [anon_sym_await] = ACTIONS(797), - [anon_sym_break] = ACTIONS(797), - [anon_sym_const] = ACTIONS(797), - [anon_sym_continue] = ACTIONS(797), - [anon_sym_default] = ACTIONS(797), - [anon_sym_enum] = ACTIONS(797), - [anon_sym_fn] = ACTIONS(797), - [anon_sym_for] = ACTIONS(797), - [anon_sym_if] = ACTIONS(797), - [anon_sym_impl] = ACTIONS(797), - [anon_sym_let] = ACTIONS(797), - [anon_sym_loop] = ACTIONS(797), - [anon_sym_match] = ACTIONS(797), - [anon_sym_mod] = ACTIONS(797), - [anon_sym_pub] = ACTIONS(797), - [anon_sym_return] = ACTIONS(797), - [anon_sym_static] = ACTIONS(797), - [anon_sym_struct] = ACTIONS(797), - [anon_sym_trait] = ACTIONS(797), - [anon_sym_type] = ACTIONS(797), - [anon_sym_union] = ACTIONS(797), - [anon_sym_unsafe] = ACTIONS(797), - [anon_sym_use] = ACTIONS(797), - [anon_sym_where] = ACTIONS(797), - [anon_sym_while] = ACTIONS(797), - [sym_mutable_specifier] = ACTIONS(797), - [sym_integer_literal] = ACTIONS(799), - [aux_sym_string_literal_token1] = ACTIONS(799), - [sym_char_literal] = ACTIONS(799), - [anon_sym_true] = ACTIONS(797), - [anon_sym_false] = ACTIONS(797), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(797), - [sym_super] = ACTIONS(797), - [sym_crate] = ACTIONS(797), - [sym__raw_string_literal_start] = ACTIONS(799), - [sym_float_literal] = ACTIONS(799), - }, - [188] = { + [194] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(188), - [sym_block_comment] = STATE(188), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(194), + [sym_block_comment] = STATE(194), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1003), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1015), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -37888,7 +38593,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -37921,61 +38626,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [189] = { + [195] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(189), - [sym_block_comment] = STATE(189), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(195), + [sym_block_comment] = STATE(195), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1005), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1017), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38002,7 +38707,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38035,60 +38740,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [190] = { + [196] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1827), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(190), - [sym_block_comment] = STATE(190), - [aux_sym_enum_variant_list_repeat1] = STATE(210), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(196), + [sym_block_comment] = STATE(196), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1007), + [anon_sym_RPAREN] = ACTIONS(1019), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -38116,7 +38821,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38149,177 +38854,63 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [191] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2644), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(191), - [sym_block_comment] = STATE(191), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [192] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1859), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_let_condition] = STATE(3257), - [sym__let_chain] = STATE(3237), - [sym__condition] = STATE(3341), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(192), - [sym_block_comment] = STATE(192), + [197] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1875), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_let_condition] = STATE(3179), + [sym__let_chain] = STATE(3181), + [sym__condition] = STATE(3594), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(197), + [sym_block_comment] = STATE(197), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1021), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -38337,12 +38928,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1025), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), @@ -38352,7 +38943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(418), [anon_sym_for] = ACTIONS(420), [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1015), + [anon_sym_let] = ACTIONS(1027), [anon_sym_loop] = ACTIONS(424), [anon_sym_match] = ACTIONS(426), [anon_sym_return] = ACTIONS(428), @@ -38377,175 +38968,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [193] = { - [sym_line_comment] = STATE(193), - [sym_block_comment] = STATE(193), - [sym_identifier] = ACTIONS(785), - [anon_sym_SEMI] = ACTIONS(787), - [anon_sym_LPAREN] = ACTIONS(787), - [anon_sym_RPAREN] = ACTIONS(787), - [anon_sym_LBRACK] = ACTIONS(787), - [anon_sym_RBRACK] = ACTIONS(787), - [anon_sym_LBRACE] = ACTIONS(787), - [anon_sym_RBRACE] = ACTIONS(787), - [anon_sym_EQ_GT] = ACTIONS(787), - [anon_sym_COLON] = ACTIONS(785), - [anon_sym_DOLLAR] = ACTIONS(787), - [anon_sym_PLUS] = ACTIONS(785), - [anon_sym_STAR] = ACTIONS(785), - [anon_sym_QMARK] = ACTIONS(787), - [anon_sym_u8] = ACTIONS(785), - [anon_sym_i8] = ACTIONS(785), - [anon_sym_u16] = ACTIONS(785), - [anon_sym_i16] = ACTIONS(785), - [anon_sym_u32] = ACTIONS(785), - [anon_sym_i32] = ACTIONS(785), - [anon_sym_u64] = ACTIONS(785), - [anon_sym_i64] = ACTIONS(785), - [anon_sym_u128] = ACTIONS(785), - [anon_sym_i128] = ACTIONS(785), - [anon_sym_isize] = ACTIONS(785), - [anon_sym_usize] = ACTIONS(785), - [anon_sym_f32] = ACTIONS(785), - [anon_sym_f64] = ACTIONS(785), - [anon_sym_bool] = ACTIONS(785), - [anon_sym_str] = ACTIONS(785), - [anon_sym_char] = ACTIONS(785), - [anon_sym_DASH] = ACTIONS(785), - [anon_sym_SLASH] = ACTIONS(785), - [anon_sym_PERCENT] = ACTIONS(785), - [anon_sym_CARET] = ACTIONS(785), - [anon_sym_BANG] = ACTIONS(785), - [anon_sym_AMP] = ACTIONS(785), - [anon_sym_PIPE] = ACTIONS(785), - [anon_sym_AMP_AMP] = ACTIONS(787), - [anon_sym_PIPE_PIPE] = ACTIONS(787), - [anon_sym_LT_LT] = ACTIONS(785), - [anon_sym_GT_GT] = ACTIONS(785), - [anon_sym_PLUS_EQ] = ACTIONS(787), - [anon_sym_DASH_EQ] = ACTIONS(787), - [anon_sym_STAR_EQ] = ACTIONS(787), - [anon_sym_SLASH_EQ] = ACTIONS(787), - [anon_sym_PERCENT_EQ] = ACTIONS(787), - [anon_sym_CARET_EQ] = ACTIONS(787), - [anon_sym_AMP_EQ] = ACTIONS(787), - [anon_sym_PIPE_EQ] = ACTIONS(787), - [anon_sym_LT_LT_EQ] = ACTIONS(787), - [anon_sym_GT_GT_EQ] = ACTIONS(787), - [anon_sym_EQ] = ACTIONS(785), - [anon_sym_EQ_EQ] = ACTIONS(787), - [anon_sym_BANG_EQ] = ACTIONS(787), - [anon_sym_GT] = ACTIONS(785), - [anon_sym_LT] = ACTIONS(785), - [anon_sym_GT_EQ] = ACTIONS(787), - [anon_sym_LT_EQ] = ACTIONS(787), - [anon_sym_AT] = ACTIONS(787), - [anon_sym__] = ACTIONS(785), - [anon_sym_DOT] = ACTIONS(785), - [anon_sym_DOT_DOT] = ACTIONS(785), - [anon_sym_DOT_DOT_DOT] = ACTIONS(787), - [anon_sym_DOT_DOT_EQ] = ACTIONS(787), - [anon_sym_COMMA] = ACTIONS(787), - [anon_sym_COLON_COLON] = ACTIONS(787), - [anon_sym_DASH_GT] = ACTIONS(787), - [anon_sym_POUND] = ACTIONS(787), - [anon_sym_SQUOTE] = ACTIONS(785), - [anon_sym_as] = ACTIONS(785), - [anon_sym_async] = ACTIONS(785), - [anon_sym_await] = ACTIONS(785), - [anon_sym_break] = ACTIONS(785), - [anon_sym_const] = ACTIONS(785), - [anon_sym_continue] = ACTIONS(785), - [anon_sym_default] = ACTIONS(785), - [anon_sym_enum] = ACTIONS(785), - [anon_sym_fn] = ACTIONS(785), - [anon_sym_for] = ACTIONS(785), - [anon_sym_if] = ACTIONS(785), - [anon_sym_impl] = ACTIONS(785), - [anon_sym_let] = ACTIONS(785), - [anon_sym_loop] = ACTIONS(785), - [anon_sym_match] = ACTIONS(785), - [anon_sym_mod] = ACTIONS(785), - [anon_sym_pub] = ACTIONS(785), - [anon_sym_return] = ACTIONS(785), - [anon_sym_static] = ACTIONS(785), - [anon_sym_struct] = ACTIONS(785), - [anon_sym_trait] = ACTIONS(785), - [anon_sym_type] = ACTIONS(785), - [anon_sym_union] = ACTIONS(785), - [anon_sym_unsafe] = ACTIONS(785), - [anon_sym_use] = ACTIONS(785), - [anon_sym_where] = ACTIONS(785), - [anon_sym_while] = ACTIONS(785), - [sym_mutable_specifier] = ACTIONS(785), - [sym_integer_literal] = ACTIONS(787), - [aux_sym_string_literal_token1] = ACTIONS(787), - [sym_char_literal] = ACTIONS(787), - [anon_sym_true] = ACTIONS(785), - [anon_sym_false] = ACTIONS(785), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(785), - [sym_super] = ACTIONS(785), - [sym_crate] = ACTIONS(785), - [sym__raw_string_literal_start] = ACTIONS(787), - [sym_float_literal] = ACTIONS(787), - }, - [194] = { + [198] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(194), - [sym_block_comment] = STATE(194), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(198), + [sym_block_comment] = STATE(198), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1029), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1017), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38572,7 +39049,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38605,175 +39082,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [195] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2512), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(195), - [sym_block_comment] = STATE(195), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [196] = { + [199] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(196), - [sym_block_comment] = STATE(196), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(199), + [sym_block_comment] = STATE(199), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1019), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1031), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -38800,7 +39163,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -38833,174 +39196,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [197] = { - [sym_line_comment] = STATE(197), - [sym_block_comment] = STATE(197), - [sym_identifier] = ACTIONS(1021), - [anon_sym_SEMI] = ACTIONS(1023), - [anon_sym_LPAREN] = ACTIONS(1023), - [anon_sym_RPAREN] = ACTIONS(1023), - [anon_sym_LBRACK] = ACTIONS(1023), - [anon_sym_RBRACK] = ACTIONS(1023), - [anon_sym_LBRACE] = ACTIONS(1023), - [anon_sym_RBRACE] = ACTIONS(1023), - [anon_sym_EQ_GT] = ACTIONS(1023), - [anon_sym_COLON] = ACTIONS(1021), - [anon_sym_DOLLAR] = ACTIONS(1023), - [anon_sym_PLUS] = ACTIONS(1021), - [anon_sym_STAR] = ACTIONS(1021), - [anon_sym_QMARK] = ACTIONS(1023), - [anon_sym_u8] = ACTIONS(1021), - [anon_sym_i8] = ACTIONS(1021), - [anon_sym_u16] = ACTIONS(1021), - [anon_sym_i16] = ACTIONS(1021), - [anon_sym_u32] = ACTIONS(1021), - [anon_sym_i32] = ACTIONS(1021), - [anon_sym_u64] = ACTIONS(1021), - [anon_sym_i64] = ACTIONS(1021), - [anon_sym_u128] = ACTIONS(1021), - [anon_sym_i128] = ACTIONS(1021), - [anon_sym_isize] = ACTIONS(1021), - [anon_sym_usize] = ACTIONS(1021), - [anon_sym_f32] = ACTIONS(1021), - [anon_sym_f64] = ACTIONS(1021), - [anon_sym_bool] = ACTIONS(1021), - [anon_sym_str] = ACTIONS(1021), - [anon_sym_char] = ACTIONS(1021), - [anon_sym_DASH] = ACTIONS(1021), - [anon_sym_SLASH] = ACTIONS(1021), - [anon_sym_PERCENT] = ACTIONS(1021), - [anon_sym_CARET] = ACTIONS(1021), - [anon_sym_BANG] = ACTIONS(1021), - [anon_sym_AMP] = ACTIONS(1021), - [anon_sym_PIPE] = ACTIONS(1021), - [anon_sym_AMP_AMP] = ACTIONS(1023), - [anon_sym_PIPE_PIPE] = ACTIONS(1023), - [anon_sym_LT_LT] = ACTIONS(1021), - [anon_sym_GT_GT] = ACTIONS(1021), - [anon_sym_PLUS_EQ] = ACTIONS(1023), - [anon_sym_DASH_EQ] = ACTIONS(1023), - [anon_sym_STAR_EQ] = ACTIONS(1023), - [anon_sym_SLASH_EQ] = ACTIONS(1023), - [anon_sym_PERCENT_EQ] = ACTIONS(1023), - [anon_sym_CARET_EQ] = ACTIONS(1023), - [anon_sym_AMP_EQ] = ACTIONS(1023), - [anon_sym_PIPE_EQ] = ACTIONS(1023), - [anon_sym_LT_LT_EQ] = ACTIONS(1023), - [anon_sym_GT_GT_EQ] = ACTIONS(1023), - [anon_sym_EQ] = ACTIONS(1021), - [anon_sym_EQ_EQ] = ACTIONS(1023), - [anon_sym_BANG_EQ] = ACTIONS(1023), - [anon_sym_GT] = ACTIONS(1021), - [anon_sym_LT] = ACTIONS(1021), - [anon_sym_GT_EQ] = ACTIONS(1023), - [anon_sym_LT_EQ] = ACTIONS(1023), - [anon_sym_AT] = ACTIONS(1023), - [anon_sym__] = ACTIONS(1021), - [anon_sym_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT] = ACTIONS(1021), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1023), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1023), - [anon_sym_COMMA] = ACTIONS(1023), - [anon_sym_COLON_COLON] = ACTIONS(1023), - [anon_sym_DASH_GT] = ACTIONS(1023), - [anon_sym_POUND] = ACTIONS(1023), - [anon_sym_SQUOTE] = ACTIONS(1021), - [anon_sym_as] = ACTIONS(1021), - [anon_sym_async] = ACTIONS(1021), - [anon_sym_await] = ACTIONS(1021), - [anon_sym_break] = ACTIONS(1021), - [anon_sym_const] = ACTIONS(1021), - [anon_sym_continue] = ACTIONS(1021), - [anon_sym_default] = ACTIONS(1021), - [anon_sym_enum] = ACTIONS(1021), - [anon_sym_fn] = ACTIONS(1021), - [anon_sym_for] = ACTIONS(1021), - [anon_sym_if] = ACTIONS(1021), - [anon_sym_impl] = ACTIONS(1021), - [anon_sym_let] = ACTIONS(1021), - [anon_sym_loop] = ACTIONS(1021), - [anon_sym_match] = ACTIONS(1021), - [anon_sym_mod] = ACTIONS(1021), - [anon_sym_pub] = ACTIONS(1021), - [anon_sym_return] = ACTIONS(1021), - [anon_sym_static] = ACTIONS(1021), - [anon_sym_struct] = ACTIONS(1021), - [anon_sym_trait] = ACTIONS(1021), - [anon_sym_type] = ACTIONS(1021), - [anon_sym_union] = ACTIONS(1021), - [anon_sym_unsafe] = ACTIONS(1021), - [anon_sym_use] = ACTIONS(1021), - [anon_sym_where] = ACTIONS(1021), - [anon_sym_while] = ACTIONS(1021), - [sym_mutable_specifier] = ACTIONS(1021), - [sym_integer_literal] = ACTIONS(1023), - [aux_sym_string_literal_token1] = ACTIONS(1023), - [sym_char_literal] = ACTIONS(1023), - [anon_sym_true] = ACTIONS(1021), - [anon_sym_false] = ACTIONS(1021), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1021), - [sym_super] = ACTIONS(1021), - [sym_crate] = ACTIONS(1021), - [sym__raw_string_literal_start] = ACTIONS(1023), - [sym_float_literal] = ACTIONS(1023), - }, - [198] = { + [200] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(198), - [sym_block_comment] = STATE(198), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(200), + [sym_block_comment] = STATE(200), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1025), + [anon_sym_RPAREN] = ACTIONS(1033), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -39028,7 +39277,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -39061,215 +39310,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [199] = { - [sym_line_comment] = STATE(199), - [sym_block_comment] = STATE(199), - [sym_identifier] = ACTIONS(957), - [anon_sym_SEMI] = ACTIONS(959), - [anon_sym_LPAREN] = ACTIONS(959), - [anon_sym_RPAREN] = ACTIONS(959), - [anon_sym_LBRACK] = ACTIONS(959), - [anon_sym_RBRACK] = ACTIONS(959), - [anon_sym_LBRACE] = ACTIONS(959), - [anon_sym_RBRACE] = ACTIONS(959), - [anon_sym_EQ_GT] = ACTIONS(959), - [anon_sym_COLON] = ACTIONS(957), - [anon_sym_DOLLAR] = ACTIONS(959), - [anon_sym_PLUS] = ACTIONS(957), - [anon_sym_STAR] = ACTIONS(957), - [anon_sym_QMARK] = ACTIONS(959), - [anon_sym_u8] = ACTIONS(957), - [anon_sym_i8] = ACTIONS(957), - [anon_sym_u16] = ACTIONS(957), - [anon_sym_i16] = ACTIONS(957), - [anon_sym_u32] = ACTIONS(957), - [anon_sym_i32] = ACTIONS(957), - [anon_sym_u64] = ACTIONS(957), - [anon_sym_i64] = ACTIONS(957), - [anon_sym_u128] = ACTIONS(957), - [anon_sym_i128] = ACTIONS(957), - [anon_sym_isize] = ACTIONS(957), - [anon_sym_usize] = ACTIONS(957), - [anon_sym_f32] = ACTIONS(957), - [anon_sym_f64] = ACTIONS(957), - [anon_sym_bool] = ACTIONS(957), - [anon_sym_str] = ACTIONS(957), - [anon_sym_char] = ACTIONS(957), - [anon_sym_DASH] = ACTIONS(957), - [anon_sym_SLASH] = ACTIONS(957), - [anon_sym_PERCENT] = ACTIONS(957), - [anon_sym_CARET] = ACTIONS(957), - [anon_sym_BANG] = ACTIONS(957), - [anon_sym_AMP] = ACTIONS(957), - [anon_sym_PIPE] = ACTIONS(957), - [anon_sym_AMP_AMP] = ACTIONS(959), - [anon_sym_PIPE_PIPE] = ACTIONS(959), - [anon_sym_LT_LT] = ACTIONS(957), - [anon_sym_GT_GT] = ACTIONS(957), - [anon_sym_PLUS_EQ] = ACTIONS(959), - [anon_sym_DASH_EQ] = ACTIONS(959), - [anon_sym_STAR_EQ] = ACTIONS(959), - [anon_sym_SLASH_EQ] = ACTIONS(959), - [anon_sym_PERCENT_EQ] = ACTIONS(959), - [anon_sym_CARET_EQ] = ACTIONS(959), - [anon_sym_AMP_EQ] = ACTIONS(959), - [anon_sym_PIPE_EQ] = ACTIONS(959), - [anon_sym_LT_LT_EQ] = ACTIONS(959), - [anon_sym_GT_GT_EQ] = ACTIONS(959), - [anon_sym_EQ] = ACTIONS(957), - [anon_sym_EQ_EQ] = ACTIONS(959), - [anon_sym_BANG_EQ] = ACTIONS(959), - [anon_sym_GT] = ACTIONS(957), - [anon_sym_LT] = ACTIONS(957), - [anon_sym_GT_EQ] = ACTIONS(959), - [anon_sym_LT_EQ] = ACTIONS(959), - [anon_sym_AT] = ACTIONS(959), - [anon_sym__] = ACTIONS(957), - [anon_sym_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT] = ACTIONS(957), - [anon_sym_DOT_DOT_DOT] = ACTIONS(959), - [anon_sym_DOT_DOT_EQ] = ACTIONS(959), - [anon_sym_COMMA] = ACTIONS(959), - [anon_sym_COLON_COLON] = ACTIONS(959), - [anon_sym_DASH_GT] = ACTIONS(959), - [anon_sym_POUND] = ACTIONS(959), - [anon_sym_SQUOTE] = ACTIONS(957), - [anon_sym_as] = ACTIONS(957), - [anon_sym_async] = ACTIONS(957), - [anon_sym_await] = ACTIONS(957), - [anon_sym_break] = ACTIONS(957), - [anon_sym_const] = ACTIONS(957), - [anon_sym_continue] = ACTIONS(957), - [anon_sym_default] = ACTIONS(957), - [anon_sym_enum] = ACTIONS(957), - [anon_sym_fn] = ACTIONS(957), - [anon_sym_for] = ACTIONS(957), - [anon_sym_if] = ACTIONS(957), - [anon_sym_impl] = ACTIONS(957), - [anon_sym_let] = ACTIONS(957), - [anon_sym_loop] = ACTIONS(957), - [anon_sym_match] = ACTIONS(957), - [anon_sym_mod] = ACTIONS(957), - [anon_sym_pub] = ACTIONS(957), - [anon_sym_return] = ACTIONS(957), - [anon_sym_static] = ACTIONS(957), - [anon_sym_struct] = ACTIONS(957), - [anon_sym_trait] = ACTIONS(957), - [anon_sym_type] = ACTIONS(957), - [anon_sym_union] = ACTIONS(957), - [anon_sym_unsafe] = ACTIONS(957), - [anon_sym_use] = ACTIONS(957), - [anon_sym_where] = ACTIONS(957), - [anon_sym_while] = ACTIONS(957), - [sym_mutable_specifier] = ACTIONS(957), - [sym_integer_literal] = ACTIONS(959), - [aux_sym_string_literal_token1] = ACTIONS(959), - [sym_char_literal] = ACTIONS(959), - [anon_sym_true] = ACTIONS(957), - [anon_sym_false] = ACTIONS(957), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(957), - [sym_super] = ACTIONS(957), - [sym_crate] = ACTIONS(957), - [sym__raw_string_literal_start] = ACTIONS(959), - [sym_float_literal] = ACTIONS(959), - }, - [200] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2652), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(200), - [sym_block_comment] = STATE(200), - [sym_identifier] = ACTIONS(464), + [201] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2722), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(201), + [sym_block_comment] = STATE(201), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), + [anon_sym_let] = ACTIONS(979), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -39282,222 +39417,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [201] = { - [sym_line_comment] = STATE(201), - [sym_block_comment] = STATE(201), - [sym_identifier] = ACTIONS(817), - [anon_sym_SEMI] = ACTIONS(819), - [anon_sym_LPAREN] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(819), - [anon_sym_LBRACK] = ACTIONS(819), - [anon_sym_RBRACK] = ACTIONS(819), - [anon_sym_LBRACE] = ACTIONS(819), - [anon_sym_RBRACE] = ACTIONS(819), - [anon_sym_EQ_GT] = ACTIONS(819), - [anon_sym_COLON] = ACTIONS(817), - [anon_sym_DOLLAR] = ACTIONS(819), - [anon_sym_PLUS] = ACTIONS(817), - [anon_sym_STAR] = ACTIONS(817), - [anon_sym_QMARK] = ACTIONS(819), - [anon_sym_u8] = ACTIONS(817), - [anon_sym_i8] = ACTIONS(817), - [anon_sym_u16] = ACTIONS(817), - [anon_sym_i16] = ACTIONS(817), - [anon_sym_u32] = ACTIONS(817), - [anon_sym_i32] = ACTIONS(817), - [anon_sym_u64] = ACTIONS(817), - [anon_sym_i64] = ACTIONS(817), - [anon_sym_u128] = ACTIONS(817), - [anon_sym_i128] = ACTIONS(817), - [anon_sym_isize] = ACTIONS(817), - [anon_sym_usize] = ACTIONS(817), - [anon_sym_f32] = ACTIONS(817), - [anon_sym_f64] = ACTIONS(817), - [anon_sym_bool] = ACTIONS(817), - [anon_sym_str] = ACTIONS(817), - [anon_sym_char] = ACTIONS(817), - [anon_sym_DASH] = ACTIONS(817), - [anon_sym_SLASH] = ACTIONS(817), - [anon_sym_PERCENT] = ACTIONS(817), - [anon_sym_CARET] = ACTIONS(817), - [anon_sym_BANG] = ACTIONS(817), - [anon_sym_AMP] = ACTIONS(817), - [anon_sym_PIPE] = ACTIONS(817), - [anon_sym_AMP_AMP] = ACTIONS(819), - [anon_sym_PIPE_PIPE] = ACTIONS(819), - [anon_sym_LT_LT] = ACTIONS(817), - [anon_sym_GT_GT] = ACTIONS(817), - [anon_sym_PLUS_EQ] = ACTIONS(819), - [anon_sym_DASH_EQ] = ACTIONS(819), - [anon_sym_STAR_EQ] = ACTIONS(819), - [anon_sym_SLASH_EQ] = ACTIONS(819), - [anon_sym_PERCENT_EQ] = ACTIONS(819), - [anon_sym_CARET_EQ] = ACTIONS(819), - [anon_sym_AMP_EQ] = ACTIONS(819), - [anon_sym_PIPE_EQ] = ACTIONS(819), - [anon_sym_LT_LT_EQ] = ACTIONS(819), - [anon_sym_GT_GT_EQ] = ACTIONS(819), - [anon_sym_EQ] = ACTIONS(817), - [anon_sym_EQ_EQ] = ACTIONS(819), - [anon_sym_BANG_EQ] = ACTIONS(819), - [anon_sym_GT] = ACTIONS(817), - [anon_sym_LT] = ACTIONS(817), - [anon_sym_GT_EQ] = ACTIONS(819), - [anon_sym_LT_EQ] = ACTIONS(819), - [anon_sym_AT] = ACTIONS(819), - [anon_sym__] = ACTIONS(817), - [anon_sym_DOT] = ACTIONS(817), - [anon_sym_DOT_DOT] = ACTIONS(817), - [anon_sym_DOT_DOT_DOT] = ACTIONS(819), - [anon_sym_DOT_DOT_EQ] = ACTIONS(819), - [anon_sym_COMMA] = ACTIONS(819), - [anon_sym_COLON_COLON] = ACTIONS(819), - [anon_sym_DASH_GT] = ACTIONS(819), - [anon_sym_POUND] = ACTIONS(819), - [anon_sym_SQUOTE] = ACTIONS(817), - [anon_sym_as] = ACTIONS(817), - [anon_sym_async] = ACTIONS(817), - [anon_sym_await] = ACTIONS(817), - [anon_sym_break] = ACTIONS(817), - [anon_sym_const] = ACTIONS(817), - [anon_sym_continue] = ACTIONS(817), - [anon_sym_default] = ACTIONS(817), - [anon_sym_enum] = ACTIONS(817), - [anon_sym_fn] = ACTIONS(817), - [anon_sym_for] = ACTIONS(817), - [anon_sym_if] = ACTIONS(817), - [anon_sym_impl] = ACTIONS(817), - [anon_sym_let] = ACTIONS(817), - [anon_sym_loop] = ACTIONS(817), - [anon_sym_match] = ACTIONS(817), - [anon_sym_mod] = ACTIONS(817), - [anon_sym_pub] = ACTIONS(817), - [anon_sym_return] = ACTIONS(817), - [anon_sym_static] = ACTIONS(817), - [anon_sym_struct] = ACTIONS(817), - [anon_sym_trait] = ACTIONS(817), - [anon_sym_type] = ACTIONS(817), - [anon_sym_union] = ACTIONS(817), - [anon_sym_unsafe] = ACTIONS(817), - [anon_sym_use] = ACTIONS(817), - [anon_sym_where] = ACTIONS(817), - [anon_sym_while] = ACTIONS(817), - [sym_mutable_specifier] = ACTIONS(817), - [sym_integer_literal] = ACTIONS(819), - [aux_sym_string_literal_token1] = ACTIONS(819), - [sym_char_literal] = ACTIONS(819), - [anon_sym_true] = ACTIONS(817), - [anon_sym_false] = ACTIONS(817), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(817), - [sym_super] = ACTIONS(817), - [sym_crate] = ACTIONS(817), - [sym__raw_string_literal_start] = ACTIONS(819), - [sym_float_literal] = ACTIONS(819), - }, [202] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2520), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2495), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(202), [sym_block_comment] = STATE(202), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), + [anon_sym_let] = ACTIONS(979), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -39510,68 +39531,68 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [203] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(203), [sym_block_comment] = STATE(203), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1027), [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_RBRACK] = ACTIONS(1035), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -39598,7 +39619,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -39632,214 +39653,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [204] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2547), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(204), [sym_block_comment] = STATE(204), - [sym_identifier] = ACTIONS(1029), - [anon_sym_SEMI] = ACTIONS(1031), - [anon_sym_LPAREN] = ACTIONS(1031), - [anon_sym_RPAREN] = ACTIONS(1031), - [anon_sym_LBRACK] = ACTIONS(1031), - [anon_sym_RBRACK] = ACTIONS(1031), - [anon_sym_LBRACE] = ACTIONS(1031), - [anon_sym_RBRACE] = ACTIONS(1031), - [anon_sym_EQ_GT] = ACTIONS(1031), - [anon_sym_COLON] = ACTIONS(1029), - [anon_sym_DOLLAR] = ACTIONS(1031), - [anon_sym_PLUS] = ACTIONS(1029), - [anon_sym_STAR] = ACTIONS(1029), - [anon_sym_QMARK] = ACTIONS(1031), - [anon_sym_u8] = ACTIONS(1029), - [anon_sym_i8] = ACTIONS(1029), - [anon_sym_u16] = ACTIONS(1029), - [anon_sym_i16] = ACTIONS(1029), - [anon_sym_u32] = ACTIONS(1029), - [anon_sym_i32] = ACTIONS(1029), - [anon_sym_u64] = ACTIONS(1029), - [anon_sym_i64] = ACTIONS(1029), - [anon_sym_u128] = ACTIONS(1029), - [anon_sym_i128] = ACTIONS(1029), - [anon_sym_isize] = ACTIONS(1029), - [anon_sym_usize] = ACTIONS(1029), - [anon_sym_f32] = ACTIONS(1029), - [anon_sym_f64] = ACTIONS(1029), - [anon_sym_bool] = ACTIONS(1029), - [anon_sym_str] = ACTIONS(1029), - [anon_sym_char] = ACTIONS(1029), - [anon_sym_DASH] = ACTIONS(1029), - [anon_sym_SLASH] = ACTIONS(1029), - [anon_sym_PERCENT] = ACTIONS(1029), - [anon_sym_CARET] = ACTIONS(1029), - [anon_sym_BANG] = ACTIONS(1029), - [anon_sym_AMP] = ACTIONS(1029), - [anon_sym_PIPE] = ACTIONS(1029), - [anon_sym_AMP_AMP] = ACTIONS(1031), - [anon_sym_PIPE_PIPE] = ACTIONS(1031), - [anon_sym_LT_LT] = ACTIONS(1029), - [anon_sym_GT_GT] = ACTIONS(1029), - [anon_sym_PLUS_EQ] = ACTIONS(1031), - [anon_sym_DASH_EQ] = ACTIONS(1031), - [anon_sym_STAR_EQ] = ACTIONS(1031), - [anon_sym_SLASH_EQ] = ACTIONS(1031), - [anon_sym_PERCENT_EQ] = ACTIONS(1031), - [anon_sym_CARET_EQ] = ACTIONS(1031), - [anon_sym_AMP_EQ] = ACTIONS(1031), - [anon_sym_PIPE_EQ] = ACTIONS(1031), - [anon_sym_LT_LT_EQ] = ACTIONS(1031), - [anon_sym_GT_GT_EQ] = ACTIONS(1031), - [anon_sym_EQ] = ACTIONS(1029), - [anon_sym_EQ_EQ] = ACTIONS(1031), - [anon_sym_BANG_EQ] = ACTIONS(1031), - [anon_sym_GT] = ACTIONS(1029), - [anon_sym_LT] = ACTIONS(1029), - [anon_sym_GT_EQ] = ACTIONS(1031), - [anon_sym_LT_EQ] = ACTIONS(1031), - [anon_sym_AT] = ACTIONS(1031), - [anon_sym__] = ACTIONS(1029), - [anon_sym_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT] = ACTIONS(1029), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1031), - [anon_sym_COMMA] = ACTIONS(1031), - [anon_sym_COLON_COLON] = ACTIONS(1031), - [anon_sym_DASH_GT] = ACTIONS(1031), - [anon_sym_POUND] = ACTIONS(1031), - [anon_sym_SQUOTE] = ACTIONS(1029), - [anon_sym_as] = ACTIONS(1029), - [anon_sym_async] = ACTIONS(1029), - [anon_sym_await] = ACTIONS(1029), - [anon_sym_break] = ACTIONS(1029), - [anon_sym_const] = ACTIONS(1029), - [anon_sym_continue] = ACTIONS(1029), - [anon_sym_default] = ACTIONS(1029), - [anon_sym_enum] = ACTIONS(1029), - [anon_sym_fn] = ACTIONS(1029), - [anon_sym_for] = ACTIONS(1029), - [anon_sym_if] = ACTIONS(1029), - [anon_sym_impl] = ACTIONS(1029), - [anon_sym_let] = ACTIONS(1029), - [anon_sym_loop] = ACTIONS(1029), - [anon_sym_match] = ACTIONS(1029), - [anon_sym_mod] = ACTIONS(1029), - [anon_sym_pub] = ACTIONS(1029), - [anon_sym_return] = ACTIONS(1029), - [anon_sym_static] = ACTIONS(1029), - [anon_sym_struct] = ACTIONS(1029), - [anon_sym_trait] = ACTIONS(1029), - [anon_sym_type] = ACTIONS(1029), - [anon_sym_union] = ACTIONS(1029), - [anon_sym_unsafe] = ACTIONS(1029), - [anon_sym_use] = ACTIONS(1029), - [anon_sym_where] = ACTIONS(1029), - [anon_sym_while] = ACTIONS(1029), - [sym_mutable_specifier] = ACTIONS(1029), - [sym_integer_literal] = ACTIONS(1031), - [aux_sym_string_literal_token1] = ACTIONS(1031), - [sym_char_literal] = ACTIONS(1031), - [anon_sym_true] = ACTIONS(1029), - [anon_sym_false] = ACTIONS(1029), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1029), - [sym_super] = ACTIONS(1029), - [sym_crate] = ACTIONS(1029), - [sym__raw_string_literal_start] = ACTIONS(1031), - [sym_float_literal] = ACTIONS(1031), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [205] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2580), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2594), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(205), [sym_block_comment] = STATE(205), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), + [anon_sym_let] = ACTIONS(979), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -39852,67 +39873,521 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [206] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1762), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2612), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(206), [sym_block_comment] = STATE(206), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [207] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1699), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2823), + [sym__let_chain] = STATE(2887), + [sym__condition] = STATE(2621), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(207), + [sym_block_comment] = STATE(207), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [208] = { + [sym_line_comment] = STATE(208), + [sym_block_comment] = STATE(208), + [sym_identifier] = ACTIONS(749), + [anon_sym_SEMI] = ACTIONS(751), + [anon_sym_LPAREN] = ACTIONS(751), + [anon_sym_RPAREN] = ACTIONS(751), + [anon_sym_LBRACK] = ACTIONS(751), + [anon_sym_RBRACK] = ACTIONS(751), + [anon_sym_LBRACE] = ACTIONS(751), + [anon_sym_RBRACE] = ACTIONS(751), + [anon_sym_EQ_GT] = ACTIONS(751), + [anon_sym_COLON] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [anon_sym_PLUS] = ACTIONS(749), + [anon_sym_STAR] = ACTIONS(749), + [anon_sym_QMARK] = ACTIONS(751), + [anon_sym_u8] = ACTIONS(749), + [anon_sym_i8] = ACTIONS(749), + [anon_sym_u16] = ACTIONS(749), + [anon_sym_i16] = ACTIONS(749), + [anon_sym_u32] = ACTIONS(749), + [anon_sym_i32] = ACTIONS(749), + [anon_sym_u64] = ACTIONS(749), + [anon_sym_i64] = ACTIONS(749), + [anon_sym_u128] = ACTIONS(749), + [anon_sym_i128] = ACTIONS(749), + [anon_sym_isize] = ACTIONS(749), + [anon_sym_usize] = ACTIONS(749), + [anon_sym_f32] = ACTIONS(749), + [anon_sym_f64] = ACTIONS(749), + [anon_sym_bool] = ACTIONS(749), + [anon_sym_str] = ACTIONS(749), + [anon_sym_char] = ACTIONS(749), + [anon_sym_DASH] = ACTIONS(749), + [anon_sym_SLASH] = ACTIONS(749), + [anon_sym_PERCENT] = ACTIONS(749), + [anon_sym_CARET] = ACTIONS(749), + [anon_sym_BANG] = ACTIONS(749), + [anon_sym_AMP] = ACTIONS(749), + [anon_sym_PIPE] = ACTIONS(749), + [anon_sym_AMP_AMP] = ACTIONS(751), + [anon_sym_PIPE_PIPE] = ACTIONS(751), + [anon_sym_LT_LT] = ACTIONS(749), + [anon_sym_GT_GT] = ACTIONS(749), + [anon_sym_PLUS_EQ] = ACTIONS(751), + [anon_sym_DASH_EQ] = ACTIONS(751), + [anon_sym_STAR_EQ] = ACTIONS(751), + [anon_sym_SLASH_EQ] = ACTIONS(751), + [anon_sym_PERCENT_EQ] = ACTIONS(751), + [anon_sym_CARET_EQ] = ACTIONS(751), + [anon_sym_AMP_EQ] = ACTIONS(751), + [anon_sym_PIPE_EQ] = ACTIONS(751), + [anon_sym_LT_LT_EQ] = ACTIONS(751), + [anon_sym_GT_GT_EQ] = ACTIONS(751), + [anon_sym_EQ] = ACTIONS(749), + [anon_sym_EQ_EQ] = ACTIONS(751), + [anon_sym_BANG_EQ] = ACTIONS(751), + [anon_sym_GT] = ACTIONS(749), + [anon_sym_LT] = ACTIONS(749), + [anon_sym_GT_EQ] = ACTIONS(751), + [anon_sym_LT_EQ] = ACTIONS(751), + [anon_sym_AT] = ACTIONS(751), + [anon_sym__] = ACTIONS(749), + [anon_sym_DOT] = ACTIONS(749), + [anon_sym_DOT_DOT] = ACTIONS(749), + [anon_sym_DOT_DOT_DOT] = ACTIONS(751), + [anon_sym_DOT_DOT_EQ] = ACTIONS(751), + [anon_sym_COMMA] = ACTIONS(751), + [anon_sym_COLON_COLON] = ACTIONS(751), + [anon_sym_DASH_GT] = ACTIONS(751), + [anon_sym_POUND] = ACTIONS(751), + [anon_sym_SQUOTE] = ACTIONS(749), + [anon_sym_as] = ACTIONS(749), + [anon_sym_async] = ACTIONS(749), + [anon_sym_await] = ACTIONS(749), + [anon_sym_break] = ACTIONS(749), + [anon_sym_const] = ACTIONS(749), + [anon_sym_continue] = ACTIONS(749), + [anon_sym_default] = ACTIONS(749), + [anon_sym_enum] = ACTIONS(749), + [anon_sym_fn] = ACTIONS(749), + [anon_sym_for] = ACTIONS(749), + [anon_sym_if] = ACTIONS(749), + [anon_sym_impl] = ACTIONS(749), + [anon_sym_let] = ACTIONS(749), + [anon_sym_loop] = ACTIONS(749), + [anon_sym_match] = ACTIONS(749), + [anon_sym_mod] = ACTIONS(749), + [anon_sym_pub] = ACTIONS(749), + [anon_sym_return] = ACTIONS(749), + [anon_sym_static] = ACTIONS(749), + [anon_sym_struct] = ACTIONS(749), + [anon_sym_trait] = ACTIONS(749), + [anon_sym_type] = ACTIONS(749), + [anon_sym_union] = ACTIONS(749), + [anon_sym_unsafe] = ACTIONS(749), + [anon_sym_use] = ACTIONS(749), + [anon_sym_where] = ACTIONS(749), + [anon_sym_while] = ACTIONS(749), + [sym_mutable_specifier] = ACTIONS(749), + [sym_integer_literal] = ACTIONS(751), + [aux_sym_string_literal_token1] = ACTIONS(751), + [sym_char_literal] = ACTIONS(751), + [anon_sym_true] = ACTIONS(749), + [anon_sym_false] = ACTIONS(749), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(749), + [sym_super] = ACTIONS(749), + [sym_crate] = ACTIONS(749), + [sym__raw_string_literal_start] = ACTIONS(751), + [sym_float_literal] = ACTIONS(751), + }, + [209] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1574), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(209), + [sym_block_comment] = STATE(209), + [aux_sym_enum_variant_list_repeat1] = STATE(1002), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_POUND] = ACTIONS(765), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [210] = { + [sym_attribute_item] = STATE(1003), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1607), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(210), + [sym_block_comment] = STATE(210), [aux_sym_enum_variant_list_repeat1] = STATE(211), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1033), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -39940,7 +40415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -39973,61 +40448,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [207] = { + [211] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(207), - [sym_block_comment] = STATE(207), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1610), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(211), + [sym_block_comment] = STATE(211), + [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_RBRACK] = ACTIONS(1035), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), @@ -40054,7 +40528,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40087,170 +40561,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [208] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1687), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2830), - [sym__let_chain] = STATE(2831), - [sym__condition] = STATE(2604), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(208), - [sym_block_comment] = STATE(208), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [209] = { + [212] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1629), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(209), - [sym_block_comment] = STATE(209), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1854), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(212), + [sym_block_comment] = STATE(212), [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), @@ -40281,7 +40641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40314,56 +40674,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [210] = { + [213] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1871), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(210), - [sym_block_comment] = STATE(210), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1589), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(213), + [sym_block_comment] = STATE(213), [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), @@ -40394,7 +40754,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40427,56 +40787,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [211] = { + [214] = { [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1862), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(211), - [sym_block_comment] = STATE(211), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1871), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(214), + [sym_block_comment] = STATE(214), [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), @@ -40507,7 +40867,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(765), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40540,59 +40900,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [212] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1623), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(212), - [sym_block_comment] = STATE(212), - [aux_sym_enum_variant_list_repeat1] = STATE(214), + [215] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1806), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(215), + [sym_block_comment] = STATE(215), + [aux_sym_tuple_expression_repeat1] = STATE(221), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1037), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -40620,7 +40980,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40653,59 +41012,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [213] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1628), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), + [216] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1757), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_let_condition] = STATE(2662), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(216), + [sym_block_comment] = STATE(216), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_let] = ACTIONS(1027), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [217] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1711), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(213), - [sym_block_comment] = STATE(213), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1214), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(217), + [sym_block_comment] = STATE(217), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DASH_GT] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [218] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(218), + [sym_block_comment] = STATE(218), + [aux_sym_tuple_expression_repeat1] = STATE(222), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1051), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -40733,7 +41316,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40766,59 +41348,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [214] = { - [sym_attribute_item] = STATE(1003), - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1603), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(214), - [sym_block_comment] = STATE(214), - [aux_sym_enum_variant_list_repeat1] = STATE(1002), + [219] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1803), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(219), + [sym_block_comment] = STATE(219), + [aux_sym_tuple_expression_repeat1] = STATE(223), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1051), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -40846,7 +41428,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_POUND] = ACTIONS(753), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -40879,211 +41460,99 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [215] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_let_condition] = STATE(2573), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(215), - [sym_block_comment] = STATE(215), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1015), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [216] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1605), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1277), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(216), - [sym_block_comment] = STATE(216), - [sym_identifier] = ACTIONS(464), + [220] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1573), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1310), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(220), + [sym_block_comment] = STATE(220), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1039), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_DASH_GT] = ACTIONS(1043), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -41096,66 +41565,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [217] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(217), - [sym_block_comment] = STATE(217), - [aux_sym_tuple_expression_repeat1] = STATE(236), + [221] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(221), + [sym_block_comment] = STATE(221), + [aux_sym_tuple_expression_repeat1] = STATE(222), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1045), + [anon_sym_RPAREN] = ACTIONS(1059), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -41215,169 +41684,171 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [218] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1657), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1825), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(218), - [sym_block_comment] = STATE(218), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1047), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1049), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [222] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1848), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(222), + [sym_block_comment] = STATE(222), + [aux_sym_tuple_expression_repeat1] = STATE(222), + [sym_identifier] = ACTIONS(1061), + [anon_sym_LPAREN] = ACTIONS(1064), + [anon_sym_RPAREN] = ACTIONS(1067), + [anon_sym_LBRACK] = ACTIONS(1069), + [anon_sym_LBRACE] = ACTIONS(1072), + [anon_sym_STAR] = ACTIONS(1075), + [anon_sym_u8] = ACTIONS(1078), + [anon_sym_i8] = ACTIONS(1078), + [anon_sym_u16] = ACTIONS(1078), + [anon_sym_i16] = ACTIONS(1078), + [anon_sym_u32] = ACTIONS(1078), + [anon_sym_i32] = ACTIONS(1078), + [anon_sym_u64] = ACTIONS(1078), + [anon_sym_i64] = ACTIONS(1078), + [anon_sym_u128] = ACTIONS(1078), + [anon_sym_i128] = ACTIONS(1078), + [anon_sym_isize] = ACTIONS(1078), + [anon_sym_usize] = ACTIONS(1078), + [anon_sym_f32] = ACTIONS(1078), + [anon_sym_f64] = ACTIONS(1078), + [anon_sym_bool] = ACTIONS(1078), + [anon_sym_str] = ACTIONS(1078), + [anon_sym_char] = ACTIONS(1078), + [anon_sym_DASH] = ACTIONS(1075), + [anon_sym_BANG] = ACTIONS(1075), + [anon_sym_AMP] = ACTIONS(1081), + [anon_sym_PIPE] = ACTIONS(1084), + [anon_sym_LT] = ACTIONS(1087), + [anon_sym_DOT_DOT] = ACTIONS(1090), + [anon_sym_COLON_COLON] = ACTIONS(1093), + [anon_sym_SQUOTE] = ACTIONS(1096), + [anon_sym_async] = ACTIONS(1099), + [anon_sym_break] = ACTIONS(1102), + [anon_sym_const] = ACTIONS(1105), + [anon_sym_continue] = ACTIONS(1108), + [anon_sym_default] = ACTIONS(1111), + [anon_sym_for] = ACTIONS(1114), + [anon_sym_if] = ACTIONS(1117), + [anon_sym_loop] = ACTIONS(1120), + [anon_sym_match] = ACTIONS(1123), + [anon_sym_return] = ACTIONS(1126), + [anon_sym_static] = ACTIONS(1129), + [anon_sym_union] = ACTIONS(1111), + [anon_sym_unsafe] = ACTIONS(1132), + [anon_sym_while] = ACTIONS(1135), + [anon_sym_yield] = ACTIONS(1138), + [anon_sym_move] = ACTIONS(1141), + [anon_sym_try] = ACTIONS(1144), + [sym_integer_literal] = ACTIONS(1147), + [aux_sym_string_literal_token1] = ACTIONS(1150), + [sym_char_literal] = ACTIONS(1147), + [anon_sym_true] = ACTIONS(1153), + [anon_sym_false] = ACTIONS(1153), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1156), + [sym_super] = ACTIONS(1159), + [sym_crate] = ACTIONS(1159), + [sym_metavariable] = ACTIONS(1162), + [sym__raw_string_literal_start] = ACTIONS(1165), + [sym_float_literal] = ACTIONS(1147), }, - [219] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1503), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1237), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(219), - [sym_block_comment] = STATE(219), + [223] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1807), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(223), + [sym_block_comment] = STATE(223), + [aux_sym_tuple_expression_repeat1] = STATE(222), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1168), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -41398,15 +41869,13 @@ 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(344), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1051), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1055), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -41439,57 +41908,283 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [220] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1499), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), + [224] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1585), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1214), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(224), + [sym_block_comment] = STATE(224), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DASH_GT] = ACTIONS(1049), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [225] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1727), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1277), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(220), - [sym_block_comment] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1250), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(225), + [sym_block_comment] = STATE(225), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1170), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DASH_GT] = ACTIONS(1172), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [226] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1704), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(226), + [sym_block_comment] = STATE(226), + [aux_sym_tuple_expression_repeat1] = STATE(222), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1174), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -41510,15 +42205,13 @@ 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(344), + [anon_sym_DASH] = ACTIONS(21), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1039), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1043), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -41551,215 +42244,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [221] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1804), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1237), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(221), - [sym_block_comment] = STATE(221), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1051), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_DASH_GT] = ACTIONS(1055), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [222] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1707), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1277), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(222), - [sym_block_comment] = STATE(222), - [sym_identifier] = ACTIONS(464), + [227] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1682), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(227), + [sym_block_comment] = STATE(227), + [aux_sym_tuple_expression_repeat1] = STATE(226), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_RPAREN] = ACTIONS(1059), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1039), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_DASH_GT] = ACTIONS(1043), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -41768,66 +42349,64 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [223] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1826), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(223), - [sym_block_comment] = STATE(223), - [aux_sym_tuple_expression_repeat1] = STATE(235), + [228] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1505), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1214), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(228), + [sym_block_comment] = STATE(228), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1045), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -41848,13 +42427,15 @@ 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_DASH] = ACTIONS(344), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1045), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1049), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -41887,60 +42468,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [224] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1812), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1767), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(224), - [sym_block_comment] = STATE(224), + [229] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1847), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_let_condition] = STATE(2662), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(229), + [sym_block_comment] = STATE(229), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1021), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -41958,15 +42540,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1063), - [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1025), [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1065), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), @@ -41975,6 +42555,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(418), [anon_sym_for] = ACTIONS(420), [anon_sym_if] = ACTIONS(422), + [anon_sym_let] = ACTIONS(1027), [anon_sym_loop] = ACTIONS(424), [anon_sym_match] = ACTIONS(426), [anon_sym_return] = ACTIONS(428), @@ -41999,59 +42580,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [225] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1688), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(225), - [sym_block_comment] = STATE(225), - [aux_sym_tuple_expression_repeat1] = STATE(233), + [230] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1746), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1310), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(230), + [sym_block_comment] = STATE(230), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1067), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -42072,13 +42651,15 @@ 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_DASH] = ACTIONS(344), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1053), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -42111,59 +42692,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [226] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1688), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(226), - [sym_block_comment] = STATE(226), - [aux_sym_tuple_expression_repeat1] = STATE(235), + [231] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1751), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1214), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(231), + [sym_block_comment] = STATE(231), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1067), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -42184,13 +42763,15 @@ 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_DASH] = ACTIONS(344), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1045), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1049), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -42223,59 +42804,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [227] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1747), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(227), - [sym_block_comment] = STATE(227), - [aux_sym_tuple_expression_repeat1] = STATE(226), + [232] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1768), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1250), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(232), + [sym_block_comment] = STATE(232), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1069), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -42296,13 +42875,15 @@ 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_DASH] = ACTIONS(344), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1170), [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1172), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -42335,59 +42916,57 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [228] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1717), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(228), - [sym_block_comment] = STATE(228), - [aux_sym_tuple_expression_repeat1] = STATE(223), + [233] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1496), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1310), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(233), + [sym_block_comment] = STATE(233), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1071), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -42408,13 +42987,15 @@ 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_DASH] = ACTIONS(344), [anon_sym_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -42447,103 +43028,103 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [229] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1617), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(229), - [sym_block_comment] = STATE(229), - [sym_identifier] = ACTIONS(464), + [234] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1703), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1310), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(234), + [sym_block_comment] = STATE(234), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(460), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym__] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DASH_GT] = ACTIONS(1057), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -42552,106 +43133,106 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [230] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1738), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2573), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(230), - [sym_block_comment] = STATE(230), - [sym_identifier] = ACTIONS(464), + [235] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1634), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1250), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(235), + [sym_block_comment] = STATE(235), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(492), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym__] = ACTIONS(1170), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_DASH_GT] = ACTIONS(1172), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -42664,62 +43245,62 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [231] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1755), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1237), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(231), - [sym_block_comment] = STATE(231), + [236] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1487), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1250), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(236), + [sym_block_comment] = STATE(236), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -42747,10 +43328,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1051), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym__] = ACTIONS(1170), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_DASH_GT] = ACTIONS(1172), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), @@ -42783,60 +43364,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [232] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1721), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1791), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(232), - [sym_block_comment] = STATE(232), + [237] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1783), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1656), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(237), + [sym_block_comment] = STATE(237), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1021), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -42855,14 +43436,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), [anon_sym_DASH] = ACTIONS(406), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1077), - [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym__] = ACTIONS(1178), + [anon_sym_DOT_DOT] = ACTIONS(1039), [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_DASH_GT] = ACTIONS(1079), + [anon_sym_DASH_GT] = ACTIONS(1180), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), [anon_sym_break] = ACTIONS(412), @@ -42895,59 +43476,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [233] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1760), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(233), - [sym_block_comment] = STATE(233), - [aux_sym_tuple_expression_repeat1] = STATE(235), + [238] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1800), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(238), + [sym_block_comment] = STATE(238), + [aux_sym_tuple_expression_repeat1] = STATE(218), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1081), + [anon_sym_RPAREN] = ACTIONS(1182), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), @@ -43007,103 +43588,215 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [234] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1483), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(234), - [sym_block_comment] = STATE(234), - [sym_identifier] = ACTIONS(334), + [239] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1787), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1662), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(239), + [sym_block_comment] = STATE(239), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1184), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(1186), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [240] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2662), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(240), + [sym_block_comment] = STATE(240), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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(344), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -43112,222 +43805,222 @@ 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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [235] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1844), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(235), - [sym_block_comment] = STATE(235), - [aux_sym_tuple_expression_repeat1] = STATE(235), - [sym_identifier] = ACTIONS(1083), - [anon_sym_LPAREN] = ACTIONS(1086), - [anon_sym_RPAREN] = ACTIONS(1089), - [anon_sym_LBRACK] = ACTIONS(1091), - [anon_sym_LBRACE] = ACTIONS(1094), - [anon_sym_STAR] = ACTIONS(1097), - [anon_sym_u8] = ACTIONS(1100), - [anon_sym_i8] = ACTIONS(1100), - [anon_sym_u16] = ACTIONS(1100), - [anon_sym_i16] = ACTIONS(1100), - [anon_sym_u32] = ACTIONS(1100), - [anon_sym_i32] = ACTIONS(1100), - [anon_sym_u64] = ACTIONS(1100), - [anon_sym_i64] = ACTIONS(1100), - [anon_sym_u128] = ACTIONS(1100), - [anon_sym_i128] = ACTIONS(1100), - [anon_sym_isize] = ACTIONS(1100), - [anon_sym_usize] = ACTIONS(1100), - [anon_sym_f32] = ACTIONS(1100), - [anon_sym_f64] = ACTIONS(1100), - [anon_sym_bool] = ACTIONS(1100), - [anon_sym_str] = ACTIONS(1100), - [anon_sym_char] = ACTIONS(1100), - [anon_sym_DASH] = ACTIONS(1097), - [anon_sym_BANG] = ACTIONS(1097), - [anon_sym_AMP] = ACTIONS(1103), - [anon_sym_PIPE] = ACTIONS(1106), - [anon_sym_LT] = ACTIONS(1109), - [anon_sym_DOT_DOT] = ACTIONS(1112), - [anon_sym_COLON_COLON] = ACTIONS(1115), - [anon_sym_SQUOTE] = ACTIONS(1118), - [anon_sym_async] = ACTIONS(1121), - [anon_sym_break] = ACTIONS(1124), - [anon_sym_const] = ACTIONS(1127), - [anon_sym_continue] = ACTIONS(1130), - [anon_sym_default] = ACTIONS(1133), - [anon_sym_for] = ACTIONS(1136), - [anon_sym_if] = ACTIONS(1139), - [anon_sym_loop] = ACTIONS(1142), - [anon_sym_match] = ACTIONS(1145), - [anon_sym_return] = ACTIONS(1148), - [anon_sym_static] = ACTIONS(1151), - [anon_sym_union] = ACTIONS(1133), - [anon_sym_unsafe] = ACTIONS(1154), - [anon_sym_while] = ACTIONS(1157), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_move] = ACTIONS(1163), - [anon_sym_try] = ACTIONS(1166), - [sym_integer_literal] = ACTIONS(1169), - [aux_sym_string_literal_token1] = ACTIONS(1172), - [sym_char_literal] = ACTIONS(1169), - [anon_sym_true] = ACTIONS(1175), - [anon_sym_false] = ACTIONS(1175), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1178), - [sym_super] = ACTIONS(1181), - [sym_crate] = ACTIONS(1181), - [sym_metavariable] = ACTIONS(1184), - [sym__raw_string_literal_start] = ACTIONS(1187), - [sym_float_literal] = ACTIONS(1169), + [241] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1790), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1673), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(241), + [sym_block_comment] = STATE(241), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(406), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1188), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DASH_GT] = ACTIONS(1190), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [236] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1807), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(236), - [sym_block_comment] = STATE(236), - [aux_sym_tuple_expression_repeat1] = STATE(235), - [sym_identifier] = ACTIONS(334), + [242] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1638), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_let_condition] = STATE(2662), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(242), + [sym_block_comment] = STATE(242), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_RPAREN] = ACTIONS(1190), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), + [anon_sym_let] = ACTIONS(979), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -43336,68 +44029,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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [237] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1847), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_let_condition] = STATE(2573), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(237), - [sym_block_comment] = STATE(237), + [243] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1644), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(243), + [sym_block_comment] = STATE(243), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1021), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -43415,12 +44107,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1039), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), @@ -43430,7 +44122,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(418), [anon_sym_for] = ACTIONS(420), [anon_sym_if] = ACTIONS(422), - [anon_sym_let] = ACTIONS(1015), [anon_sym_loop] = ACTIONS(424), [anon_sym_match] = ACTIONS(426), [anon_sym_return] = ACTIONS(428), @@ -43438,6 +44129,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(418), [anon_sym_unsafe] = ACTIONS(432), [anon_sym_while] = ACTIONS(434), + [sym_mutable_specifier] = ACTIONS(1192), [anon_sym_yield] = ACTIONS(436), [anon_sym_move] = ACTIONS(438), [anon_sym_try] = ACTIONS(440), @@ -43455,101 +44147,322 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [238] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1573), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1237), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(238), - [sym_block_comment] = STATE(238), - [sym_identifier] = ACTIONS(464), + [244] = { + [sym_else_clause] = STATE(385), + [sym_line_comment] = STATE(244), + [sym_block_comment] = STATE(244), + [ts_builtin_sym_end] = ACTIONS(1194), + [sym_identifier] = ACTIONS(1196), + [anon_sym_SEMI] = ACTIONS(1194), + [anon_sym_macro_rules_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_LBRACE] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u128] = ACTIONS(1196), + [anon_sym_i128] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_str] = ACTIONS(1196), + [anon_sym_char] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_PERCENT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1196), + [anon_sym_BANG] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1194), + [anon_sym_PIPE_PIPE] = ACTIONS(1194), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_PLUS_EQ] = ACTIONS(1194), + [anon_sym_DASH_EQ] = ACTIONS(1194), + [anon_sym_STAR_EQ] = ACTIONS(1194), + [anon_sym_SLASH_EQ] = ACTIONS(1194), + [anon_sym_PERCENT_EQ] = ACTIONS(1194), + [anon_sym_CARET_EQ] = ACTIONS(1194), + [anon_sym_AMP_EQ] = ACTIONS(1194), + [anon_sym_PIPE_EQ] = ACTIONS(1194), + [anon_sym_LT_LT_EQ] = ACTIONS(1194), + [anon_sym_GT_GT_EQ] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1194), + [anon_sym_BANG_EQ] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1194), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_SQUOTE] = ACTIONS(1196), + [anon_sym_as] = ACTIONS(1196), + [anon_sym_async] = ACTIONS(1196), + [anon_sym_break] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_continue] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_enum] = ACTIONS(1196), + [anon_sym_fn] = ACTIONS(1196), + [anon_sym_for] = ACTIONS(1196), + [anon_sym_if] = ACTIONS(1196), + [anon_sym_impl] = ACTIONS(1196), + [anon_sym_let] = ACTIONS(1196), + [anon_sym_loop] = ACTIONS(1196), + [anon_sym_match] = ACTIONS(1196), + [anon_sym_mod] = ACTIONS(1196), + [anon_sym_pub] = ACTIONS(1196), + [anon_sym_return] = ACTIONS(1196), + [anon_sym_static] = ACTIONS(1196), + [anon_sym_struct] = ACTIONS(1196), + [anon_sym_trait] = ACTIONS(1196), + [anon_sym_type] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_unsafe] = ACTIONS(1196), + [anon_sym_use] = ACTIONS(1196), + [anon_sym_while] = ACTIONS(1196), + [anon_sym_extern] = ACTIONS(1196), + [anon_sym_else] = ACTIONS(1198), + [anon_sym_yield] = ACTIONS(1196), + [anon_sym_move] = ACTIONS(1196), + [anon_sym_try] = ACTIONS(1196), + [sym_integer_literal] = ACTIONS(1194), + [aux_sym_string_literal_token1] = ACTIONS(1194), + [sym_char_literal] = ACTIONS(1194), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1196), + [sym_super] = ACTIONS(1196), + [sym_crate] = ACTIONS(1196), + [sym_metavariable] = ACTIONS(1194), + [sym__raw_string_literal_start] = ACTIONS(1194), + [sym_float_literal] = ACTIONS(1194), + }, + [245] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1337), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(245), + [sym_block_comment] = STATE(245), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(492), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [sym_mutable_specifier] = ACTIONS(1200), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [246] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1337), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(246), + [sym_block_comment] = STATE(246), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1051), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_DASH_GT] = ACTIONS(1055), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), + [sym_mutable_specifier] = ACTIONS(1202), [anon_sym_yield] = ACTIONS(502), [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), @@ -43560,62 +44473,62 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [239] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1668), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1277), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(239), - [sym_block_comment] = STATE(239), + [247] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1337), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(247), + [sym_block_comment] = STATE(247), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -43638,32 +44551,471 @@ 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(344), + [anon_sym_DASH] = ACTIONS(21), + [anon_sym_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [sym_mutable_specifier] = ACTIONS(1204), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [248] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1654), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(248), + [sym_block_comment] = STATE(248), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1039), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1043), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [249] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1714), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(249), + [sym_block_comment] = STATE(249), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [250] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1715), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(250), + [sym_block_comment] = STATE(250), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [251] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1590), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(251), + [sym_block_comment] = STATE(251), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -43672,110 +45024,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [240] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1795), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), + [252] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1717), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(240), - [sym_block_comment] = STATE(240), - [sym_identifier] = ACTIONS(334), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(252), + [sym_block_comment] = STATE(252), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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(344), - [anon_sym_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -43784,110 +45134,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [241] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1670), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1439), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(241), - [sym_block_comment] = STATE(241), - [sym_identifier] = ACTIONS(464), + [253] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1718), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(253), + [sym_block_comment] = STATE(253), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(468), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_DASH_GT] = ACTIONS(1075), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -43896,110 +45244,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [242] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1596), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_let_condition] = STATE(2573), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(242), - [sym_block_comment] = STATE(242), - [sym_identifier] = ACTIONS(464), + [254] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1719), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(254), + [sym_block_comment] = STATE(254), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), - [anon_sym_let] = ACTIONS(981), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44008,109 +45354,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [243] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1357), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), + [255] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1720), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(243), - [sym_block_comment] = STATE(243), - [sym_identifier] = ACTIONS(334), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(255), + [sym_block_comment] = STATE(255), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1192), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44119,109 +45464,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [244] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1357), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(244), - [sym_block_comment] = STATE(244), - [sym_identifier] = ACTIONS(464), + [256] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1721), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(256), + [sym_block_comment] = STATE(256), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1194), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44230,178 +45574,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [245] = { - [sym_else_clause] = STATE(393), - [sym_line_comment] = STATE(245), - [sym_block_comment] = STATE(245), - [ts_builtin_sym_end] = ACTIONS(1196), - [sym_identifier] = ACTIONS(1198), - [anon_sym_SEMI] = ACTIONS(1196), - [anon_sym_macro_rules_BANG] = ACTIONS(1196), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_LBRACE] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(1196), - [anon_sym_u8] = ACTIONS(1198), - [anon_sym_i8] = ACTIONS(1198), - [anon_sym_u16] = ACTIONS(1198), - [anon_sym_i16] = ACTIONS(1198), - [anon_sym_u32] = ACTIONS(1198), - [anon_sym_i32] = ACTIONS(1198), - [anon_sym_u64] = ACTIONS(1198), - [anon_sym_i64] = ACTIONS(1198), - [anon_sym_u128] = ACTIONS(1198), - [anon_sym_i128] = ACTIONS(1198), - [anon_sym_isize] = ACTIONS(1198), - [anon_sym_usize] = ACTIONS(1198), - [anon_sym_f32] = ACTIONS(1198), - [anon_sym_f64] = ACTIONS(1198), - [anon_sym_bool] = ACTIONS(1198), - [anon_sym_str] = ACTIONS(1198), - [anon_sym_char] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_BANG] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1196), - [anon_sym_PIPE_PIPE] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_PLUS_EQ] = ACTIONS(1196), - [anon_sym_DASH_EQ] = ACTIONS(1196), - [anon_sym_STAR_EQ] = ACTIONS(1196), - [anon_sym_SLASH_EQ] = ACTIONS(1196), - [anon_sym_PERCENT_EQ] = ACTIONS(1196), - [anon_sym_CARET_EQ] = ACTIONS(1196), - [anon_sym_AMP_EQ] = ACTIONS(1196), - [anon_sym_PIPE_EQ] = ACTIONS(1196), - [anon_sym_LT_LT_EQ] = ACTIONS(1196), - [anon_sym_GT_GT_EQ] = ACTIONS(1196), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_BANG_EQ] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1196), - [anon_sym_LT_EQ] = ACTIONS(1196), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1196), - [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1196), - [anon_sym_SQUOTE] = ACTIONS(1198), - [anon_sym_as] = ACTIONS(1198), - [anon_sym_async] = ACTIONS(1198), - [anon_sym_break] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_continue] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_enum] = ACTIONS(1198), - [anon_sym_fn] = ACTIONS(1198), - [anon_sym_for] = ACTIONS(1198), - [anon_sym_if] = ACTIONS(1198), - [anon_sym_impl] = ACTIONS(1198), - [anon_sym_let] = ACTIONS(1198), - [anon_sym_loop] = ACTIONS(1198), - [anon_sym_match] = ACTIONS(1198), - [anon_sym_mod] = ACTIONS(1198), - [anon_sym_pub] = ACTIONS(1198), - [anon_sym_return] = ACTIONS(1198), - [anon_sym_static] = ACTIONS(1198), - [anon_sym_struct] = ACTIONS(1198), - [anon_sym_trait] = ACTIONS(1198), - [anon_sym_type] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_unsafe] = ACTIONS(1198), - [anon_sym_use] = ACTIONS(1198), - [anon_sym_while] = ACTIONS(1198), - [anon_sym_extern] = ACTIONS(1198), - [anon_sym_else] = ACTIONS(1200), - [anon_sym_yield] = ACTIONS(1198), - [anon_sym_move] = ACTIONS(1198), - [anon_sym_try] = ACTIONS(1198), - [sym_integer_literal] = ACTIONS(1196), - [aux_sym_string_literal_token1] = ACTIONS(1196), - [sym_char_literal] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1198), - [sym_super] = ACTIONS(1198), - [sym_crate] = ACTIONS(1198), - [sym_metavariable] = ACTIONS(1196), - [sym__raw_string_literal_start] = ACTIONS(1196), - [sym_float_literal] = ACTIONS(1196), - }, - [246] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1708), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(246), - [sym_block_comment] = STATE(246), + [257] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1643), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(257), + [sym_block_comment] = STATE(257), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1021), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -44419,12 +45652,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1039), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), @@ -44441,7 +45674,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(418), [anon_sym_unsafe] = ACTIONS(432), [anon_sym_while] = ACTIONS(434), - [sym_mutable_specifier] = ACTIONS(1202), [anon_sym_yield] = ACTIONS(436), [anon_sym_move] = ACTIONS(438), [anon_sym_try] = ACTIONS(440), @@ -44459,102 +45691,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [247] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1357), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(247), - [sym_block_comment] = STATE(247), - [sym_identifier] = ACTIONS(464), + [258] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(258), + [sym_block_comment] = STATE(258), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [259] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1839), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(259), + [sym_block_comment] = STATE(259), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [sym_mutable_specifier] = ACTIONS(1204), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -44563,62 +45904,62 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [248] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1843), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(248), - [sym_block_comment] = STATE(248), + [260] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1860), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(260), + [sym_block_comment] = STATE(260), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -44680,9 +46021,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [249] = { - [sym_line_comment] = STATE(249), - [sym_block_comment] = STATE(249), + [261] = { + [sym_line_comment] = STATE(261), + [sym_block_comment] = STATE(261), [ts_builtin_sym_end] = ACTIONS(1206), [sym_identifier] = ACTIONS(1208), [anon_sym_SEMI] = ACTIONS(1206), @@ -44755,530 +46096,90 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1208), [anon_sym_fn] = ACTIONS(1208), [anon_sym_for] = ACTIONS(1208), - [anon_sym_if] = ACTIONS(1208), - [anon_sym_impl] = ACTIONS(1208), - [anon_sym_let] = ACTIONS(1208), - [anon_sym_loop] = ACTIONS(1208), - [anon_sym_match] = ACTIONS(1208), - [anon_sym_mod] = ACTIONS(1208), - [anon_sym_pub] = ACTIONS(1208), - [anon_sym_return] = ACTIONS(1208), - [anon_sym_static] = ACTIONS(1208), - [anon_sym_struct] = ACTIONS(1208), - [anon_sym_trait] = ACTIONS(1208), - [anon_sym_type] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_unsafe] = ACTIONS(1208), - [anon_sym_use] = ACTIONS(1208), - [anon_sym_while] = ACTIONS(1208), - [anon_sym_extern] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [anon_sym_yield] = ACTIONS(1208), - [anon_sym_move] = ACTIONS(1208), - [anon_sym_try] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), - }, - [250] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1640), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(250), - [sym_block_comment] = STATE(250), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [251] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1666), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(251), - [sym_block_comment] = STATE(251), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [252] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1840), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(252), - [sym_block_comment] = STATE(252), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [253] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1354), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(253), - [sym_block_comment] = STATE(253), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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_if] = ACTIONS(1208), + [anon_sym_impl] = ACTIONS(1208), + [anon_sym_let] = ACTIONS(1208), + [anon_sym_loop] = ACTIONS(1208), + [anon_sym_match] = ACTIONS(1208), + [anon_sym_mod] = ACTIONS(1208), + [anon_sym_pub] = ACTIONS(1208), + [anon_sym_return] = ACTIONS(1208), + [anon_sym_static] = ACTIONS(1208), + [anon_sym_struct] = ACTIONS(1208), + [anon_sym_trait] = ACTIONS(1208), + [anon_sym_type] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_unsafe] = ACTIONS(1208), + [anon_sym_use] = ACTIONS(1208), + [anon_sym_while] = ACTIONS(1208), + [anon_sym_extern] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [anon_sym_yield] = ACTIONS(1208), + [anon_sym_move] = ACTIONS(1208), + [anon_sym_try] = ACTIONS(1208), + [sym_integer_literal] = ACTIONS(1206), + [aux_sym_string_literal_token1] = ACTIONS(1206), + [sym_char_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_crate] = ACTIONS(1208), + [sym_metavariable] = ACTIONS(1206), + [sym__raw_string_literal_start] = ACTIONS(1206), + [sym_float_literal] = ACTIONS(1206), }, - [254] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1853), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(254), - [sym_block_comment] = STATE(254), + [262] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1867), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(262), + [sym_block_comment] = STATE(262), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -45340,169 +46241,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [255] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1793), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(255), - [sym_block_comment] = STATE(255), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [256] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1842), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(256), - [sym_block_comment] = STATE(256), + [263] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1873), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [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(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3579), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(464), + [sym_async_block] = STATE(464), + [sym_try_block] = STATE(464), + [sym_block] = STATE(464), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(263), + [sym_block_comment] = STATE(263), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_LBRACE] = ACTIONS(1210), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -45529,23 +46320,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), + [anon_sym_async] = ACTIONS(1212), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), + [anon_sym_const] = ACTIONS(1214), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_loop] = ACTIONS(1220), + [anon_sym_match] = ACTIONS(1222), [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), + [anon_sym_unsafe] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1226), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), + [anon_sym_try] = ACTIONS(1228), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -45560,211 +46351,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [257] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1425), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(257), - [sym_block_comment] = STATE(257), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [264] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1659), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(264), + [sym_block_comment] = STATE(264), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [258] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1874), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(258), - [sym_block_comment] = STATE(258), - [sym_identifier] = ACTIONS(334), + [265] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1353), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(265), + [sym_block_comment] = STATE(265), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -45773,1098 +46564,1318 @@ 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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [259] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1766), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(259), - [sym_block_comment] = STATE(259), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [266] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1753), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(266), + [sym_block_comment] = STATE(266), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [260] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1868), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(260), - [sym_block_comment] = STATE(260), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [267] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1665), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(267), + [sym_block_comment] = STATE(267), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [268] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1754), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(268), + [sym_block_comment] = STATE(268), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [269] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1755), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(269), + [sym_block_comment] = STATE(269), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [261] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1500), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(261), - [sym_block_comment] = STATE(261), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [270] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1756), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(270), + [sym_block_comment] = STATE(270), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [262] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1440), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(262), - [sym_block_comment] = STATE(262), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [271] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1757), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(271), + [sym_block_comment] = STATE(271), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [263] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1835), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(263), - [sym_block_comment] = STATE(263), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [272] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1758), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(272), + [sym_block_comment] = STATE(272), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [264] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1493), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(264), - [sym_block_comment] = STATE(264), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [273] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1759), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(273), + [sym_block_comment] = STATE(273), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [265] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1484), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(265), - [sym_block_comment] = STATE(265), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), + }, + [274] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1760), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(274), + [sym_block_comment] = STATE(274), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [266] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1485), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(266), - [sym_block_comment] = STATE(266), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [275] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1761), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(275), + [sym_block_comment] = STATE(275), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [267] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1486), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(267), - [sym_block_comment] = STATE(267), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [276] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1762), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(276), + [sym_block_comment] = STATE(276), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [268] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1487), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), + [277] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(268), - [sym_block_comment] = STATE(268), - [sym_identifier] = ACTIONS(334), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(277), + [sym_block_comment] = STATE(277), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -46873,62 +47884,62 @@ 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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [269] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1498), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(269), - [sym_block_comment] = STATE(269), + [278] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1843), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(278), + [sym_block_comment] = STATE(278), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -46956,7 +47967,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -46990,55 +48001,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [270] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1488), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(270), - [sym_block_comment] = STATE(270), + [279] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1844), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(279), + [sym_block_comment] = STATE(279), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -47066,7 +48077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -47100,101 +48111,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [271] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1489), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(271), - [sym_block_comment] = STATE(271), - [sym_identifier] = ACTIONS(334), + [280] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1629), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(280), + [sym_block_comment] = STATE(280), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -47203,218 +48214,218 @@ 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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [272] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1490), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(272), - [sym_block_comment] = STATE(272), - [sym_identifier] = ACTIONS(334), + [281] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(281), + [sym_block_comment] = STATE(281), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [273] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1857), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(273), - [sym_block_comment] = STATE(273), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [282] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1630), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(282), + [sym_block_comment] = STATE(282), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -47423,108 +48434,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [274] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1647), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(274), - [sym_block_comment] = STATE(274), - [sym_identifier] = ACTIONS(334), + [283] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1579), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(283), + [sym_block_comment] = STATE(283), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -47533,108 +48544,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [275] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(275), - [sym_block_comment] = STATE(275), - [sym_identifier] = ACTIONS(334), + [284] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1580), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(284), + [sym_block_comment] = STATE(284), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -47643,108 +48654,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [276] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1354), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(276), - [sym_block_comment] = STATE(276), - [sym_identifier] = ACTIONS(334), + [285] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1588), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(285), + [sym_block_comment] = STATE(285), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -47753,108 +48764,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [277] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1855), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), + [286] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1722), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(277), - [sym_block_comment] = STATE(277), - [sym_identifier] = ACTIONS(334), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(286), + [sym_block_comment] = STATE(286), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -47863,108 +48874,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [278] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1778), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), + [287] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1716), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(278), - [sym_block_comment] = STATE(278), - [sym_identifier] = ACTIONS(334), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(287), + [sym_block_comment] = STATE(287), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -47973,108 +48984,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [279] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1354), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(279), - [sym_block_comment] = STATE(279), - [sym_identifier] = ACTIONS(464), + [288] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1593), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(288), + [sym_block_comment] = STATE(288), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -48083,67 +49094,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [280] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(280), - [sym_block_comment] = STATE(280), + [289] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(289), + [sym_block_comment] = STATE(289), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1021), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -48161,12 +49172,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1013), + [anon_sym_DOT_DOT] = ACTIONS(1025), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), @@ -48200,427 +49211,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, - [281] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1850), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(463), - [sym_match_expression] = STATE(463), - [sym_while_expression] = STATE(463), - [sym_loop_expression] = STATE(463), - [sym_for_expression] = STATE(463), - [sym_const_block] = STATE(463), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), + [290] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1763), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(463), - [sym_async_block] = STATE(463), - [sym_try_block] = STATE(463), - [sym_block] = STATE(463), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(281), - [sym_block_comment] = STATE(281), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1212), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1214), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1216), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1224), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1228), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1230), - [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [282] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1873), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(282), - [sym_block_comment] = STATE(282), - [sym_identifier] = ACTIONS(334), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(290), + [sym_block_comment] = STATE(290), + [sym_identifier] = ACTIONS(398), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), + [anon_sym_LBRACE] = ACTIONS(400), + [anon_sym_STAR] = ACTIONS(1021), + [anon_sym_u8] = ACTIONS(404), + [anon_sym_i8] = ACTIONS(404), + [anon_sym_u16] = ACTIONS(404), + [anon_sym_i16] = ACTIONS(404), + [anon_sym_u32] = ACTIONS(404), + [anon_sym_i32] = ACTIONS(404), + [anon_sym_u64] = ACTIONS(404), + [anon_sym_i64] = ACTIONS(404), + [anon_sym_u128] = ACTIONS(404), + [anon_sym_i128] = ACTIONS(404), + [anon_sym_isize] = ACTIONS(404), + [anon_sym_usize] = ACTIONS(404), + [anon_sym_f32] = ACTIONS(404), + [anon_sym_f64] = ACTIONS(404), + [anon_sym_bool] = ACTIONS(404), + [anon_sym_str] = ACTIONS(404), + [anon_sym_char] = ACTIONS(404), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1039), + [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(366), - [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_async] = ACTIONS(410), + [anon_sym_break] = ACTIONS(412), + [anon_sym_const] = ACTIONS(414), + [anon_sym_continue] = ACTIONS(416), + [anon_sym_default] = ACTIONS(418), + [anon_sym_for] = ACTIONS(420), + [anon_sym_if] = ACTIONS(422), + [anon_sym_loop] = ACTIONS(424), + [anon_sym_match] = ACTIONS(426), + [anon_sym_return] = ACTIONS(428), + [anon_sym_static] = ACTIONS(430), + [anon_sym_union] = ACTIONS(418), + [anon_sym_unsafe] = ACTIONS(432), + [anon_sym_while] = ACTIONS(434), + [anon_sym_yield] = ACTIONS(436), + [anon_sym_move] = ACTIONS(438), + [anon_sym_try] = ACTIONS(440), + [sym_integer_literal] = ACTIONS(442), + [aux_sym_string_literal_token1] = ACTIONS(444), + [sym_char_literal] = ACTIONS(442), + [anon_sym_true] = ACTIONS(446), + [anon_sym_false] = ACTIONS(446), [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_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), + [sym_self] = ACTIONS(448), + [sym_super] = ACTIONS(450), + [sym_crate] = ACTIONS(450), + [sym_metavariable] = ACTIONS(452), + [sym__raw_string_literal_start] = ACTIONS(454), + [sym_float_literal] = ACTIONS(442), }, - [283] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1851), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(283), - [sym_block_comment] = STATE(283), - [sym_identifier] = ACTIONS(334), + [291] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1606), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(291), + [sym_block_comment] = STATE(291), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [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), + [anon_sym_false] = ACTIONS(99), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [284] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1696), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(284), - [sym_block_comment] = STATE(284), - [sym_identifier] = ACTIONS(464), + [292] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1615), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(292), + [sym_block_comment] = STATE(292), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -48633,104 +49534,104 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [285] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1556), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(285), - [sym_block_comment] = STATE(285), - [sym_identifier] = ACTIONS(464), + [293] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1323), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(293), + [sym_block_comment] = STATE(293), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -48743,108 +49644,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [286] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1674), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(286), - [sym_block_comment] = STATE(286), - [sym_identifier] = ACTIONS(334), + [294] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1616), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(294), + [sym_block_comment] = STATE(294), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -48853,108 +49754,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [287] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1805), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(287), - [sym_block_comment] = STATE(287), - [sym_identifier] = ACTIONS(334), + [295] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1690), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(295), + [sym_block_comment] = STATE(295), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -48963,62 +49864,62 @@ 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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [288] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1648), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(288), - [sym_block_comment] = STATE(288), + [296] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1695), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(296), + [sym_block_comment] = STATE(296), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49080,211 +49981,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [289] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1678), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(289), - [sym_block_comment] = STATE(289), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [290] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1440), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(290), - [sym_block_comment] = STATE(290), - [sym_identifier] = ACTIONS(464), + [297] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1619), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(297), + [sym_block_comment] = STATE(297), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1055), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -49293,66 +50084,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [291] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1777), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(463), - [sym_match_expression] = STATE(463), - [sym_while_expression] = STATE(463), - [sym_loop_expression] = STATE(463), - [sym_for_expression] = STATE(463), - [sym_const_block] = STATE(463), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(463), - [sym_async_block] = STATE(463), - [sym_try_block] = STATE(463), - [sym_block] = STATE(463), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(291), - [sym_block_comment] = STATE(291), + [298] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1697), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(298), + [sym_block_comment] = STATE(298), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -49379,23 +50170,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1214), + [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1228), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1230), + [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -49410,275 +50201,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [292] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1676), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(292), - [sym_block_comment] = STATE(292), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [293] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1664), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(293), - [sym_block_comment] = STATE(293), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [294] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1854), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(294), - [sym_block_comment] = STATE(294), + [299] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1698), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(299), + [sym_block_comment] = STATE(299), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -49740,275 +50311,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [295] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1681), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(295), - [sym_block_comment] = STATE(295), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [296] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1655), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(296), - [sym_block_comment] = STATE(296), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [297] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1869), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(297), - [sym_block_comment] = STATE(297), + [300] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1482), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(300), + [sym_block_comment] = STATE(300), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50036,7 +50387,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -50070,499 +50421,169 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [298] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1596), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(298), - [sym_block_comment] = STATE(298), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [299] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(299), - [sym_block_comment] = STATE(299), - [sym_identifier] = ACTIONS(464), + [301] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1842), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(301), + [sym_block_comment] = STATE(301), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [300] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1870), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(300), - [sym_block_comment] = STATE(300), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1013), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [301] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1775), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(301), - [sym_block_comment] = STATE(301), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [302] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1733), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(456), - [sym_match_expression] = STATE(456), - [sym_while_expression] = STATE(456), - [sym_loop_expression] = STATE(456), - [sym_for_expression] = STATE(456), - [sym_const_block] = STATE(456), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(456), - [sym_async_block] = STATE(456), - [sym_try_block] = STATE(456), - [sym_block] = STATE(456), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1850), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(302), [sym_block_comment] = STATE(302), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -50589,23 +50610,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1214), + [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1228), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1230), + [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -50621,52 +50642,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [303] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1864), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1495), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(303), [sym_block_comment] = STATE(303), [sym_identifier] = ACTIONS(334), @@ -50696,7 +50717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -50731,164 +50752,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [304] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1650), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(304), [sym_block_comment] = STATE(304), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [305] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1856), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(305), - [sym_block_comment] = STATE(305), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -50916,7 +50827,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -50950,55 +50861,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [306] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1872), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(306), - [sym_block_comment] = STATE(306), + [305] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1485), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(305), + [sym_block_comment] = STATE(305), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51026,7 +50937,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -51060,165 +50971,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [307] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1546), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(307), - [sym_block_comment] = STATE(307), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [308] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1661), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(308), - [sym_block_comment] = STATE(308), + [306] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1486), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(306), + [sym_block_comment] = STATE(306), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -51246,7 +51047,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -51280,60 +51081,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [309] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1715), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(309), - [sym_block_comment] = STATE(309), + [307] = { + [sym_bracketed_type] = STATE(3498), + [sym_generic_function] = STATE(1637), + [sym_generic_type_with_turbofish] = STATE(2956), + [sym__expression_except_range] = STATE(1604), + [sym__expression] = STATE(1865), + [sym_macro_invocation] = STATE(1641), + [sym_scoped_identifier] = STATE(1546), + [sym_scoped_type_identifier_in_expression_position] = STATE(3100), + [sym_range_expression] = STATE(1639), + [sym_unary_expression] = STATE(1637), + [sym_try_expression] = STATE(1637), + [sym_reference_expression] = STATE(1637), + [sym_binary_expression] = STATE(1637), + [sym_assignment_expression] = STATE(1637), + [sym_compound_assignment_expr] = STATE(1637), + [sym_type_cast_expression] = STATE(1637), + [sym_return_expression] = STATE(1637), + [sym_yield_expression] = STATE(1637), + [sym_call_expression] = STATE(1637), + [sym_array_expression] = STATE(1637), + [sym_parenthesized_expression] = STATE(1637), + [sym_tuple_expression] = STATE(1637), + [sym_unit_expression] = STATE(1637), + [sym_struct_expression] = STATE(1637), + [sym_if_expression] = STATE(1637), + [sym_match_expression] = STATE(1637), + [sym_while_expression] = STATE(1637), + [sym_loop_expression] = STATE(1637), + [sym_for_expression] = STATE(1637), + [sym_const_block] = STATE(1637), + [sym_closure_expression] = STATE(1637), + [sym_closure_parameters] = STATE(237), + [sym_label] = STATE(3585), + [sym_break_expression] = STATE(1637), + [sym_continue_expression] = STATE(1637), + [sym_index_expression] = STATE(1637), + [sym_await_expression] = STATE(1637), + [sym_field_expression] = STATE(1620), + [sym_unsafe_block] = STATE(1637), + [sym_async_block] = STATE(1637), + [sym_try_block] = STATE(1637), + [sym_block] = STATE(1637), + [sym__literal] = STATE(1637), + [sym_string_literal] = STATE(1778), + [sym_raw_string_literal] = STATE(1778), + [sym_boolean_literal] = STATE(1778), + [sym_line_comment] = STATE(307), + [sym_block_comment] = STATE(307), [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), + [anon_sym_LPAREN] = ACTIONS(482), + [anon_sym_LBRACK] = ACTIONS(484), [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), + [anon_sym_STAR] = ACTIONS(1021), [anon_sym_u8] = ACTIONS(404), [anon_sym_i8] = ACTIONS(404), [anon_sym_u16] = ACTIONS(404), @@ -51351,12 +51152,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(404), [anon_sym_str] = ACTIONS(404), [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [anon_sym_DASH] = ACTIONS(1021), + [anon_sym_BANG] = ACTIONS(1021), + [anon_sym_AMP] = ACTIONS(1023), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), + [anon_sym_DOT_DOT] = ACTIONS(1025), [anon_sym_COLON_COLON] = ACTIONS(408), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(410), @@ -51390,101 +51191,321 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(454), [sym_float_literal] = ACTIONS(442), }, + [308] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1671), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(308), + [sym_block_comment] = STATE(308), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [309] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1853), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(458), + [sym_match_expression] = STATE(458), + [sym_while_expression] = STATE(458), + [sym_loop_expression] = STATE(458), + [sym_for_expression] = STATE(458), + [sym_const_block] = STATE(458), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3579), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(458), + [sym_async_block] = STATE(458), + [sym_try_block] = STATE(458), + [sym_block] = STATE(458), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(309), + [sym_block_comment] = STATE(309), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1210), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_loop] = ACTIONS(1220), + [anon_sym_match] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(1228), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, [310] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1567), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1323), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(310), [sym_block_comment] = STATE(310), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -51493,218 +51514,218 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [311] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1677), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1870), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(311), [sym_block_comment] = STATE(311), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [312] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1639), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1713), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(312), [sym_block_comment] = STATE(312), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -51713,60 +51734,60 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [313] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1713), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1868), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(313), [sym_block_comment] = STATE(313), [sym_identifier] = ACTIONS(334), @@ -51831,100 +51852,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [314] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1814), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1488), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(314), [sym_block_comment] = STATE(314), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -51933,218 +51954,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [315] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1706), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1490), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(315), [sym_block_comment] = STATE(315), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [316] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1542), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(316), - [sym_block_comment] = STATE(316), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -52153,108 +52064,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [317] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1818), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(317), - [sym_block_comment] = STATE(317), - [sym_identifier] = ACTIONS(464), + [316] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1733), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(316), + [sym_block_comment] = STATE(316), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -52263,172 +52174,62 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [318] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1838), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(318), - [sym_block_comment] = STATE(318), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [319] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1651), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(319), - [sym_block_comment] = STATE(319), + [317] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1782), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(317), + [sym_block_comment] = STATE(317), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -52490,102 +52291,102 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [320] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1587), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(320), - [sym_block_comment] = STATE(320), - [sym_identifier] = ACTIONS(464), + [318] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1786), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [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(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3579), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(464), + [sym_async_block] = STATE(464), + [sym_try_block] = STATE(464), + [sym_block] = STATE(464), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(318), + [sym_block_comment] = STATE(318), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_LBRACE] = ACTIONS(1210), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), + [anon_sym_async] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_loop] = ACTIONS(1220), + [anon_sym_match] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(1228), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -52593,218 +52394,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [321] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1693), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(321), - [sym_block_comment] = STATE(321), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [322] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1754), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(322), - [sym_block_comment] = STATE(322), - [sym_identifier] = ACTIONS(464), + [319] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1353), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(319), + [sym_block_comment] = STATE(319), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -52813,66 +52504,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [323] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1875), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(456), - [sym_match_expression] = STATE(456), - [sym_while_expression] = STATE(456), - [sym_loop_expression] = STATE(456), - [sym_for_expression] = STATE(456), - [sym_const_block] = STATE(456), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3585), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(456), - [sym_async_block] = STATE(456), - [sym_try_block] = STATE(456), - [sym_block] = STATE(456), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(323), - [sym_block_comment] = STATE(323), + [320] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1849), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(320), + [sym_block_comment] = STATE(320), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(1212), + [anon_sym_LBRACE] = ACTIONS(338), [anon_sym_STAR] = ACTIONS(21), [anon_sym_u8] = ACTIONS(23), [anon_sym_i8] = ACTIONS(23), @@ -52899,23 +52590,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(1214), + [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(41), - [anon_sym_const] = ACTIONS(1216), + [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), [anon_sym_default] = ACTIONS(350), - [anon_sym_for] = ACTIONS(1218), - [anon_sym_if] = ACTIONS(1220), - [anon_sym_loop] = ACTIONS(1222), - [anon_sym_match] = ACTIONS(1224), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(69), [anon_sym_static] = ACTIONS(360), [anon_sym_union] = ACTIONS(350), - [anon_sym_unsafe] = ACTIONS(1226), - [anon_sym_while] = ACTIONS(1228), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(89), [anon_sym_move] = ACTIONS(91), - [anon_sym_try] = ACTIONS(1230), + [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), [sym_char_literal] = ACTIONS(95), @@ -52930,101 +52621,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [324] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1425), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(324), - [sym_block_comment] = STATE(324), - [sym_identifier] = ACTIONS(464), + [321] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1798), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(321), + [sym_block_comment] = STATE(321), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -53033,108 +52724,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [325] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1587), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(325), - [sym_block_comment] = STATE(325), - [sym_identifier] = ACTIONS(464), + [322] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1799), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(322), + [sym_block_comment] = STATE(322), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -53143,16 +52834,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [326] = { - [sym_line_comment] = STATE(326), - [sym_block_comment] = STATE(326), + [323] = { + [sym_line_comment] = STATE(323), + [sym_block_comment] = STATE(323), [ts_builtin_sym_end] = ACTIONS(1232), [sym_identifier] = ACTIONS(1234), [anon_sym_SEMI] = ACTIONS(1232), @@ -53253,60 +52944,390 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1234), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1232), + [sym__raw_string_literal_start] = ACTIONS(1232), + [sym_float_literal] = ACTIONS(1232), + }, + [324] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1567), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(324), + [sym_block_comment] = STATE(324), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [325] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1500), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(325), + [sym_block_comment] = STATE(325), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [326] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1501), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(326), + [sym_block_comment] = STATE(326), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(1176), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [327] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1865), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1494), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(327), [sym_block_comment] = STATE(327), [sym_identifier] = ACTIONS(334), @@ -53336,7 +53357,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -53371,52 +53392,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [328] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1789), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1503), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(328), [sym_block_comment] = STATE(328), [sym_identifier] = ACTIONS(334), @@ -53446,7 +53467,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -53481,52 +53502,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [329] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1860), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1497), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(329), [sym_block_comment] = STATE(329), [sym_identifier] = ACTIONS(334), @@ -53556,7 +53577,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -53591,272 +53612,272 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [330] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1694), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1817), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(330), [sym_block_comment] = STATE(330), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [331] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1699), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1818), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(331), [sym_block_comment] = STATE(331), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [332] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1852), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1825), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(332), [sym_block_comment] = STATE(332), [sym_identifier] = ACTIONS(334), @@ -53921,100 +53942,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [333] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1561), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1829), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(458), + [sym_match_expression] = STATE(458), + [sym_while_expression] = STATE(458), + [sym_loop_expression] = STATE(458), + [sym_for_expression] = STATE(458), + [sym_const_block] = STATE(458), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3579), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(458), + [sym_async_block] = STATE(458), + [sym_try_block] = STATE(458), + [sym_block] = STATE(458), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(333), [sym_block_comment] = STATE(333), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(1210), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(1212), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(1214), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(1216), + [anon_sym_if] = ACTIONS(1218), + [anon_sym_loop] = ACTIONS(1220), + [anon_sym_match] = ACTIONS(1222), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(1224), + [anon_sym_while] = ACTIONS(1226), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(1228), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [334] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1869), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(334), + [sym_block_comment] = STATE(334), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -54023,108 +54154,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [334] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1569), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(334), - [sym_block_comment] = STATE(334), - [sym_identifier] = ACTIONS(464), + [335] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1872), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(335), + [sym_block_comment] = STATE(335), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -54133,16 +54264,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [335] = { - [sym_line_comment] = STATE(335), - [sym_block_comment] = STATE(335), + [336] = { + [sym_line_comment] = STATE(336), + [sym_block_comment] = STATE(336), [ts_builtin_sym_end] = ACTIONS(1236), [sym_identifier] = ACTIONS(1238), [anon_sym_SEMI] = ACTIONS(1236), @@ -54243,62 +54374,282 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(1238), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [sym_self] = ACTIONS(1238), + [sym_super] = ACTIONS(1238), + [sym_crate] = ACTIONS(1238), + [sym_metavariable] = ACTIONS(1236), + [sym__raw_string_literal_start] = ACTIONS(1236), + [sym_float_literal] = ACTIONS(1236), + }, + [337] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1482), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(337), + [sym_block_comment] = STATE(337), + [sym_identifier] = ACTIONS(334), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [338] = { + [sym_line_comment] = STATE(338), + [sym_block_comment] = STATE(338), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_macro_rules_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_PLUS] = ACTIONS(1242), + [anon_sym_STAR] = ACTIONS(1242), + [anon_sym_QMARK] = ACTIONS(1240), + [anon_sym_u8] = ACTIONS(1242), + [anon_sym_i8] = ACTIONS(1242), + [anon_sym_u16] = ACTIONS(1242), + [anon_sym_i16] = ACTIONS(1242), + [anon_sym_u32] = ACTIONS(1242), + [anon_sym_i32] = ACTIONS(1242), + [anon_sym_u64] = ACTIONS(1242), + [anon_sym_i64] = ACTIONS(1242), + [anon_sym_u128] = ACTIONS(1242), + [anon_sym_i128] = ACTIONS(1242), + [anon_sym_isize] = ACTIONS(1242), + [anon_sym_usize] = ACTIONS(1242), + [anon_sym_f32] = ACTIONS(1242), + [anon_sym_f64] = ACTIONS(1242), + [anon_sym_bool] = ACTIONS(1242), + [anon_sym_str] = ACTIONS(1242), + [anon_sym_char] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1242), + [anon_sym_SLASH] = ACTIONS(1242), + [anon_sym_PERCENT] = ACTIONS(1242), + [anon_sym_CARET] = ACTIONS(1242), + [anon_sym_BANG] = ACTIONS(1242), + [anon_sym_AMP] = ACTIONS(1242), + [anon_sym_PIPE] = ACTIONS(1242), + [anon_sym_AMP_AMP] = ACTIONS(1240), + [anon_sym_PIPE_PIPE] = ACTIONS(1240), + [anon_sym_LT_LT] = ACTIONS(1242), + [anon_sym_GT_GT] = ACTIONS(1242), + [anon_sym_PLUS_EQ] = ACTIONS(1240), + [anon_sym_DASH_EQ] = ACTIONS(1240), + [anon_sym_STAR_EQ] = ACTIONS(1240), + [anon_sym_SLASH_EQ] = ACTIONS(1240), + [anon_sym_PERCENT_EQ] = ACTIONS(1240), + [anon_sym_CARET_EQ] = ACTIONS(1240), + [anon_sym_AMP_EQ] = ACTIONS(1240), + [anon_sym_PIPE_EQ] = ACTIONS(1240), + [anon_sym_LT_LT_EQ] = ACTIONS(1240), + [anon_sym_GT_GT_EQ] = ACTIONS(1240), + [anon_sym_EQ] = ACTIONS(1242), + [anon_sym_EQ_EQ] = ACTIONS(1240), + [anon_sym_BANG_EQ] = ACTIONS(1240), + [anon_sym_GT] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(1242), + [anon_sym_GT_EQ] = ACTIONS(1240), + [anon_sym_LT_EQ] = ACTIONS(1240), + [anon_sym_DOT] = ACTIONS(1242), + [anon_sym_DOT_DOT] = ACTIONS(1242), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), + [anon_sym_COLON_COLON] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_as] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_fn] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_impl] = ACTIONS(1242), + [anon_sym_let] = ACTIONS(1242), + [anon_sym_loop] = ACTIONS(1242), + [anon_sym_match] = ACTIONS(1242), + [anon_sym_mod] = ACTIONS(1242), + [anon_sym_pub] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_trait] = ACTIONS(1242), + [anon_sym_type] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_unsafe] = ACTIONS(1242), + [anon_sym_use] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym_else] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1242), + [anon_sym_move] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1240), + [aux_sym_string_literal_token1] = ACTIONS(1240), + [sym_char_literal] = ACTIONS(1240), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1242), + [sym_super] = ACTIONS(1242), + [sym_crate] = ACTIONS(1242), + [sym_metavariable] = ACTIONS(1240), + [sym__raw_string_literal_start] = ACTIONS(1240), + [sym_float_literal] = ACTIONS(1240), }, - [336] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1689), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(336), - [sym_block_comment] = STATE(336), + [339] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1323), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(339), + [sym_block_comment] = STATE(339), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54326,7 +54677,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_DOT_DOT] = ACTIONS(1176), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -54360,55 +54711,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [337] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1692), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(337), - [sym_block_comment] = STATE(337), + [340] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1857), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(340), + [sym_block_comment] = STATE(340), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54470,101 +54821,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [338] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1712), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), + [341] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1353), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(338), - [sym_block_comment] = STATE(338), - [sym_identifier] = ACTIONS(334), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(341), + [sym_block_comment] = STATE(341), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -54573,218 +54924,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(107), - [sym_super] = ACTIONS(109), - [sym_crate] = ACTIONS(109), - [sym_metavariable] = ACTIONS(113), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [339] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1702), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(339), - [sym_block_comment] = STATE(339), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [340] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1565), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(340), - [sym_block_comment] = STATE(340), - [sym_identifier] = ACTIONS(464), + [342] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1796), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(342), + [sym_block_comment] = STATE(342), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -54793,62 +55034,62 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [341] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1794), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(341), - [sym_block_comment] = STATE(341), + [343] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1851), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(343), + [sym_block_comment] = STATE(343), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -54910,55 +55151,55 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [342] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1849), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(342), - [sym_block_comment] = STATE(342), + [344] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1852), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(344), + [sym_block_comment] = STATE(344), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55020,97 +55261,97 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [343] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1600), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(343), - [sym_block_comment] = STATE(343), - [sym_identifier] = ACTIONS(464), + [345] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1571), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(345), + [sym_block_comment] = STATE(345), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -55123,172 +55364,62 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [344] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1757), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), - [sym_line_comment] = STATE(344), - [sym_block_comment] = STATE(344), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), - }, - [345] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1846), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(345), - [sym_block_comment] = STATE(345), + [346] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1801), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(346), + [sym_block_comment] = STATE(346), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55350,211 +55481,211 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [346] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1841), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(346), - [sym_block_comment] = STATE(346), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, [347] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1440), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), [sym_line_comment] = STATE(347), [sym_block_comment] = STATE(347), - [sym_identifier] = ACTIONS(464), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_macro_rules_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_PLUS] = ACTIONS(1246), + [anon_sym_STAR] = ACTIONS(1246), + [anon_sym_QMARK] = ACTIONS(1244), + [anon_sym_u8] = ACTIONS(1246), + [anon_sym_i8] = ACTIONS(1246), + [anon_sym_u16] = ACTIONS(1246), + [anon_sym_i16] = ACTIONS(1246), + [anon_sym_u32] = ACTIONS(1246), + [anon_sym_i32] = ACTIONS(1246), + [anon_sym_u64] = ACTIONS(1246), + [anon_sym_i64] = ACTIONS(1246), + [anon_sym_u128] = ACTIONS(1246), + [anon_sym_i128] = ACTIONS(1246), + [anon_sym_isize] = ACTIONS(1246), + [anon_sym_usize] = ACTIONS(1246), + [anon_sym_f32] = ACTIONS(1246), + [anon_sym_f64] = ACTIONS(1246), + [anon_sym_bool] = ACTIONS(1246), + [anon_sym_str] = ACTIONS(1246), + [anon_sym_char] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1246), + [anon_sym_SLASH] = ACTIONS(1246), + [anon_sym_PERCENT] = ACTIONS(1246), + [anon_sym_CARET] = ACTIONS(1246), + [anon_sym_BANG] = ACTIONS(1246), + [anon_sym_AMP] = ACTIONS(1246), + [anon_sym_PIPE] = ACTIONS(1246), + [anon_sym_AMP_AMP] = ACTIONS(1244), + [anon_sym_PIPE_PIPE] = ACTIONS(1244), + [anon_sym_LT_LT] = ACTIONS(1246), + [anon_sym_GT_GT] = ACTIONS(1246), + [anon_sym_PLUS_EQ] = ACTIONS(1244), + [anon_sym_DASH_EQ] = ACTIONS(1244), + [anon_sym_STAR_EQ] = ACTIONS(1244), + [anon_sym_SLASH_EQ] = ACTIONS(1244), + [anon_sym_PERCENT_EQ] = ACTIONS(1244), + [anon_sym_CARET_EQ] = ACTIONS(1244), + [anon_sym_AMP_EQ] = ACTIONS(1244), + [anon_sym_PIPE_EQ] = ACTIONS(1244), + [anon_sym_LT_LT_EQ] = ACTIONS(1244), + [anon_sym_GT_GT_EQ] = ACTIONS(1244), + [anon_sym_EQ] = ACTIONS(1246), + [anon_sym_EQ_EQ] = ACTIONS(1244), + [anon_sym_BANG_EQ] = ACTIONS(1244), + [anon_sym_GT] = ACTIONS(1246), + [anon_sym_LT] = ACTIONS(1246), + [anon_sym_GT_EQ] = ACTIONS(1244), + [anon_sym_LT_EQ] = ACTIONS(1244), + [anon_sym_DOT] = ACTIONS(1246), + [anon_sym_DOT_DOT] = ACTIONS(1246), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), + [anon_sym_COLON_COLON] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_as] = ACTIONS(1246), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_fn] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_impl] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(1246), + [anon_sym_loop] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_mod] = ACTIONS(1246), + [anon_sym_pub] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_trait] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_unsafe] = ACTIONS(1246), + [anon_sym_use] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym_else] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1246), + [anon_sym_move] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1246), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1244), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1246), + [sym_super] = ACTIONS(1246), + [sym_crate] = ACTIONS(1246), + [sym_metavariable] = ACTIONS(1244), + [sym__raw_string_literal_start] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), + }, + [348] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1855), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(348), + [sym_block_comment] = STATE(348), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -55563,108 +55694,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [348] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1599), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(348), - [sym_block_comment] = STATE(348), - [sym_identifier] = ACTIONS(464), + [349] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1856), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(349), + [sym_block_comment] = STATE(349), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -55673,108 +55804,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [349] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1598), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(349), - [sym_block_comment] = STATE(349), - [sym_identifier] = ACTIONS(464), + [350] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1804), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(350), + [sym_block_comment] = STATE(350), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -55783,62 +55914,62 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [350] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1425), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(350), - [sym_block_comment] = STATE(350), + [351] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1858), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(351), + [sym_block_comment] = STATE(351), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -55866,7 +55997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -55900,101 +56031,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [351] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1597), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(351), - [sym_block_comment] = STATE(351), - [sym_identifier] = ACTIONS(464), + [352] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1808), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(352), + [sym_block_comment] = STATE(352), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -56003,108 +56134,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [352] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1654), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(352), - [sym_block_comment] = STATE(352), - [sym_identifier] = ACTIONS(464), + [353] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1859), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(353), + [sym_block_comment] = STATE(353), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1061), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -56113,214 +56244,104 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [353] = { - [sym_line_comment] = STATE(353), - [sym_block_comment] = STATE(353), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_PLUS] = ACTIONS(1242), - [anon_sym_STAR] = ACTIONS(1242), - [anon_sym_QMARK] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1242), - [anon_sym_SLASH] = ACTIONS(1242), - [anon_sym_PERCENT] = ACTIONS(1242), - [anon_sym_CARET] = ACTIONS(1242), - [anon_sym_BANG] = ACTIONS(1242), - [anon_sym_AMP] = ACTIONS(1242), - [anon_sym_PIPE] = ACTIONS(1242), - [anon_sym_AMP_AMP] = ACTIONS(1240), - [anon_sym_PIPE_PIPE] = ACTIONS(1240), - [anon_sym_LT_LT] = ACTIONS(1242), - [anon_sym_GT_GT] = ACTIONS(1242), - [anon_sym_PLUS_EQ] = ACTIONS(1240), - [anon_sym_DASH_EQ] = ACTIONS(1240), - [anon_sym_STAR_EQ] = ACTIONS(1240), - [anon_sym_SLASH_EQ] = ACTIONS(1240), - [anon_sym_PERCENT_EQ] = ACTIONS(1240), - [anon_sym_CARET_EQ] = ACTIONS(1240), - [anon_sym_AMP_EQ] = ACTIONS(1240), - [anon_sym_PIPE_EQ] = ACTIONS(1240), - [anon_sym_LT_LT_EQ] = ACTIONS(1240), - [anon_sym_GT_GT_EQ] = ACTIONS(1240), - [anon_sym_EQ] = ACTIONS(1242), - [anon_sym_EQ_EQ] = ACTIONS(1240), - [anon_sym_BANG_EQ] = ACTIONS(1240), - [anon_sym_GT] = ACTIONS(1242), - [anon_sym_LT] = ACTIONS(1242), - [anon_sym_GT_EQ] = ACTIONS(1240), - [anon_sym_LT_EQ] = ACTIONS(1240), - [anon_sym_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT] = ACTIONS(1242), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1240), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_as] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_else] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), - }, [354] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1595), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1562), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(354), [sym_block_comment] = STATE(354), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -56333,60 +56354,60 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [355] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1863), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1809), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(355), [sym_block_comment] = STATE(355), [sym_identifier] = ACTIONS(334), @@ -56451,52 +56472,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [356] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), [sym__expression] = STATE(1861), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(356), [sym_block_comment] = STATE(356), [sym_identifier] = ACTIONS(334), @@ -56561,100 +56582,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(95), }, [357] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1594), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1862), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(357), [sym_block_comment] = STATE(357), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(41), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -56663,392 +56684,172 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [358] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1592), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1863), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(358), [sym_block_comment] = STATE(358), - [sym_identifier] = ACTIONS(464), - [anon_sym_LPAREN] = ACTIONS(15), - [anon_sym_LBRACK] = ACTIONS(17), - [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [359] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1591), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(359), - [sym_block_comment] = STATE(359), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), - [anon_sym_PIPE] = ACTIONS(27), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), - [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), - [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), - [anon_sym_for] = ACTIONS(352), - [anon_sym_if] = ACTIONS(354), - [anon_sym_loop] = ACTIONS(356), - [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), - [anon_sym_unsafe] = ACTIONS(362), - [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), - [anon_sym_try] = ACTIONS(366), - [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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), - [sym__raw_string_literal_start] = ACTIONS(115), - [sym_float_literal] = ACTIONS(95), - }, - [360] = { - [sym_line_comment] = STATE(360), - [sym_block_comment] = STATE(360), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_STAR] = ACTIONS(1246), - [anon_sym_QMARK] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_SLASH] = ACTIONS(1246), - [anon_sym_PERCENT] = ACTIONS(1246), - [anon_sym_CARET] = ACTIONS(1246), - [anon_sym_BANG] = ACTIONS(1246), - [anon_sym_AMP] = ACTIONS(1246), - [anon_sym_PIPE] = ACTIONS(1246), - [anon_sym_AMP_AMP] = ACTIONS(1244), - [anon_sym_PIPE_PIPE] = ACTIONS(1244), - [anon_sym_LT_LT] = ACTIONS(1246), - [anon_sym_GT_GT] = ACTIONS(1246), - [anon_sym_PLUS_EQ] = ACTIONS(1244), - [anon_sym_DASH_EQ] = ACTIONS(1244), - [anon_sym_STAR_EQ] = ACTIONS(1244), - [anon_sym_SLASH_EQ] = ACTIONS(1244), - [anon_sym_PERCENT_EQ] = ACTIONS(1244), - [anon_sym_CARET_EQ] = ACTIONS(1244), - [anon_sym_AMP_EQ] = ACTIONS(1244), - [anon_sym_PIPE_EQ] = ACTIONS(1244), - [anon_sym_LT_LT_EQ] = ACTIONS(1244), - [anon_sym_GT_GT_EQ] = ACTIONS(1244), - [anon_sym_EQ] = ACTIONS(1246), - [anon_sym_EQ_EQ] = ACTIONS(1244), - [anon_sym_BANG_EQ] = ACTIONS(1244), - [anon_sym_GT] = ACTIONS(1246), - [anon_sym_LT] = ACTIONS(1246), - [anon_sym_GT_EQ] = ACTIONS(1244), - [anon_sym_LT_EQ] = ACTIONS(1244), - [anon_sym_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT] = ACTIONS(1246), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1244), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_as] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_else] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), + [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_BANG] = ACTIONS(21), + [anon_sym_AMP] = ACTIONS(25), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(31), + [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(41), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(350), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(69), + [anon_sym_static] = ACTIONS(360), + [anon_sym_union] = ACTIONS(350), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(89), + [anon_sym_move] = ACTIONS(91), + [anon_sym_try] = ACTIONS(366), + [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(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), + [sym_self] = ACTIONS(107), + [sym_super] = ACTIONS(109), + [sym_crate] = ACTIONS(109), + [sym_metavariable] = ACTIONS(113), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, - [361] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1845), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(361), - [sym_block_comment] = STATE(361), + [359] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1864), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(359), + [sym_block_comment] = STATE(359), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57110,101 +56911,101 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [362] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1590), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(362), - [sym_block_comment] = STATE(362), - [sym_identifier] = ACTIONS(464), + [360] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1813), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(360), + [sym_block_comment] = STATE(360), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1041), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(494), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(498), - [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(502), - [anon_sym_move] = ACTIONS(504), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -57213,108 +57014,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [363] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1656), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(241), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(363), - [sym_block_comment] = STATE(363), - [sym_identifier] = ACTIONS(464), + [361] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1551), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(361), + [sym_block_comment] = STATE(361), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(1057), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(1057), - [anon_sym_BANG] = ACTIONS(1057), - [anon_sym_AMP] = ACTIONS(1059), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1210), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(472), + [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), - [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(474), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(476), - [anon_sym_static] = ACTIONS(478), - [anon_sym_union] = ACTIONS(474), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(480), - [anon_sym_move] = ACTIONS(482), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -57323,62 +57124,62 @@ 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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, - [364] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1482), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), - [sym_line_comment] = STATE(364), - [sym_block_comment] = STATE(364), + [362] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2808), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1866), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1393), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(233), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(362), + [sym_block_comment] = STATE(362), [sym_identifier] = ACTIONS(334), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), @@ -57406,7 +57207,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(25), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1053), + [anon_sym_DOT_DOT] = ACTIONS(31), [anon_sym_COLON_COLON] = ACTIONS(33), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), @@ -57440,537 +57241,757 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, + [363] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1572), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(363), + [sym_block_comment] = STATE(363), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, + [364] = { + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1560), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), + [sym_line_comment] = STATE(364), + [sym_block_comment] = STATE(364), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), + [anon_sym_PIPE] = ACTIONS(27), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), + [anon_sym_SQUOTE] = ACTIONS(37), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), + }, [365] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1764), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1822), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(365), [sym_block_comment] = STATE(365), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), + [anon_sym_try] = ACTIONS(366), + [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(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [366] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1723), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1712), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(366), [sym_block_comment] = STATE(366), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), + [anon_sym_try] = ACTIONS(366), + [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(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [367] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1722), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1566), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(367), [sym_block_comment] = STATE(367), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(494), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(496), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(498), + [anon_sym_static] = ACTIONS(500), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(502), + [anon_sym_move] = ACTIONS(504), + [anon_sym_try] = ACTIONS(366), + [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(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [368] = { - [sym_bracketed_type] = STATE(3504), - [sym_generic_function] = STATE(1695), - [sym_generic_type_with_turbofish] = STATE(2903), - [sym__expression_except_range] = STATE(1635), - [sym__expression] = STATE(1719), - [sym_macro_invocation] = STATE(1703), - [sym_scoped_identifier] = STATE(1558), - [sym_scoped_type_identifier_in_expression_position] = STATE(3234), - [sym_range_expression] = STATE(1698), - [sym_unary_expression] = STATE(1695), - [sym_try_expression] = STATE(1695), - [sym_reference_expression] = STATE(1695), - [sym_binary_expression] = STATE(1695), - [sym_assignment_expression] = STATE(1695), - [sym_compound_assignment_expr] = STATE(1695), - [sym_type_cast_expression] = STATE(1695), - [sym_return_expression] = STATE(1695), - [sym_yield_expression] = STATE(1695), - [sym_call_expression] = STATE(1695), - [sym_array_expression] = STATE(1695), - [sym_parenthesized_expression] = STATE(1695), - [sym_tuple_expression] = STATE(1695), - [sym_unit_expression] = STATE(1695), - [sym_struct_expression] = STATE(1695), - [sym_if_expression] = STATE(1695), - [sym_match_expression] = STATE(1695), - [sym_while_expression] = STATE(1695), - [sym_loop_expression] = STATE(1695), - [sym_for_expression] = STATE(1695), - [sym_const_block] = STATE(1695), - [sym_closure_expression] = STATE(1695), - [sym_closure_parameters] = STATE(224), - [sym_label] = STATE(3591), - [sym_break_expression] = STATE(1695), - [sym_continue_expression] = STATE(1695), - [sym_index_expression] = STATE(1695), - [sym_await_expression] = STATE(1695), - [sym_field_expression] = STATE(1634), - [sym_unsafe_block] = STATE(1695), - [sym_async_block] = STATE(1695), - [sym_try_block] = STATE(1695), - [sym_block] = STATE(1695), - [sym__literal] = STATE(1695), - [sym_string_literal] = STATE(1798), - [sym_raw_string_literal] = STATE(1798), - [sym_boolean_literal] = STATE(1798), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1251), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(234), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(368), [sym_block_comment] = STATE(368), - [sym_identifier] = ACTIONS(398), - [anon_sym_LPAREN] = ACTIONS(456), - [anon_sym_LBRACK] = ACTIONS(458), - [anon_sym_LBRACE] = ACTIONS(400), - [anon_sym_STAR] = ACTIONS(1009), - [anon_sym_u8] = ACTIONS(404), - [anon_sym_i8] = ACTIONS(404), - [anon_sym_u16] = ACTIONS(404), - [anon_sym_i16] = ACTIONS(404), - [anon_sym_u32] = ACTIONS(404), - [anon_sym_i32] = ACTIONS(404), - [anon_sym_u64] = ACTIONS(404), - [anon_sym_i64] = ACTIONS(404), - [anon_sym_u128] = ACTIONS(404), - [anon_sym_i128] = ACTIONS(404), - [anon_sym_isize] = ACTIONS(404), - [anon_sym_usize] = ACTIONS(404), - [anon_sym_f32] = ACTIONS(404), - [anon_sym_f64] = ACTIONS(404), - [anon_sym_bool] = ACTIONS(404), - [anon_sym_str] = ACTIONS(404), - [anon_sym_char] = ACTIONS(404), - [anon_sym_DASH] = ACTIONS(1009), - [anon_sym_BANG] = ACTIONS(1009), - [anon_sym_AMP] = ACTIONS(1011), + [sym_identifier] = ACTIONS(456), + [anon_sym_LPAREN] = ACTIONS(15), + [anon_sym_LBRACK] = ACTIONS(17), + [anon_sym_LBRACE] = ACTIONS(338), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(1037), - [anon_sym_COLON_COLON] = ACTIONS(408), + [anon_sym_DOT_DOT] = ACTIONS(1047), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), - [anon_sym_async] = ACTIONS(410), - [anon_sym_break] = ACTIONS(412), - [anon_sym_const] = ACTIONS(414), - [anon_sym_continue] = ACTIONS(416), - [anon_sym_default] = ACTIONS(418), - [anon_sym_for] = ACTIONS(420), - [anon_sym_if] = ACTIONS(422), - [anon_sym_loop] = ACTIONS(424), - [anon_sym_match] = ACTIONS(426), - [anon_sym_return] = ACTIONS(428), - [anon_sym_static] = ACTIONS(430), - [anon_sym_union] = ACTIONS(418), - [anon_sym_unsafe] = ACTIONS(432), - [anon_sym_while] = ACTIONS(434), - [anon_sym_yield] = ACTIONS(436), - [anon_sym_move] = ACTIONS(438), - [anon_sym_try] = ACTIONS(440), - [sym_integer_literal] = ACTIONS(442), - [aux_sym_string_literal_token1] = ACTIONS(444), - [sym_char_literal] = ACTIONS(442), - [anon_sym_true] = ACTIONS(446), - [anon_sym_false] = ACTIONS(446), + [anon_sym_async] = ACTIONS(346), + [anon_sym_break] = ACTIONS(464), + [anon_sym_const] = ACTIONS(348), + [anon_sym_continue] = ACTIONS(45), + [anon_sym_default] = ACTIONS(466), + [anon_sym_for] = ACTIONS(352), + [anon_sym_if] = ACTIONS(354), + [anon_sym_loop] = ACTIONS(356), + [anon_sym_match] = ACTIONS(358), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), + [anon_sym_unsafe] = ACTIONS(362), + [anon_sym_while] = ACTIONS(364), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), + [anon_sym_try] = ACTIONS(366), + [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(448), - [sym_super] = ACTIONS(450), - [sym_crate] = ACTIONS(450), - [sym_metavariable] = ACTIONS(452), - [sym__raw_string_literal_start] = ACTIONS(454), - [sym_float_literal] = ACTIONS(442), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), + [sym__raw_string_literal_start] = ACTIONS(115), + [sym_float_literal] = ACTIONS(95), }, [369] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2867), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1555), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1537), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), - [sym_closure_parameters] = STATE(229), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1563), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), + [sym_closure_parameters] = STATE(220), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(369), [sym_block_comment] = STATE(369), - [sym_identifier] = ACTIONS(464), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [anon_sym_STAR] = ACTIONS(975), - [anon_sym_u8] = ACTIONS(466), - [anon_sym_i8] = ACTIONS(466), - [anon_sym_u16] = ACTIONS(466), - [anon_sym_i16] = ACTIONS(466), - [anon_sym_u32] = ACTIONS(466), - [anon_sym_i32] = ACTIONS(466), - [anon_sym_u64] = ACTIONS(466), - [anon_sym_i64] = ACTIONS(466), - [anon_sym_u128] = ACTIONS(466), - [anon_sym_i128] = ACTIONS(466), - [anon_sym_isize] = ACTIONS(466), - [anon_sym_usize] = ACTIONS(466), - [anon_sym_f32] = ACTIONS(466), - [anon_sym_f64] = ACTIONS(466), - [anon_sym_bool] = ACTIONS(466), - [anon_sym_str] = ACTIONS(466), - [anon_sym_char] = ACTIONS(466), - [anon_sym_DASH] = ACTIONS(975), - [anon_sym_BANG] = ACTIONS(975), - [anon_sym_AMP] = ACTIONS(977), + [anon_sym_STAR] = ACTIONS(973), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(973), + [anon_sym_BANG] = ACTIONS(973), + [anon_sym_AMP] = ACTIONS(975), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(979), - [anon_sym_COLON_COLON] = ACTIONS(470), + [anon_sym_DOT_DOT] = ACTIONS(977), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), [anon_sym_break] = ACTIONS(494), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(496), - [anon_sym_default] = ACTIONS(474), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), [anon_sym_return] = ACTIONS(498), [anon_sym_static] = ACTIONS(500), - [anon_sym_union] = ACTIONS(474), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), [anon_sym_yield] = ACTIONS(502), @@ -57983,108 +58004,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(484), - [sym_super] = ACTIONS(486), - [sym_crate] = ACTIONS(486), - [sym_metavariable] = ACTIONS(488), + [sym_self] = ACTIONS(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [370] = { - [sym_bracketed_type] = STATE(3515), - [sym_generic_function] = STATE(1307), - [sym_generic_type_with_turbofish] = STATE(2770), - [sym__expression_except_range] = STATE(1070), - [sym__expression] = STATE(1866), - [sym_macro_invocation] = STATE(1350), - [sym_scoped_identifier] = STATE(1461), - [sym_scoped_type_identifier_in_expression_position] = STATE(3123), - [sym_range_expression] = STATE(1319), - [sym_unary_expression] = STATE(1307), - [sym_try_expression] = STATE(1307), - [sym_reference_expression] = STATE(1307), - [sym_binary_expression] = STATE(1307), - [sym_assignment_expression] = STATE(1307), - [sym_compound_assignment_expr] = STATE(1307), - [sym_type_cast_expression] = STATE(1307), - [sym_return_expression] = STATE(1307), - [sym_yield_expression] = STATE(1307), - [sym_call_expression] = STATE(1307), - [sym_array_expression] = STATE(1307), - [sym_parenthesized_expression] = STATE(1307), - [sym_tuple_expression] = STATE(1307), - [sym_unit_expression] = STATE(1307), - [sym_struct_expression] = STATE(1307), - [sym_if_expression] = STATE(1307), - [sym_match_expression] = STATE(1307), - [sym_while_expression] = STATE(1307), - [sym_loop_expression] = STATE(1307), - [sym_for_expression] = STATE(1307), - [sym_const_block] = STATE(1307), - [sym_closure_expression] = STATE(1307), + [sym_bracketed_type] = STATE(3495), + [sym_generic_function] = STATE(1192), + [sym_generic_type_with_turbofish] = STATE(2902), + [sym__expression_except_range] = STATE(1055), + [sym__expression] = STATE(1740), + [sym_macro_invocation] = STATE(1241), + [sym_scoped_identifier] = STATE(1535), + [sym_scoped_type_identifier_in_expression_position] = STATE(3216), + [sym_range_expression] = STATE(1215), + [sym_unary_expression] = STATE(1192), + [sym_try_expression] = STATE(1192), + [sym_reference_expression] = STATE(1192), + [sym_binary_expression] = STATE(1192), + [sym_assignment_expression] = STATE(1192), + [sym_compound_assignment_expr] = STATE(1192), + [sym_type_cast_expression] = STATE(1192), + [sym_return_expression] = STATE(1192), + [sym_yield_expression] = STATE(1192), + [sym_call_expression] = STATE(1192), + [sym_array_expression] = STATE(1192), + [sym_parenthesized_expression] = STATE(1192), + [sym_tuple_expression] = STATE(1192), + [sym_unit_expression] = STATE(1192), + [sym_struct_expression] = STATE(1192), + [sym_if_expression] = STATE(1192), + [sym_match_expression] = STATE(1192), + [sym_while_expression] = STATE(1192), + [sym_loop_expression] = STATE(1192), + [sym_for_expression] = STATE(1192), + [sym_const_block] = STATE(1192), + [sym_closure_expression] = STATE(1192), [sym_closure_parameters] = STATE(234), - [sym_label] = STATE(3541), - [sym_break_expression] = STATE(1307), - [sym_continue_expression] = STATE(1307), - [sym_index_expression] = STATE(1307), - [sym_await_expression] = STATE(1307), - [sym_field_expression] = STATE(1062), - [sym_unsafe_block] = STATE(1307), - [sym_async_block] = STATE(1307), - [sym_try_block] = STATE(1307), - [sym_block] = STATE(1307), - [sym__literal] = STATE(1307), - [sym_string_literal] = STATE(1214), - [sym_raw_string_literal] = STATE(1214), - [sym_boolean_literal] = STATE(1214), + [sym_label] = STATE(3535), + [sym_break_expression] = STATE(1192), + [sym_continue_expression] = STATE(1192), + [sym_index_expression] = STATE(1192), + [sym_await_expression] = STATE(1192), + [sym_field_expression] = STATE(1073), + [sym_unsafe_block] = STATE(1192), + [sym_async_block] = STATE(1192), + [sym_try_block] = STATE(1192), + [sym_block] = STATE(1192), + [sym__literal] = STATE(1192), + [sym_string_literal] = STATE(1462), + [sym_raw_string_literal] = STATE(1462), + [sym_boolean_literal] = STATE(1462), [sym_line_comment] = STATE(370), [sym_block_comment] = STATE(370), - [sym_identifier] = ACTIONS(334), + [sym_identifier] = ACTIONS(456), [anon_sym_LPAREN] = ACTIONS(15), [anon_sym_LBRACK] = ACTIONS(17), [anon_sym_LBRACE] = ACTIONS(338), - [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_BANG] = ACTIONS(21), - [anon_sym_AMP] = ACTIONS(25), + [anon_sym_STAR] = ACTIONS(1041), + [anon_sym_u8] = ACTIONS(458), + [anon_sym_i8] = ACTIONS(458), + [anon_sym_u16] = ACTIONS(458), + [anon_sym_i16] = ACTIONS(458), + [anon_sym_u32] = ACTIONS(458), + [anon_sym_i32] = ACTIONS(458), + [anon_sym_u64] = ACTIONS(458), + [anon_sym_i64] = ACTIONS(458), + [anon_sym_u128] = ACTIONS(458), + [anon_sym_i128] = ACTIONS(458), + [anon_sym_isize] = ACTIONS(458), + [anon_sym_usize] = ACTIONS(458), + [anon_sym_f32] = ACTIONS(458), + [anon_sym_f64] = ACTIONS(458), + [anon_sym_bool] = ACTIONS(458), + [anon_sym_str] = ACTIONS(458), + [anon_sym_char] = ACTIONS(458), + [anon_sym_DASH] = ACTIONS(1041), + [anon_sym_BANG] = ACTIONS(1041), + [anon_sym_AMP] = ACTIONS(1043), [anon_sym_PIPE] = ACTIONS(27), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT] = ACTIONS(31), - [anon_sym_COLON_COLON] = ACTIONS(33), + [anon_sym_DOT_DOT] = ACTIONS(1230), + [anon_sym_COLON_COLON] = ACTIONS(462), [anon_sym_SQUOTE] = ACTIONS(37), [anon_sym_async] = ACTIONS(346), - [anon_sym_break] = ACTIONS(41), + [anon_sym_break] = ACTIONS(464), [anon_sym_const] = ACTIONS(348), [anon_sym_continue] = ACTIONS(45), - [anon_sym_default] = ACTIONS(350), + [anon_sym_default] = ACTIONS(466), [anon_sym_for] = ACTIONS(352), [anon_sym_if] = ACTIONS(354), [anon_sym_loop] = ACTIONS(356), [anon_sym_match] = ACTIONS(358), - [anon_sym_return] = ACTIONS(69), - [anon_sym_static] = ACTIONS(360), - [anon_sym_union] = ACTIONS(350), + [anon_sym_return] = ACTIONS(468), + [anon_sym_static] = ACTIONS(470), + [anon_sym_union] = ACTIONS(466), [anon_sym_unsafe] = ACTIONS(362), [anon_sym_while] = ACTIONS(364), - [anon_sym_yield] = ACTIONS(89), - [anon_sym_move] = ACTIONS(91), + [anon_sym_yield] = ACTIONS(472), + [anon_sym_move] = ACTIONS(474), [anon_sym_try] = ACTIONS(366), [sym_integer_literal] = ACTIONS(95), [aux_sym_string_literal_token1] = ACTIONS(97), @@ -58093,354 +58114,285 @@ 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(476), + [sym_super] = ACTIONS(478), + [sym_crate] = ACTIONS(478), + [sym_metavariable] = ACTIONS(480), [sym__raw_string_literal_start] = ACTIONS(115), [sym_float_literal] = ACTIONS(95), }, [371] = { + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(2981), + [sym_variadic_parameter] = STATE(2981), + [sym_parameter] = STATE(2981), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2705), + [sym_bracketed_type] = STATE(3527), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3273), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2464), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(371), [sym_block_comment] = STATE(371), - [ts_builtin_sym_end] = ACTIONS(1248), - [sym_identifier] = ACTIONS(1250), - [anon_sym_SEMI] = ACTIONS(1248), - [anon_sym_macro_rules_BANG] = ACTIONS(1248), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_LBRACE] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(1248), - [anon_sym_u8] = ACTIONS(1250), - [anon_sym_i8] = ACTIONS(1250), - [anon_sym_u16] = ACTIONS(1250), - [anon_sym_i16] = ACTIONS(1250), - [anon_sym_u32] = ACTIONS(1250), - [anon_sym_i32] = ACTIONS(1250), - [anon_sym_u64] = ACTIONS(1250), - [anon_sym_i64] = ACTIONS(1250), - [anon_sym_u128] = ACTIONS(1250), - [anon_sym_i128] = ACTIONS(1250), - [anon_sym_isize] = ACTIONS(1250), - [anon_sym_usize] = ACTIONS(1250), - [anon_sym_f32] = ACTIONS(1250), - [anon_sym_f64] = ACTIONS(1250), - [anon_sym_bool] = ACTIONS(1250), - [anon_sym_str] = ACTIONS(1250), - [anon_sym_char] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1250), - [anon_sym_CARET] = ACTIONS(1250), - [anon_sym_BANG] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_LT_LT] = ACTIONS(1250), - [anon_sym_GT_GT] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), - [anon_sym_STAR_EQ] = ACTIONS(1248), - [anon_sym_SLASH_EQ] = ACTIONS(1248), - [anon_sym_PERCENT_EQ] = ACTIONS(1248), - [anon_sym_CARET_EQ] = ACTIONS(1248), - [anon_sym_AMP_EQ] = ACTIONS(1248), - [anon_sym_PIPE_EQ] = ACTIONS(1248), - [anon_sym_LT_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_GT_EQ] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym_DOT] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1248), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1248), - [anon_sym_COLON_COLON] = ACTIONS(1248), - [anon_sym_POUND] = ACTIONS(1248), - [anon_sym_SQUOTE] = ACTIONS(1250), - [anon_sym_as] = ACTIONS(1250), - [anon_sym_async] = ACTIONS(1250), - [anon_sym_break] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_continue] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_enum] = ACTIONS(1250), - [anon_sym_fn] = ACTIONS(1250), - [anon_sym_for] = ACTIONS(1250), - [anon_sym_if] = ACTIONS(1250), - [anon_sym_impl] = ACTIONS(1250), - [anon_sym_let] = ACTIONS(1250), - [anon_sym_loop] = ACTIONS(1250), - [anon_sym_match] = ACTIONS(1250), - [anon_sym_mod] = ACTIONS(1250), - [anon_sym_pub] = ACTIONS(1250), - [anon_sym_return] = ACTIONS(1250), - [anon_sym_static] = ACTIONS(1250), - [anon_sym_struct] = ACTIONS(1250), - [anon_sym_trait] = ACTIONS(1250), - [anon_sym_type] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_unsafe] = ACTIONS(1250), - [anon_sym_use] = ACTIONS(1250), - [anon_sym_while] = ACTIONS(1250), - [anon_sym_extern] = ACTIONS(1250), - [anon_sym_yield] = ACTIONS(1250), - [anon_sym_move] = ACTIONS(1250), - [anon_sym_try] = ACTIONS(1250), - [sym_integer_literal] = ACTIONS(1248), - [aux_sym_string_literal_token1] = ACTIONS(1248), - [sym_char_literal] = ACTIONS(1248), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1250), - [sym_super] = ACTIONS(1250), - [sym_crate] = ACTIONS(1250), - [sym_metavariable] = ACTIONS(1248), - [sym__raw_string_literal_start] = ACTIONS(1248), - [sym_float_literal] = ACTIONS(1248), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_RPAREN] = ACTIONS(1252), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1270), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COMMA] = ACTIONS(1276), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1312), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1316), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [372] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(2750), - [sym_variadic_parameter] = STATE(2750), - [sym_parameter] = STATE(2750), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2631), - [sym_bracketed_type] = STATE(3533), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3114), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2437), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2470), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), [sym_line_comment] = STATE(372), [sym_block_comment] = STATE(372), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1256), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COMMA] = ACTIONS(1280), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), + [ts_builtin_sym_end] = ACTIONS(1320), + [sym_identifier] = ACTIONS(1322), + [anon_sym_SEMI] = ACTIONS(1320), + [anon_sym_macro_rules_BANG] = ACTIONS(1320), + [anon_sym_LPAREN] = ACTIONS(1320), + [anon_sym_LBRACK] = ACTIONS(1320), + [anon_sym_LBRACE] = ACTIONS(1320), + [anon_sym_RBRACE] = ACTIONS(1320), + [anon_sym_PLUS] = ACTIONS(1322), + [anon_sym_STAR] = ACTIONS(1322), + [anon_sym_QMARK] = ACTIONS(1320), + [anon_sym_u8] = ACTIONS(1322), + [anon_sym_i8] = ACTIONS(1322), + [anon_sym_u16] = ACTIONS(1322), + [anon_sym_i16] = ACTIONS(1322), + [anon_sym_u32] = ACTIONS(1322), + [anon_sym_i32] = ACTIONS(1322), + [anon_sym_u64] = ACTIONS(1322), + [anon_sym_i64] = ACTIONS(1322), + [anon_sym_u128] = ACTIONS(1322), + [anon_sym_i128] = ACTIONS(1322), + [anon_sym_isize] = ACTIONS(1322), + [anon_sym_usize] = ACTIONS(1322), + [anon_sym_f32] = ACTIONS(1322), + [anon_sym_f64] = ACTIONS(1322), + [anon_sym_bool] = ACTIONS(1322), + [anon_sym_str] = ACTIONS(1322), + [anon_sym_char] = ACTIONS(1322), + [anon_sym_DASH] = ACTIONS(1322), + [anon_sym_SLASH] = ACTIONS(1322), + [anon_sym_PERCENT] = ACTIONS(1322), + [anon_sym_CARET] = ACTIONS(1322), + [anon_sym_BANG] = ACTIONS(1322), + [anon_sym_AMP] = ACTIONS(1322), + [anon_sym_PIPE] = ACTIONS(1322), + [anon_sym_AMP_AMP] = ACTIONS(1320), + [anon_sym_PIPE_PIPE] = ACTIONS(1320), + [anon_sym_LT_LT] = ACTIONS(1322), + [anon_sym_GT_GT] = ACTIONS(1322), + [anon_sym_PLUS_EQ] = ACTIONS(1320), + [anon_sym_DASH_EQ] = ACTIONS(1320), + [anon_sym_STAR_EQ] = ACTIONS(1320), + [anon_sym_SLASH_EQ] = ACTIONS(1320), + [anon_sym_PERCENT_EQ] = ACTIONS(1320), + [anon_sym_CARET_EQ] = ACTIONS(1320), + [anon_sym_AMP_EQ] = ACTIONS(1320), + [anon_sym_PIPE_EQ] = ACTIONS(1320), + [anon_sym_LT_LT_EQ] = ACTIONS(1320), + [anon_sym_GT_GT_EQ] = ACTIONS(1320), + [anon_sym_EQ] = ACTIONS(1322), + [anon_sym_EQ_EQ] = ACTIONS(1320), + [anon_sym_BANG_EQ] = ACTIONS(1320), + [anon_sym_GT] = ACTIONS(1322), + [anon_sym_LT] = ACTIONS(1322), + [anon_sym_GT_EQ] = ACTIONS(1320), + [anon_sym_LT_EQ] = ACTIONS(1320), + [anon_sym_DOT] = ACTIONS(1322), + [anon_sym_DOT_DOT] = ACTIONS(1322), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1320), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1320), + [anon_sym_COLON_COLON] = ACTIONS(1320), + [anon_sym_POUND] = ACTIONS(1320), + [anon_sym_SQUOTE] = ACTIONS(1322), + [anon_sym_as] = ACTIONS(1322), + [anon_sym_async] = ACTIONS(1322), + [anon_sym_break] = ACTIONS(1322), + [anon_sym_const] = ACTIONS(1322), + [anon_sym_continue] = ACTIONS(1322), + [anon_sym_default] = ACTIONS(1322), + [anon_sym_enum] = ACTIONS(1322), + [anon_sym_fn] = ACTIONS(1322), + [anon_sym_for] = ACTIONS(1322), + [anon_sym_if] = ACTIONS(1322), + [anon_sym_impl] = ACTIONS(1322), + [anon_sym_let] = ACTIONS(1322), + [anon_sym_loop] = ACTIONS(1322), + [anon_sym_match] = ACTIONS(1322), + [anon_sym_mod] = ACTIONS(1322), + [anon_sym_pub] = ACTIONS(1322), + [anon_sym_return] = ACTIONS(1322), + [anon_sym_static] = ACTIONS(1322), + [anon_sym_struct] = ACTIONS(1322), + [anon_sym_trait] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1322), + [anon_sym_union] = ACTIONS(1322), + [anon_sym_unsafe] = ACTIONS(1322), + [anon_sym_use] = ACTIONS(1322), + [anon_sym_while] = ACTIONS(1322), + [anon_sym_extern] = ACTIONS(1322), + [anon_sym_yield] = ACTIONS(1322), + [anon_sym_move] = ACTIONS(1322), + [anon_sym_try] = ACTIONS(1322), + [sym_integer_literal] = ACTIONS(1320), + [aux_sym_string_literal_token1] = ACTIONS(1320), + [sym_char_literal] = ACTIONS(1320), + [anon_sym_true] = ACTIONS(1322), + [anon_sym_false] = ACTIONS(1322), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1322), + [sym_super] = ACTIONS(1322), + [sym_crate] = ACTIONS(1322), [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1320), + [sym_float_literal] = ACTIONS(1320), }, [373] = { + [sym_attribute_item] = STATE(417), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(2798), + [sym_variadic_parameter] = STATE(2798), + [sym_parameter] = STATE(2798), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2610), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(373), [sym_block_comment] = STATE(373), - [ts_builtin_sym_end] = ACTIONS(1324), - [sym_identifier] = ACTIONS(1326), - [anon_sym_SEMI] = ACTIONS(1324), - [anon_sym_macro_rules_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_LBRACE] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1326), - [anon_sym_i8] = ACTIONS(1326), - [anon_sym_u16] = ACTIONS(1326), - [anon_sym_i16] = ACTIONS(1326), - [anon_sym_u32] = ACTIONS(1326), - [anon_sym_i32] = ACTIONS(1326), - [anon_sym_u64] = ACTIONS(1326), - [anon_sym_i64] = ACTIONS(1326), - [anon_sym_u128] = ACTIONS(1326), - [anon_sym_i128] = ACTIONS(1326), - [anon_sym_isize] = ACTIONS(1326), - [anon_sym_usize] = ACTIONS(1326), - [anon_sym_f32] = ACTIONS(1326), - [anon_sym_f64] = ACTIONS(1326), - [anon_sym_bool] = ACTIONS(1326), - [anon_sym_str] = ACTIONS(1326), - [anon_sym_char] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1326), - [anon_sym_BANG] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1324), - [anon_sym_DASH_EQ] = ACTIONS(1324), - [anon_sym_STAR_EQ] = ACTIONS(1324), - [anon_sym_SLASH_EQ] = ACTIONS(1324), - [anon_sym_PERCENT_EQ] = ACTIONS(1324), - [anon_sym_CARET_EQ] = ACTIONS(1324), - [anon_sym_AMP_EQ] = ACTIONS(1324), - [anon_sym_PIPE_EQ] = ACTIONS(1324), - [anon_sym_LT_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_GT_EQ] = ACTIONS(1324), - [anon_sym_EQ] = ACTIONS(1326), - [anon_sym_EQ_EQ] = ACTIONS(1324), - [anon_sym_BANG_EQ] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1324), - [anon_sym_DOT] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_SQUOTE] = ACTIONS(1326), - [anon_sym_as] = ACTIONS(1326), - [anon_sym_async] = ACTIONS(1326), - [anon_sym_break] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_continue] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_enum] = ACTIONS(1326), - [anon_sym_fn] = ACTIONS(1326), - [anon_sym_for] = ACTIONS(1326), - [anon_sym_if] = ACTIONS(1326), - [anon_sym_impl] = ACTIONS(1326), - [anon_sym_let] = ACTIONS(1326), - [anon_sym_loop] = ACTIONS(1326), - [anon_sym_match] = ACTIONS(1326), - [anon_sym_mod] = ACTIONS(1326), - [anon_sym_pub] = ACTIONS(1326), - [anon_sym_return] = ACTIONS(1326), - [anon_sym_static] = ACTIONS(1326), - [anon_sym_struct] = ACTIONS(1326), - [anon_sym_trait] = ACTIONS(1326), - [anon_sym_type] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_unsafe] = ACTIONS(1326), - [anon_sym_use] = ACTIONS(1326), - [anon_sym_while] = ACTIONS(1326), - [anon_sym_extern] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1326), - [anon_sym_move] = ACTIONS(1326), - [anon_sym_try] = ACTIONS(1326), - [sym_integer_literal] = ACTIONS(1324), - [aux_sym_string_literal_token1] = ACTIONS(1324), - [sym_char_literal] = ACTIONS(1324), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1326), - [sym_super] = ACTIONS(1326), - [sym_crate] = ACTIONS(1326), - [sym_metavariable] = ACTIONS(1324), - [sym__raw_string_literal_start] = ACTIONS(1324), - [sym_float_literal] = ACTIONS(1324), - }, - [374] = { - [sym_line_comment] = STATE(374), - [sym_block_comment] = STATE(374), - [ts_builtin_sym_end] = ACTIONS(1328), - [sym_identifier] = ACTIONS(1330), - [anon_sym_SEMI] = ACTIONS(1328), - [anon_sym_macro_rules_BANG] = ACTIONS(1328), - [anon_sym_LPAREN] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1328), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_RBRACE] = ACTIONS(1328), - [anon_sym_PLUS] = ACTIONS(1330), - [anon_sym_STAR] = ACTIONS(1330), - [anon_sym_QMARK] = ACTIONS(1328), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1328), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1330), [anon_sym_i8] = ACTIONS(1330), [anon_sym_u16] = ACTIONS(1330), @@ -58458,305 +58410,592 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1330), [anon_sym_str] = ACTIONS(1330), [anon_sym_char] = ACTIONS(1330), - [anon_sym_DASH] = ACTIONS(1330), - [anon_sym_SLASH] = ACTIONS(1330), - [anon_sym_PERCENT] = ACTIONS(1330), - [anon_sym_CARET] = ACTIONS(1330), - [anon_sym_BANG] = ACTIONS(1330), - [anon_sym_AMP] = ACTIONS(1330), - [anon_sym_PIPE] = ACTIONS(1330), - [anon_sym_AMP_AMP] = ACTIONS(1328), - [anon_sym_PIPE_PIPE] = ACTIONS(1328), - [anon_sym_LT_LT] = ACTIONS(1330), - [anon_sym_GT_GT] = ACTIONS(1330), - [anon_sym_PLUS_EQ] = ACTIONS(1328), - [anon_sym_DASH_EQ] = ACTIONS(1328), - [anon_sym_STAR_EQ] = ACTIONS(1328), - [anon_sym_SLASH_EQ] = ACTIONS(1328), - [anon_sym_PERCENT_EQ] = ACTIONS(1328), - [anon_sym_CARET_EQ] = ACTIONS(1328), - [anon_sym_AMP_EQ] = ACTIONS(1328), - [anon_sym_PIPE_EQ] = ACTIONS(1328), - [anon_sym_LT_LT_EQ] = ACTIONS(1328), - [anon_sym_GT_GT_EQ] = ACTIONS(1328), - [anon_sym_EQ] = ACTIONS(1330), - [anon_sym_EQ_EQ] = ACTIONS(1328), - [anon_sym_BANG_EQ] = ACTIONS(1328), - [anon_sym_GT] = ACTIONS(1330), - [anon_sym_LT] = ACTIONS(1330), - [anon_sym_GT_EQ] = ACTIONS(1328), - [anon_sym_LT_EQ] = ACTIONS(1328), - [anon_sym_DOT] = ACTIONS(1330), - [anon_sym_DOT_DOT] = ACTIONS(1330), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1328), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1328), - [anon_sym_COLON_COLON] = ACTIONS(1328), - [anon_sym_POUND] = ACTIONS(1328), - [anon_sym_SQUOTE] = ACTIONS(1330), - [anon_sym_as] = ACTIONS(1330), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_break] = ACTIONS(1330), - [anon_sym_const] = ACTIONS(1330), - [anon_sym_continue] = ACTIONS(1330), - [anon_sym_default] = ACTIONS(1330), - [anon_sym_enum] = ACTIONS(1330), - [anon_sym_fn] = ACTIONS(1330), - [anon_sym_for] = ACTIONS(1330), - [anon_sym_if] = ACTIONS(1330), - [anon_sym_impl] = ACTIONS(1330), - [anon_sym_let] = ACTIONS(1330), - [anon_sym_loop] = ACTIONS(1330), - [anon_sym_match] = ACTIONS(1330), - [anon_sym_mod] = ACTIONS(1330), - [anon_sym_pub] = ACTIONS(1330), - [anon_sym_return] = ACTIONS(1330), - [anon_sym_static] = ACTIONS(1330), - [anon_sym_struct] = ACTIONS(1330), - [anon_sym_trait] = ACTIONS(1330), - [anon_sym_type] = ACTIONS(1330), - [anon_sym_union] = ACTIONS(1330), - [anon_sym_unsafe] = ACTIONS(1330), - [anon_sym_use] = ACTIONS(1330), - [anon_sym_while] = ACTIONS(1330), - [anon_sym_extern] = ACTIONS(1330), - [anon_sym_yield] = ACTIONS(1330), - [anon_sym_move] = ACTIONS(1330), - [anon_sym_try] = ACTIONS(1330), - [sym_integer_literal] = ACTIONS(1328), - [aux_sym_string_literal_token1] = ACTIONS(1328), - [sym_char_literal] = ACTIONS(1328), - [anon_sym_true] = ACTIONS(1330), - [anon_sym_false] = ACTIONS(1330), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1330), - [sym_super] = ACTIONS(1330), - [sym_crate] = ACTIONS(1330), - [sym_metavariable] = ACTIONS(1328), - [sym__raw_string_literal_start] = ACTIONS(1328), - [sym_float_literal] = ACTIONS(1328), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1334), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COMMA] = ACTIONS(1336), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), + }, + [374] = { + [sym_line_comment] = STATE(374), + [sym_block_comment] = STATE(374), + [ts_builtin_sym_end] = ACTIONS(991), + [sym_identifier] = ACTIONS(989), + [anon_sym_SEMI] = ACTIONS(991), + [anon_sym_macro_rules_BANG] = ACTIONS(991), + [anon_sym_LPAREN] = ACTIONS(991), + [anon_sym_LBRACK] = ACTIONS(991), + [anon_sym_LBRACE] = ACTIONS(991), + [anon_sym_RBRACE] = ACTIONS(991), + [anon_sym_PLUS] = ACTIONS(989), + [anon_sym_STAR] = ACTIONS(989), + [anon_sym_QMARK] = ACTIONS(991), + [anon_sym_u8] = ACTIONS(989), + [anon_sym_i8] = ACTIONS(989), + [anon_sym_u16] = ACTIONS(989), + [anon_sym_i16] = ACTIONS(989), + [anon_sym_u32] = ACTIONS(989), + [anon_sym_i32] = ACTIONS(989), + [anon_sym_u64] = ACTIONS(989), + [anon_sym_i64] = ACTIONS(989), + [anon_sym_u128] = ACTIONS(989), + [anon_sym_i128] = ACTIONS(989), + [anon_sym_isize] = ACTIONS(989), + [anon_sym_usize] = ACTIONS(989), + [anon_sym_f32] = ACTIONS(989), + [anon_sym_f64] = ACTIONS(989), + [anon_sym_bool] = ACTIONS(989), + [anon_sym_str] = ACTIONS(989), + [anon_sym_char] = ACTIONS(989), + [anon_sym_DASH] = ACTIONS(989), + [anon_sym_SLASH] = ACTIONS(989), + [anon_sym_PERCENT] = ACTIONS(989), + [anon_sym_CARET] = ACTIONS(989), + [anon_sym_BANG] = ACTIONS(989), + [anon_sym_AMP] = ACTIONS(989), + [anon_sym_PIPE] = ACTIONS(989), + [anon_sym_AMP_AMP] = ACTIONS(991), + [anon_sym_PIPE_PIPE] = ACTIONS(991), + [anon_sym_LT_LT] = ACTIONS(989), + [anon_sym_GT_GT] = ACTIONS(989), + [anon_sym_PLUS_EQ] = ACTIONS(991), + [anon_sym_DASH_EQ] = ACTIONS(991), + [anon_sym_STAR_EQ] = ACTIONS(991), + [anon_sym_SLASH_EQ] = ACTIONS(991), + [anon_sym_PERCENT_EQ] = ACTIONS(991), + [anon_sym_CARET_EQ] = ACTIONS(991), + [anon_sym_AMP_EQ] = ACTIONS(991), + [anon_sym_PIPE_EQ] = ACTIONS(991), + [anon_sym_LT_LT_EQ] = ACTIONS(991), + [anon_sym_GT_GT_EQ] = ACTIONS(991), + [anon_sym_EQ] = ACTIONS(989), + [anon_sym_EQ_EQ] = ACTIONS(991), + [anon_sym_BANG_EQ] = ACTIONS(991), + [anon_sym_GT] = ACTIONS(989), + [anon_sym_LT] = ACTIONS(989), + [anon_sym_GT_EQ] = ACTIONS(991), + [anon_sym_LT_EQ] = ACTIONS(991), + [anon_sym_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT] = ACTIONS(989), + [anon_sym_DOT_DOT_DOT] = ACTIONS(991), + [anon_sym_DOT_DOT_EQ] = ACTIONS(991), + [anon_sym_COLON_COLON] = ACTIONS(991), + [anon_sym_POUND] = ACTIONS(991), + [anon_sym_SQUOTE] = ACTIONS(989), + [anon_sym_as] = ACTIONS(989), + [anon_sym_async] = ACTIONS(989), + [anon_sym_break] = ACTIONS(989), + [anon_sym_const] = ACTIONS(989), + [anon_sym_continue] = ACTIONS(989), + [anon_sym_default] = ACTIONS(989), + [anon_sym_enum] = ACTIONS(989), + [anon_sym_fn] = ACTIONS(989), + [anon_sym_for] = ACTIONS(989), + [anon_sym_if] = ACTIONS(989), + [anon_sym_impl] = ACTIONS(989), + [anon_sym_let] = ACTIONS(989), + [anon_sym_loop] = ACTIONS(989), + [anon_sym_match] = ACTIONS(989), + [anon_sym_mod] = ACTIONS(989), + [anon_sym_pub] = ACTIONS(989), + [anon_sym_return] = ACTIONS(989), + [anon_sym_static] = ACTIONS(989), + [anon_sym_struct] = ACTIONS(989), + [anon_sym_trait] = ACTIONS(989), + [anon_sym_type] = ACTIONS(989), + [anon_sym_union] = ACTIONS(989), + [anon_sym_unsafe] = ACTIONS(989), + [anon_sym_use] = ACTIONS(989), + [anon_sym_while] = ACTIONS(989), + [anon_sym_extern] = ACTIONS(989), + [anon_sym_yield] = ACTIONS(989), + [anon_sym_move] = ACTIONS(989), + [anon_sym_try] = ACTIONS(989), + [sym_integer_literal] = ACTIONS(991), + [aux_sym_string_literal_token1] = ACTIONS(991), + [sym_char_literal] = ACTIONS(991), + [anon_sym_true] = ACTIONS(989), + [anon_sym_false] = ACTIONS(989), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(989), + [sym_super] = ACTIONS(989), + [sym_crate] = ACTIONS(989), + [sym_metavariable] = ACTIONS(991), + [sym__raw_string_literal_start] = ACTIONS(991), + [sym_float_literal] = ACTIONS(991), }, [375] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(2750), - [sym_variadic_parameter] = STATE(2750), - [sym_parameter] = STATE(2750), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2631), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), [sym_line_comment] = STATE(375), [sym_block_comment] = STATE(375), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_RPAREN] = ACTIONS(1336), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1342), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COMMA] = ACTIONS(1344), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(987), + [sym_identifier] = ACTIONS(985), + [anon_sym_SEMI] = ACTIONS(987), + [anon_sym_macro_rules_BANG] = ACTIONS(987), + [anon_sym_LPAREN] = ACTIONS(987), + [anon_sym_LBRACK] = ACTIONS(987), + [anon_sym_LBRACE] = ACTIONS(987), + [anon_sym_RBRACE] = ACTIONS(987), + [anon_sym_PLUS] = ACTIONS(985), + [anon_sym_STAR] = ACTIONS(985), + [anon_sym_QMARK] = ACTIONS(987), + [anon_sym_u8] = ACTIONS(985), + [anon_sym_i8] = ACTIONS(985), + [anon_sym_u16] = ACTIONS(985), + [anon_sym_i16] = ACTIONS(985), + [anon_sym_u32] = ACTIONS(985), + [anon_sym_i32] = ACTIONS(985), + [anon_sym_u64] = ACTIONS(985), + [anon_sym_i64] = ACTIONS(985), + [anon_sym_u128] = ACTIONS(985), + [anon_sym_i128] = ACTIONS(985), + [anon_sym_isize] = ACTIONS(985), + [anon_sym_usize] = ACTIONS(985), + [anon_sym_f32] = ACTIONS(985), + [anon_sym_f64] = ACTIONS(985), + [anon_sym_bool] = ACTIONS(985), + [anon_sym_str] = ACTIONS(985), + [anon_sym_char] = ACTIONS(985), + [anon_sym_DASH] = ACTIONS(985), + [anon_sym_SLASH] = ACTIONS(985), + [anon_sym_PERCENT] = ACTIONS(985), + [anon_sym_CARET] = ACTIONS(985), + [anon_sym_BANG] = ACTIONS(985), + [anon_sym_AMP] = ACTIONS(985), + [anon_sym_PIPE] = ACTIONS(985), + [anon_sym_AMP_AMP] = ACTIONS(987), + [anon_sym_PIPE_PIPE] = ACTIONS(987), + [anon_sym_LT_LT] = ACTIONS(985), + [anon_sym_GT_GT] = ACTIONS(985), + [anon_sym_PLUS_EQ] = ACTIONS(987), + [anon_sym_DASH_EQ] = ACTIONS(987), + [anon_sym_STAR_EQ] = ACTIONS(987), + [anon_sym_SLASH_EQ] = ACTIONS(987), + [anon_sym_PERCENT_EQ] = ACTIONS(987), + [anon_sym_CARET_EQ] = ACTIONS(987), + [anon_sym_AMP_EQ] = ACTIONS(987), + [anon_sym_PIPE_EQ] = ACTIONS(987), + [anon_sym_LT_LT_EQ] = ACTIONS(987), + [anon_sym_GT_GT_EQ] = ACTIONS(987), + [anon_sym_EQ] = ACTIONS(985), + [anon_sym_EQ_EQ] = ACTIONS(987), + [anon_sym_BANG_EQ] = ACTIONS(987), + [anon_sym_GT] = ACTIONS(985), + [anon_sym_LT] = ACTIONS(985), + [anon_sym_GT_EQ] = ACTIONS(987), + [anon_sym_LT_EQ] = ACTIONS(987), + [anon_sym_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT] = ACTIONS(985), + [anon_sym_DOT_DOT_DOT] = ACTIONS(987), + [anon_sym_DOT_DOT_EQ] = ACTIONS(987), + [anon_sym_COLON_COLON] = ACTIONS(987), + [anon_sym_POUND] = ACTIONS(987), + [anon_sym_SQUOTE] = ACTIONS(985), + [anon_sym_as] = ACTIONS(985), + [anon_sym_async] = ACTIONS(985), + [anon_sym_break] = ACTIONS(985), + [anon_sym_const] = ACTIONS(985), + [anon_sym_continue] = ACTIONS(985), + [anon_sym_default] = ACTIONS(985), + [anon_sym_enum] = ACTIONS(985), + [anon_sym_fn] = ACTIONS(985), + [anon_sym_for] = ACTIONS(985), + [anon_sym_if] = ACTIONS(985), + [anon_sym_impl] = ACTIONS(985), + [anon_sym_let] = ACTIONS(985), + [anon_sym_loop] = ACTIONS(985), + [anon_sym_match] = ACTIONS(985), + [anon_sym_mod] = ACTIONS(985), + [anon_sym_pub] = ACTIONS(985), + [anon_sym_return] = ACTIONS(985), + [anon_sym_static] = ACTIONS(985), + [anon_sym_struct] = ACTIONS(985), + [anon_sym_trait] = ACTIONS(985), + [anon_sym_type] = ACTIONS(985), + [anon_sym_union] = ACTIONS(985), + [anon_sym_unsafe] = ACTIONS(985), + [anon_sym_use] = ACTIONS(985), + [anon_sym_while] = ACTIONS(985), + [anon_sym_extern] = ACTIONS(985), + [anon_sym_yield] = ACTIONS(985), + [anon_sym_move] = ACTIONS(985), + [anon_sym_try] = ACTIONS(985), + [sym_integer_literal] = ACTIONS(987), + [aux_sym_string_literal_token1] = ACTIONS(987), + [sym_char_literal] = ACTIONS(987), + [anon_sym_true] = ACTIONS(985), + [anon_sym_false] = ACTIONS(985), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(985), + [sym_super] = ACTIONS(985), + [sym_crate] = ACTIONS(985), + [sym_metavariable] = ACTIONS(987), + [sym__raw_string_literal_start] = ACTIONS(987), + [sym_float_literal] = ACTIONS(987), }, [376] = { [sym_line_comment] = STATE(376), [sym_block_comment] = STATE(376), - [ts_builtin_sym_end] = ACTIONS(1358), - [sym_identifier] = ACTIONS(1360), - [anon_sym_SEMI] = ACTIONS(1358), - [anon_sym_macro_rules_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_LBRACE] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1360), - [anon_sym_i8] = ACTIONS(1360), - [anon_sym_u16] = ACTIONS(1360), - [anon_sym_i16] = ACTIONS(1360), - [anon_sym_u32] = ACTIONS(1360), - [anon_sym_i32] = ACTIONS(1360), - [anon_sym_u64] = ACTIONS(1360), - [anon_sym_i64] = ACTIONS(1360), - [anon_sym_u128] = ACTIONS(1360), - [anon_sym_i128] = ACTIONS(1360), - [anon_sym_isize] = ACTIONS(1360), - [anon_sym_usize] = ACTIONS(1360), - [anon_sym_f32] = ACTIONS(1360), - [anon_sym_f64] = ACTIONS(1360), - [anon_sym_bool] = ACTIONS(1360), - [anon_sym_str] = ACTIONS(1360), - [anon_sym_char] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1360), - [anon_sym_PERCENT] = ACTIONS(1360), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_BANG] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1360), - [anon_sym_GT_GT] = ACTIONS(1360), - [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_CARET_EQ] = ACTIONS(1358), - [anon_sym_AMP_EQ] = ACTIONS(1358), - [anon_sym_PIPE_EQ] = ACTIONS(1358), - [anon_sym_LT_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_GT_EQ] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1360), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_DOT_DOT] = ACTIONS(1360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_SQUOTE] = ACTIONS(1360), - [anon_sym_as] = ACTIONS(1360), - [anon_sym_async] = ACTIONS(1360), - [anon_sym_break] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_continue] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_enum] = ACTIONS(1360), - [anon_sym_fn] = ACTIONS(1360), - [anon_sym_for] = ACTIONS(1360), - [anon_sym_if] = ACTIONS(1360), - [anon_sym_impl] = ACTIONS(1360), - [anon_sym_let] = ACTIONS(1360), - [anon_sym_loop] = ACTIONS(1360), - [anon_sym_match] = ACTIONS(1360), - [anon_sym_mod] = ACTIONS(1360), - [anon_sym_pub] = ACTIONS(1360), - [anon_sym_return] = ACTIONS(1360), - [anon_sym_static] = ACTIONS(1360), - [anon_sym_struct] = ACTIONS(1360), - [anon_sym_trait] = ACTIONS(1360), - [anon_sym_type] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_unsafe] = ACTIONS(1360), - [anon_sym_use] = ACTIONS(1360), - [anon_sym_while] = ACTIONS(1360), - [anon_sym_extern] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1360), - [anon_sym_move] = ACTIONS(1360), - [anon_sym_try] = ACTIONS(1360), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1358), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1360), - [sym_super] = ACTIONS(1360), - [sym_crate] = ACTIONS(1360), - [sym_metavariable] = ACTIONS(1358), - [sym__raw_string_literal_start] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), + [ts_builtin_sym_end] = ACTIONS(1350), + [sym_identifier] = ACTIONS(1352), + [anon_sym_SEMI] = ACTIONS(1350), + [anon_sym_macro_rules_BANG] = ACTIONS(1350), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_LBRACE] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_u8] = ACTIONS(1352), + [anon_sym_i8] = ACTIONS(1352), + [anon_sym_u16] = ACTIONS(1352), + [anon_sym_i16] = ACTIONS(1352), + [anon_sym_u32] = ACTIONS(1352), + [anon_sym_i32] = ACTIONS(1352), + [anon_sym_u64] = ACTIONS(1352), + [anon_sym_i64] = ACTIONS(1352), + [anon_sym_u128] = ACTIONS(1352), + [anon_sym_i128] = ACTIONS(1352), + [anon_sym_isize] = ACTIONS(1352), + [anon_sym_usize] = ACTIONS(1352), + [anon_sym_f32] = ACTIONS(1352), + [anon_sym_f64] = ACTIONS(1352), + [anon_sym_bool] = ACTIONS(1352), + [anon_sym_str] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_SLASH] = ACTIONS(1352), + [anon_sym_PERCENT] = ACTIONS(1352), + [anon_sym_CARET] = ACTIONS(1352), + [anon_sym_BANG] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1350), + [anon_sym_LT_LT] = ACTIONS(1352), + [anon_sym_GT_GT] = ACTIONS(1352), + [anon_sym_PLUS_EQ] = ACTIONS(1350), + [anon_sym_DASH_EQ] = ACTIONS(1350), + [anon_sym_STAR_EQ] = ACTIONS(1350), + [anon_sym_SLASH_EQ] = ACTIONS(1350), + [anon_sym_PERCENT_EQ] = ACTIONS(1350), + [anon_sym_CARET_EQ] = ACTIONS(1350), + [anon_sym_AMP_EQ] = ACTIONS(1350), + [anon_sym_PIPE_EQ] = ACTIONS(1350), + [anon_sym_LT_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_GT_EQ] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_EQ_EQ] = ACTIONS(1350), + [anon_sym_BANG_EQ] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1350), + [anon_sym_LT_EQ] = ACTIONS(1350), + [anon_sym_DOT] = ACTIONS(1352), + [anon_sym_DOT_DOT] = ACTIONS(1352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1350), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), + [anon_sym_COLON_COLON] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_SQUOTE] = ACTIONS(1352), + [anon_sym_as] = ACTIONS(1352), + [anon_sym_async] = ACTIONS(1352), + [anon_sym_break] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_continue] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_enum] = ACTIONS(1352), + [anon_sym_fn] = ACTIONS(1352), + [anon_sym_for] = ACTIONS(1352), + [anon_sym_if] = ACTIONS(1352), + [anon_sym_impl] = ACTIONS(1352), + [anon_sym_let] = ACTIONS(1352), + [anon_sym_loop] = ACTIONS(1352), + [anon_sym_match] = ACTIONS(1352), + [anon_sym_mod] = ACTIONS(1352), + [anon_sym_pub] = ACTIONS(1352), + [anon_sym_return] = ACTIONS(1352), + [anon_sym_static] = ACTIONS(1352), + [anon_sym_struct] = ACTIONS(1352), + [anon_sym_trait] = ACTIONS(1352), + [anon_sym_type] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_unsafe] = ACTIONS(1352), + [anon_sym_use] = ACTIONS(1352), + [anon_sym_while] = ACTIONS(1352), + [anon_sym_extern] = ACTIONS(1352), + [anon_sym_yield] = ACTIONS(1352), + [anon_sym_move] = ACTIONS(1352), + [anon_sym_try] = ACTIONS(1352), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1350), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1352), + [anon_sym_false] = ACTIONS(1352), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1352), + [sym_super] = ACTIONS(1352), + [sym_crate] = ACTIONS(1352), + [sym_metavariable] = ACTIONS(1350), + [sym__raw_string_literal_start] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), }, [377] = { [sym_line_comment] = STATE(377), [sym_block_comment] = STATE(377), + [ts_builtin_sym_end] = ACTIONS(1354), + [sym_identifier] = ACTIONS(1356), + [anon_sym_SEMI] = ACTIONS(1354), + [anon_sym_macro_rules_BANG] = ACTIONS(1354), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_LBRACE] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1354), + [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_DASH] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym_BANG] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1354), + [anon_sym_DASH_EQ] = ACTIONS(1354), + [anon_sym_STAR_EQ] = ACTIONS(1354), + [anon_sym_SLASH_EQ] = ACTIONS(1354), + [anon_sym_PERCENT_EQ] = ACTIONS(1354), + [anon_sym_CARET_EQ] = ACTIONS(1354), + [anon_sym_AMP_EQ] = ACTIONS(1354), + [anon_sym_PIPE_EQ] = ACTIONS(1354), + [anon_sym_LT_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_DOT_DOT] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), + [anon_sym_COLON_COLON] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1354), + [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_enum] = ACTIONS(1356), + [anon_sym_fn] = ACTIONS(1356), + [anon_sym_for] = ACTIONS(1356), + [anon_sym_if] = ACTIONS(1356), + [anon_sym_impl] = ACTIONS(1356), + [anon_sym_let] = ACTIONS(1356), + [anon_sym_loop] = ACTIONS(1356), + [anon_sym_match] = ACTIONS(1356), + [anon_sym_mod] = ACTIONS(1356), + [anon_sym_pub] = ACTIONS(1356), + [anon_sym_return] = ACTIONS(1356), + [anon_sym_static] = ACTIONS(1356), + [anon_sym_struct] = ACTIONS(1356), + [anon_sym_trait] = ACTIONS(1356), + [anon_sym_type] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_unsafe] = ACTIONS(1356), + [anon_sym_use] = ACTIONS(1356), + [anon_sym_while] = ACTIONS(1356), + [anon_sym_extern] = ACTIONS(1356), + [anon_sym_yield] = ACTIONS(1356), + [anon_sym_move] = ACTIONS(1356), + [anon_sym_try] = ACTIONS(1356), + [sym_integer_literal] = ACTIONS(1354), + [aux_sym_string_literal_token1] = ACTIONS(1354), + [sym_char_literal] = ACTIONS(1354), + [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(1354), + [sym__raw_string_literal_start] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1354), + }, + [378] = { + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(2981), + [sym_variadic_parameter] = STATE(2981), + [sym_parameter] = STATE(2981), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2705), + [sym_bracketed_type] = STATE(3527), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3273), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2464), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(378), + [sym_block_comment] = STATE(378), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_RPAREN] = ACTIONS(1358), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1270), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COMMA] = ACTIONS(1360), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1312), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1316), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), + }, + [379] = { + [sym_line_comment] = STATE(379), + [sym_block_comment] = STATE(379), [ts_builtin_sym_end] = ACTIONS(1362), [sym_identifier] = ACTIONS(1364), [anon_sym_SEMI] = ACTIONS(1362), @@ -58863,9 +59102,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1362), [sym_float_literal] = ACTIONS(1362), }, - [378] = { - [sym_line_comment] = STATE(378), - [sym_block_comment] = STATE(378), + [380] = { + [sym_line_comment] = STATE(380), + [sym_block_comment] = STATE(380), [ts_builtin_sym_end] = ACTIONS(1366), [sym_identifier] = ACTIONS(1368), [anon_sym_SEMI] = ACTIONS(1366), @@ -58972,118 +59211,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1366), [sym_float_literal] = ACTIONS(1366), }, - [379] = { - [sym_line_comment] = STATE(379), - [sym_block_comment] = STATE(379), - [ts_builtin_sym_end] = ACTIONS(999), - [sym_identifier] = ACTIONS(997), - [anon_sym_SEMI] = ACTIONS(999), - [anon_sym_macro_rules_BANG] = ACTIONS(999), - [anon_sym_LPAREN] = ACTIONS(999), - [anon_sym_LBRACK] = ACTIONS(999), - [anon_sym_LBRACE] = ACTIONS(999), - [anon_sym_RBRACE] = ACTIONS(999), - [anon_sym_PLUS] = ACTIONS(997), - [anon_sym_STAR] = ACTIONS(997), - [anon_sym_QMARK] = ACTIONS(999), - [anon_sym_u8] = ACTIONS(997), - [anon_sym_i8] = ACTIONS(997), - [anon_sym_u16] = ACTIONS(997), - [anon_sym_i16] = ACTIONS(997), - [anon_sym_u32] = ACTIONS(997), - [anon_sym_i32] = ACTIONS(997), - [anon_sym_u64] = ACTIONS(997), - [anon_sym_i64] = ACTIONS(997), - [anon_sym_u128] = ACTIONS(997), - [anon_sym_i128] = ACTIONS(997), - [anon_sym_isize] = ACTIONS(997), - [anon_sym_usize] = ACTIONS(997), - [anon_sym_f32] = ACTIONS(997), - [anon_sym_f64] = ACTIONS(997), - [anon_sym_bool] = ACTIONS(997), - [anon_sym_str] = ACTIONS(997), - [anon_sym_char] = ACTIONS(997), - [anon_sym_DASH] = ACTIONS(997), - [anon_sym_SLASH] = ACTIONS(997), - [anon_sym_PERCENT] = ACTIONS(997), - [anon_sym_CARET] = ACTIONS(997), - [anon_sym_BANG] = ACTIONS(997), - [anon_sym_AMP] = ACTIONS(997), - [anon_sym_PIPE] = ACTIONS(997), - [anon_sym_AMP_AMP] = ACTIONS(999), - [anon_sym_PIPE_PIPE] = ACTIONS(999), - [anon_sym_LT_LT] = ACTIONS(997), - [anon_sym_GT_GT] = ACTIONS(997), - [anon_sym_PLUS_EQ] = ACTIONS(999), - [anon_sym_DASH_EQ] = ACTIONS(999), - [anon_sym_STAR_EQ] = ACTIONS(999), - [anon_sym_SLASH_EQ] = ACTIONS(999), - [anon_sym_PERCENT_EQ] = ACTIONS(999), - [anon_sym_CARET_EQ] = ACTIONS(999), - [anon_sym_AMP_EQ] = ACTIONS(999), - [anon_sym_PIPE_EQ] = ACTIONS(999), - [anon_sym_LT_LT_EQ] = ACTIONS(999), - [anon_sym_GT_GT_EQ] = ACTIONS(999), - [anon_sym_EQ] = ACTIONS(997), - [anon_sym_EQ_EQ] = ACTIONS(999), - [anon_sym_BANG_EQ] = ACTIONS(999), - [anon_sym_GT] = ACTIONS(997), - [anon_sym_LT] = ACTIONS(997), - [anon_sym_GT_EQ] = ACTIONS(999), - [anon_sym_LT_EQ] = ACTIONS(999), - [anon_sym_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT] = ACTIONS(997), - [anon_sym_DOT_DOT_DOT] = ACTIONS(999), - [anon_sym_DOT_DOT_EQ] = ACTIONS(999), - [anon_sym_COLON_COLON] = ACTIONS(999), - [anon_sym_POUND] = ACTIONS(999), - [anon_sym_SQUOTE] = ACTIONS(997), - [anon_sym_as] = ACTIONS(997), - [anon_sym_async] = ACTIONS(997), - [anon_sym_break] = ACTIONS(997), - [anon_sym_const] = ACTIONS(997), - [anon_sym_continue] = ACTIONS(997), - [anon_sym_default] = ACTIONS(997), - [anon_sym_enum] = ACTIONS(997), - [anon_sym_fn] = ACTIONS(997), - [anon_sym_for] = ACTIONS(997), - [anon_sym_if] = ACTIONS(997), - [anon_sym_impl] = ACTIONS(997), - [anon_sym_let] = ACTIONS(997), - [anon_sym_loop] = ACTIONS(997), - [anon_sym_match] = ACTIONS(997), - [anon_sym_mod] = ACTIONS(997), - [anon_sym_pub] = ACTIONS(997), - [anon_sym_return] = ACTIONS(997), - [anon_sym_static] = ACTIONS(997), - [anon_sym_struct] = ACTIONS(997), - [anon_sym_trait] = ACTIONS(997), - [anon_sym_type] = ACTIONS(997), - [anon_sym_union] = ACTIONS(997), - [anon_sym_unsafe] = ACTIONS(997), - [anon_sym_use] = ACTIONS(997), - [anon_sym_while] = ACTIONS(997), - [anon_sym_extern] = ACTIONS(997), - [anon_sym_yield] = ACTIONS(997), - [anon_sym_move] = ACTIONS(997), - [anon_sym_try] = ACTIONS(997), - [sym_integer_literal] = ACTIONS(999), - [aux_sym_string_literal_token1] = ACTIONS(999), - [sym_char_literal] = ACTIONS(999), - [anon_sym_true] = ACTIONS(997), - [anon_sym_false] = ACTIONS(997), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(997), - [sym_super] = ACTIONS(997), - [sym_crate] = ACTIONS(997), - [sym_metavariable] = ACTIONS(999), - [sym__raw_string_literal_start] = ACTIONS(999), - [sym_float_literal] = ACTIONS(999), - }, - [380] = { - [sym_line_comment] = STATE(380), - [sym_block_comment] = STATE(380), + [381] = { + [sym_line_comment] = STATE(381), + [sym_block_comment] = STATE(381), [ts_builtin_sym_end] = ACTIONS(1370), [sym_identifier] = ACTIONS(1372), [anon_sym_SEMI] = ACTIONS(1370), @@ -59190,9 +59320,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1370), [sym_float_literal] = ACTIONS(1370), }, - [381] = { - [sym_line_comment] = STATE(381), - [sym_block_comment] = STATE(381), + [382] = { + [sym_line_comment] = STATE(382), + [sym_block_comment] = STATE(382), [ts_builtin_sym_end] = ACTIONS(1374), [sym_identifier] = ACTIONS(1376), [anon_sym_SEMI] = ACTIONS(1374), @@ -59299,266 +59429,484 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1374), [sym_float_literal] = ACTIONS(1374), }, - [382] = { - [sym_attribute_item] = STATE(417), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(2791), - [sym_variadic_parameter] = STATE(2791), - [sym_parameter] = STATE(2791), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2682), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(382), - [sym_block_comment] = STATE(382), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_RPAREN] = ACTIONS(1378), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1380), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COMMA] = ACTIONS(1382), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, [383] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(2750), - [sym_variadic_parameter] = STATE(2750), - [sym_parameter] = STATE(2750), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2631), - [sym_bracketed_type] = STATE(3533), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3114), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2437), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2470), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), [sym_line_comment] = STATE(383), [sym_block_comment] = STATE(383), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1384), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COMMA] = ACTIONS(1386), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1378), + [sym_identifier] = ACTIONS(1380), + [anon_sym_SEMI] = ACTIONS(1378), + [anon_sym_macro_rules_BANG] = ACTIONS(1378), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_QMARK] = ACTIONS(1378), + [anon_sym_u8] = ACTIONS(1380), + [anon_sym_i8] = ACTIONS(1380), + [anon_sym_u16] = ACTIONS(1380), + [anon_sym_i16] = ACTIONS(1380), + [anon_sym_u32] = ACTIONS(1380), + [anon_sym_i32] = ACTIONS(1380), + [anon_sym_u64] = ACTIONS(1380), + [anon_sym_i64] = ACTIONS(1380), + [anon_sym_u128] = ACTIONS(1380), + [anon_sym_i128] = ACTIONS(1380), + [anon_sym_isize] = ACTIONS(1380), + [anon_sym_usize] = ACTIONS(1380), + [anon_sym_f32] = ACTIONS(1380), + [anon_sym_f64] = ACTIONS(1380), + [anon_sym_bool] = ACTIONS(1380), + [anon_sym_str] = ACTIONS(1380), + [anon_sym_char] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(1380), + [anon_sym_PERCENT] = ACTIONS(1380), + [anon_sym_CARET] = ACTIONS(1380), + [anon_sym_BANG] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1380), + [anon_sym_AMP_AMP] = ACTIONS(1378), + [anon_sym_PIPE_PIPE] = ACTIONS(1378), + [anon_sym_LT_LT] = ACTIONS(1380), + [anon_sym_GT_GT] = ACTIONS(1380), + [anon_sym_PLUS_EQ] = ACTIONS(1378), + [anon_sym_DASH_EQ] = ACTIONS(1378), + [anon_sym_STAR_EQ] = ACTIONS(1378), + [anon_sym_SLASH_EQ] = ACTIONS(1378), + [anon_sym_PERCENT_EQ] = ACTIONS(1378), + [anon_sym_CARET_EQ] = ACTIONS(1378), + [anon_sym_AMP_EQ] = ACTIONS(1378), + [anon_sym_PIPE_EQ] = ACTIONS(1378), + [anon_sym_LT_LT_EQ] = ACTIONS(1378), + [anon_sym_GT_GT_EQ] = ACTIONS(1378), + [anon_sym_EQ] = ACTIONS(1380), + [anon_sym_EQ_EQ] = ACTIONS(1378), + [anon_sym_BANG_EQ] = ACTIONS(1378), + [anon_sym_GT] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_GT_EQ] = ACTIONS(1378), + [anon_sym_LT_EQ] = ACTIONS(1378), + [anon_sym_DOT] = ACTIONS(1380), + [anon_sym_DOT_DOT] = ACTIONS(1380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), + [anon_sym_COLON_COLON] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_SQUOTE] = ACTIONS(1380), + [anon_sym_as] = ACTIONS(1380), + [anon_sym_async] = ACTIONS(1380), + [anon_sym_break] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_continue] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_enum] = ACTIONS(1380), + [anon_sym_fn] = ACTIONS(1380), + [anon_sym_for] = ACTIONS(1380), + [anon_sym_if] = ACTIONS(1380), + [anon_sym_impl] = ACTIONS(1380), + [anon_sym_let] = ACTIONS(1380), + [anon_sym_loop] = ACTIONS(1380), + [anon_sym_match] = ACTIONS(1380), + [anon_sym_mod] = ACTIONS(1380), + [anon_sym_pub] = ACTIONS(1380), + [anon_sym_return] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_struct] = ACTIONS(1380), + [anon_sym_trait] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_unsafe] = ACTIONS(1380), + [anon_sym_use] = ACTIONS(1380), + [anon_sym_while] = ACTIONS(1380), + [anon_sym_extern] = ACTIONS(1380), + [anon_sym_yield] = ACTIONS(1380), + [anon_sym_move] = ACTIONS(1380), + [anon_sym_try] = ACTIONS(1380), + [sym_integer_literal] = ACTIONS(1378), + [aux_sym_string_literal_token1] = ACTIONS(1378), + [sym_char_literal] = ACTIONS(1378), + [anon_sym_true] = ACTIONS(1380), + [anon_sym_false] = ACTIONS(1380), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1380), + [sym_super] = ACTIONS(1380), + [sym_crate] = ACTIONS(1380), + [sym_metavariable] = ACTIONS(1378), + [sym__raw_string_literal_start] = ACTIONS(1378), + [sym_float_literal] = ACTIONS(1378), }, [384] = { [sym_line_comment] = STATE(384), [sym_block_comment] = STATE(384), - [ts_builtin_sym_end] = ACTIONS(1388), - [sym_identifier] = ACTIONS(1390), - [anon_sym_SEMI] = ACTIONS(1388), - [anon_sym_macro_rules_BANG] = ACTIONS(1388), - [anon_sym_LPAREN] = ACTIONS(1388), - [anon_sym_LBRACK] = ACTIONS(1388), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_RBRACE] = ACTIONS(1388), + [ts_builtin_sym_end] = ACTIONS(1382), + [sym_identifier] = ACTIONS(1384), + [anon_sym_SEMI] = ACTIONS(1382), + [anon_sym_macro_rules_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_QMARK] = ACTIONS(1382), + [anon_sym_u8] = ACTIONS(1384), + [anon_sym_i8] = ACTIONS(1384), + [anon_sym_u16] = ACTIONS(1384), + [anon_sym_i16] = ACTIONS(1384), + [anon_sym_u32] = ACTIONS(1384), + [anon_sym_i32] = ACTIONS(1384), + [anon_sym_u64] = ACTIONS(1384), + [anon_sym_i64] = ACTIONS(1384), + [anon_sym_u128] = ACTIONS(1384), + [anon_sym_i128] = ACTIONS(1384), + [anon_sym_isize] = ACTIONS(1384), + [anon_sym_usize] = ACTIONS(1384), + [anon_sym_f32] = ACTIONS(1384), + [anon_sym_f64] = ACTIONS(1384), + [anon_sym_bool] = ACTIONS(1384), + [anon_sym_str] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_BANG] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1382), + [anon_sym_PIPE_PIPE] = ACTIONS(1382), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1384), + [anon_sym_PLUS_EQ] = ACTIONS(1382), + [anon_sym_DASH_EQ] = ACTIONS(1382), + [anon_sym_STAR_EQ] = ACTIONS(1382), + [anon_sym_SLASH_EQ] = ACTIONS(1382), + [anon_sym_PERCENT_EQ] = ACTIONS(1382), + [anon_sym_CARET_EQ] = ACTIONS(1382), + [anon_sym_AMP_EQ] = ACTIONS(1382), + [anon_sym_PIPE_EQ] = ACTIONS(1382), + [anon_sym_LT_LT_EQ] = ACTIONS(1382), + [anon_sym_GT_GT_EQ] = ACTIONS(1382), + [anon_sym_EQ] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1382), + [anon_sym_BANG_EQ] = ACTIONS(1382), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1382), + [anon_sym_LT_EQ] = ACTIONS(1382), + [anon_sym_DOT] = ACTIONS(1384), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1382), + [anon_sym_COLON_COLON] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_SQUOTE] = ACTIONS(1384), + [anon_sym_as] = ACTIONS(1384), + [anon_sym_async] = ACTIONS(1384), + [anon_sym_break] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_continue] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_enum] = ACTIONS(1384), + [anon_sym_fn] = ACTIONS(1384), + [anon_sym_for] = ACTIONS(1384), + [anon_sym_if] = ACTIONS(1384), + [anon_sym_impl] = ACTIONS(1384), + [anon_sym_let] = ACTIONS(1384), + [anon_sym_loop] = ACTIONS(1384), + [anon_sym_match] = ACTIONS(1384), + [anon_sym_mod] = ACTIONS(1384), + [anon_sym_pub] = ACTIONS(1384), + [anon_sym_return] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1384), + [anon_sym_struct] = ACTIONS(1384), + [anon_sym_trait] = ACTIONS(1384), + [anon_sym_type] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_unsafe] = ACTIONS(1384), + [anon_sym_use] = ACTIONS(1384), + [anon_sym_while] = ACTIONS(1384), + [anon_sym_extern] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1384), + [anon_sym_move] = ACTIONS(1384), + [anon_sym_try] = ACTIONS(1384), + [sym_integer_literal] = ACTIONS(1382), + [aux_sym_string_literal_token1] = ACTIONS(1382), + [sym_char_literal] = ACTIONS(1382), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_crate] = ACTIONS(1384), + [sym_metavariable] = ACTIONS(1382), + [sym__raw_string_literal_start] = ACTIONS(1382), + [sym_float_literal] = ACTIONS(1382), + }, + [385] = { + [sym_line_comment] = STATE(385), + [sym_block_comment] = STATE(385), + [ts_builtin_sym_end] = ACTIONS(1386), + [sym_identifier] = ACTIONS(1388), + [anon_sym_SEMI] = ACTIONS(1386), + [anon_sym_macro_rules_BANG] = ACTIONS(1386), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_LBRACE] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_QMARK] = ACTIONS(1386), + [anon_sym_u8] = ACTIONS(1388), + [anon_sym_i8] = ACTIONS(1388), + [anon_sym_u16] = ACTIONS(1388), + [anon_sym_i16] = ACTIONS(1388), + [anon_sym_u32] = ACTIONS(1388), + [anon_sym_i32] = ACTIONS(1388), + [anon_sym_u64] = ACTIONS(1388), + [anon_sym_i64] = ACTIONS(1388), + [anon_sym_u128] = ACTIONS(1388), + [anon_sym_i128] = ACTIONS(1388), + [anon_sym_isize] = ACTIONS(1388), + [anon_sym_usize] = ACTIONS(1388), + [anon_sym_f32] = ACTIONS(1388), + [anon_sym_f64] = ACTIONS(1388), + [anon_sym_bool] = ACTIONS(1388), + [anon_sym_str] = ACTIONS(1388), + [anon_sym_char] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1386), + [anon_sym_DASH_EQ] = ACTIONS(1386), + [anon_sym_STAR_EQ] = ACTIONS(1386), + [anon_sym_SLASH_EQ] = ACTIONS(1386), + [anon_sym_PERCENT_EQ] = ACTIONS(1386), + [anon_sym_CARET_EQ] = ACTIONS(1386), + [anon_sym_AMP_EQ] = ACTIONS(1386), + [anon_sym_PIPE_EQ] = ACTIONS(1386), + [anon_sym_LT_LT_EQ] = ACTIONS(1386), + [anon_sym_GT_GT_EQ] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1386), + [anon_sym_BANG_EQ] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(1386), + [anon_sym_POUND] = ACTIONS(1386), + [anon_sym_SQUOTE] = ACTIONS(1388), + [anon_sym_as] = ACTIONS(1388), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_break] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_continue] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_enum] = ACTIONS(1388), + [anon_sym_fn] = ACTIONS(1388), + [anon_sym_for] = ACTIONS(1388), + [anon_sym_if] = ACTIONS(1388), + [anon_sym_impl] = ACTIONS(1388), + [anon_sym_let] = ACTIONS(1388), + [anon_sym_loop] = ACTIONS(1388), + [anon_sym_match] = ACTIONS(1388), + [anon_sym_mod] = ACTIONS(1388), + [anon_sym_pub] = ACTIONS(1388), + [anon_sym_return] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1388), + [anon_sym_struct] = ACTIONS(1388), + [anon_sym_trait] = ACTIONS(1388), + [anon_sym_type] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_unsafe] = ACTIONS(1388), + [anon_sym_use] = ACTIONS(1388), + [anon_sym_while] = ACTIONS(1388), + [anon_sym_extern] = ACTIONS(1388), + [anon_sym_yield] = ACTIONS(1388), + [anon_sym_move] = ACTIONS(1388), + [anon_sym_try] = ACTIONS(1388), + [sym_integer_literal] = ACTIONS(1386), + [aux_sym_string_literal_token1] = ACTIONS(1386), + [sym_char_literal] = ACTIONS(1386), + [anon_sym_true] = ACTIONS(1388), + [anon_sym_false] = ACTIONS(1388), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1388), + [sym_super] = ACTIONS(1388), + [sym_crate] = ACTIONS(1388), + [sym_metavariable] = ACTIONS(1386), + [sym__raw_string_literal_start] = ACTIONS(1386), + [sym_float_literal] = ACTIONS(1386), + }, + [386] = { + [sym_line_comment] = STATE(386), + [sym_block_comment] = STATE(386), + [ts_builtin_sym_end] = ACTIONS(1390), + [sym_identifier] = ACTIONS(1392), + [anon_sym_SEMI] = ACTIONS(1390), + [anon_sym_macro_rules_BANG] = ACTIONS(1390), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_LBRACE] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1390), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1390), - [anon_sym_i8] = ACTIONS(1390), - [anon_sym_u16] = ACTIONS(1390), - [anon_sym_i16] = ACTIONS(1390), - [anon_sym_u32] = ACTIONS(1390), - [anon_sym_i32] = ACTIONS(1390), - [anon_sym_u64] = ACTIONS(1390), - [anon_sym_i64] = ACTIONS(1390), - [anon_sym_u128] = ACTIONS(1390), - [anon_sym_i128] = ACTIONS(1390), - [anon_sym_isize] = ACTIONS(1390), - [anon_sym_usize] = ACTIONS(1390), - [anon_sym_f32] = ACTIONS(1390), - [anon_sym_f64] = ACTIONS(1390), - [anon_sym_bool] = ACTIONS(1390), - [anon_sym_str] = ACTIONS(1390), - [anon_sym_char] = ACTIONS(1390), - [anon_sym_DASH] = ACTIONS(1390), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_QMARK] = ACTIONS(1390), + [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_DASH] = ACTIONS(1392), [anon_sym_SLASH] = ACTIONS(1392), [anon_sym_PERCENT] = ACTIONS(1392), [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1390), - [anon_sym_AMP] = ACTIONS(1390), - [anon_sym_PIPE] = ACTIONS(1390), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_AMP_AMP] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1390), [anon_sym_LT_LT] = ACTIONS(1392), [anon_sym_GT_GT] = ACTIONS(1392), + [anon_sym_PLUS_EQ] = ACTIONS(1390), + [anon_sym_DASH_EQ] = ACTIONS(1390), + [anon_sym_STAR_EQ] = ACTIONS(1390), + [anon_sym_SLASH_EQ] = ACTIONS(1390), + [anon_sym_PERCENT_EQ] = ACTIONS(1390), + [anon_sym_CARET_EQ] = ACTIONS(1390), + [anon_sym_AMP_EQ] = ACTIONS(1390), + [anon_sym_PIPE_EQ] = ACTIONS(1390), + [anon_sym_LT_LT_EQ] = ACTIONS(1390), + [anon_sym_GT_GT_EQ] = ACTIONS(1390), + [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_EQ_EQ] = ACTIONS(1390), + [anon_sym_BANG_EQ] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_GT_EQ] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1390), + [anon_sym_DOT] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), + [anon_sym_COLON_COLON] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(1390), + [anon_sym_SQUOTE] = ACTIONS(1392), + [anon_sym_as] = ACTIONS(1392), + [anon_sym_async] = ACTIONS(1392), + [anon_sym_break] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_continue] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_enum] = ACTIONS(1392), + [anon_sym_fn] = ACTIONS(1392), + [anon_sym_for] = ACTIONS(1392), + [anon_sym_if] = ACTIONS(1392), + [anon_sym_impl] = ACTIONS(1392), + [anon_sym_let] = ACTIONS(1392), + [anon_sym_loop] = ACTIONS(1392), + [anon_sym_match] = ACTIONS(1392), + [anon_sym_mod] = ACTIONS(1392), + [anon_sym_pub] = ACTIONS(1392), + [anon_sym_return] = ACTIONS(1392), + [anon_sym_static] = ACTIONS(1392), + [anon_sym_struct] = ACTIONS(1392), + [anon_sym_trait] = ACTIONS(1392), + [anon_sym_type] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_unsafe] = ACTIONS(1392), + [anon_sym_use] = ACTIONS(1392), + [anon_sym_while] = ACTIONS(1392), + [anon_sym_extern] = ACTIONS(1392), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_move] = ACTIONS(1392), + [anon_sym_try] = ACTIONS(1392), + [sym_integer_literal] = ACTIONS(1390), + [aux_sym_string_literal_token1] = ACTIONS(1390), + [sym_char_literal] = ACTIONS(1390), + [anon_sym_true] = ACTIONS(1392), + [anon_sym_false] = ACTIONS(1392), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1392), + [sym_super] = ACTIONS(1392), + [sym_crate] = ACTIONS(1392), + [sym_metavariable] = ACTIONS(1390), + [sym__raw_string_literal_start] = ACTIONS(1390), + [sym_float_literal] = ACTIONS(1390), + }, + [387] = { + [sym_line_comment] = STATE(387), + [sym_block_comment] = STATE(387), + [ts_builtin_sym_end] = ACTIONS(1394), + [sym_identifier] = ACTIONS(1396), + [anon_sym_SEMI] = ACTIONS(1394), + [anon_sym_macro_rules_BANG] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_LBRACE] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(1394), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u128] = ACTIONS(1396), + [anon_sym_i128] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_str] = ACTIONS(1396), + [anon_sym_char] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_SLASH] = ACTIONS(1396), + [anon_sym_PERCENT] = ACTIONS(1396), + [anon_sym_CARET] = ACTIONS(1396), + [anon_sym_BANG] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1394), + [anon_sym_PIPE_PIPE] = ACTIONS(1394), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), [anon_sym_PLUS_EQ] = ACTIONS(1394), [anon_sym_DASH_EQ] = ACTIONS(1394), [anon_sym_STAR_EQ] = ACTIONS(1394), @@ -59569,759 +59917,432 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(1394), [anon_sym_LT_LT_EQ] = ACTIONS(1394), [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_EQ] = ACTIONS(1396), [anon_sym_EQ_EQ] = ACTIONS(1394), [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), [anon_sym_GT_EQ] = ACTIONS(1394), [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT] = ACTIONS(1396), + [anon_sym_DOT_DOT] = ACTIONS(1396), [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1388), - [anon_sym_POUND] = ACTIONS(1388), - [anon_sym_SQUOTE] = ACTIONS(1390), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1390), - [anon_sym_break] = ACTIONS(1390), - [anon_sym_const] = ACTIONS(1390), - [anon_sym_continue] = ACTIONS(1390), - [anon_sym_default] = ACTIONS(1390), - [anon_sym_enum] = ACTIONS(1390), - [anon_sym_fn] = ACTIONS(1390), - [anon_sym_for] = ACTIONS(1390), - [anon_sym_if] = ACTIONS(1390), - [anon_sym_impl] = ACTIONS(1390), - [anon_sym_let] = ACTIONS(1390), - [anon_sym_loop] = ACTIONS(1390), - [anon_sym_match] = ACTIONS(1390), - [anon_sym_mod] = ACTIONS(1390), - [anon_sym_pub] = ACTIONS(1390), - [anon_sym_return] = ACTIONS(1390), - [anon_sym_static] = ACTIONS(1390), - [anon_sym_struct] = ACTIONS(1390), - [anon_sym_trait] = ACTIONS(1390), - [anon_sym_type] = ACTIONS(1390), - [anon_sym_union] = ACTIONS(1390), - [anon_sym_unsafe] = ACTIONS(1390), - [anon_sym_use] = ACTIONS(1390), - [anon_sym_while] = ACTIONS(1390), - [anon_sym_extern] = ACTIONS(1390), - [anon_sym_yield] = ACTIONS(1390), - [anon_sym_move] = ACTIONS(1390), - [anon_sym_try] = ACTIONS(1390), - [sym_integer_literal] = ACTIONS(1388), - [aux_sym_string_literal_token1] = ACTIONS(1388), - [sym_char_literal] = ACTIONS(1388), - [anon_sym_true] = ACTIONS(1390), - [anon_sym_false] = ACTIONS(1390), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1390), - [sym_super] = ACTIONS(1390), - [sym_crate] = ACTIONS(1390), - [sym_metavariable] = ACTIONS(1388), - [sym__raw_string_literal_start] = ACTIONS(1388), - [sym_float_literal] = ACTIONS(1388), - }, - [385] = { - [sym_line_comment] = STATE(385), - [sym_block_comment] = STATE(385), - [ts_builtin_sym_end] = ACTIONS(1396), - [sym_identifier] = ACTIONS(1398), - [anon_sym_SEMI] = ACTIONS(1396), - [anon_sym_macro_rules_BANG] = ACTIONS(1396), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_QMARK] = ACTIONS(1396), - [anon_sym_u8] = ACTIONS(1398), - [anon_sym_i8] = ACTIONS(1398), - [anon_sym_u16] = ACTIONS(1398), - [anon_sym_i16] = ACTIONS(1398), - [anon_sym_u32] = ACTIONS(1398), - [anon_sym_i32] = ACTIONS(1398), - [anon_sym_u64] = ACTIONS(1398), - [anon_sym_i64] = ACTIONS(1398), - [anon_sym_u128] = ACTIONS(1398), - [anon_sym_i128] = ACTIONS(1398), - [anon_sym_isize] = ACTIONS(1398), - [anon_sym_usize] = ACTIONS(1398), - [anon_sym_f32] = ACTIONS(1398), - [anon_sym_f64] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_str] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_BANG] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1398), - [anon_sym_PLUS_EQ] = ACTIONS(1396), - [anon_sym_DASH_EQ] = ACTIONS(1396), - [anon_sym_STAR_EQ] = ACTIONS(1396), - [anon_sym_SLASH_EQ] = ACTIONS(1396), - [anon_sym_PERCENT_EQ] = ACTIONS(1396), - [anon_sym_CARET_EQ] = ACTIONS(1396), - [anon_sym_AMP_EQ] = ACTIONS(1396), - [anon_sym_PIPE_EQ] = ACTIONS(1396), - [anon_sym_LT_LT_EQ] = ACTIONS(1396), - [anon_sym_GT_GT_EQ] = ACTIONS(1396), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_BANG_EQ] = ACTIONS(1396), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_COLON_COLON] = ACTIONS(1396), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_SQUOTE] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1398), - [anon_sym_async] = ACTIONS(1398), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_enum] = ACTIONS(1398), - [anon_sym_fn] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_impl] = ACTIONS(1398), - [anon_sym_let] = ACTIONS(1398), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_mod] = ACTIONS(1398), - [anon_sym_pub] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_static] = ACTIONS(1398), - [anon_sym_struct] = ACTIONS(1398), - [anon_sym_trait] = ACTIONS(1398), - [anon_sym_type] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_unsafe] = ACTIONS(1398), - [anon_sym_use] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1398), - [anon_sym_move] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1396), - [aux_sym_string_literal_token1] = ACTIONS(1396), - [sym_char_literal] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1398), - [sym_super] = ACTIONS(1398), - [sym_crate] = ACTIONS(1398), - [sym_metavariable] = ACTIONS(1396), - [sym__raw_string_literal_start] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1396), - }, - [386] = { - [sym_line_comment] = STATE(386), - [sym_block_comment] = STATE(386), - [ts_builtin_sym_end] = ACTIONS(1400), - [sym_identifier] = ACTIONS(1402), - [anon_sym_SEMI] = ACTIONS(1400), - [anon_sym_macro_rules_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_LBRACE] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1400), - [anon_sym_u8] = ACTIONS(1402), - [anon_sym_i8] = ACTIONS(1402), - [anon_sym_u16] = ACTIONS(1402), - [anon_sym_i16] = ACTIONS(1402), - [anon_sym_u32] = ACTIONS(1402), - [anon_sym_i32] = ACTIONS(1402), - [anon_sym_u64] = ACTIONS(1402), - [anon_sym_i64] = ACTIONS(1402), - [anon_sym_u128] = ACTIONS(1402), - [anon_sym_i128] = ACTIONS(1402), - [anon_sym_isize] = ACTIONS(1402), - [anon_sym_usize] = ACTIONS(1402), - [anon_sym_f32] = ACTIONS(1402), - [anon_sym_f64] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_str] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1402), - [anon_sym_BANG] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1402), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_PLUS_EQ] = ACTIONS(1400), - [anon_sym_DASH_EQ] = ACTIONS(1400), - [anon_sym_STAR_EQ] = ACTIONS(1400), - [anon_sym_SLASH_EQ] = ACTIONS(1400), - [anon_sym_PERCENT_EQ] = ACTIONS(1400), - [anon_sym_CARET_EQ] = ACTIONS(1400), - [anon_sym_AMP_EQ] = ACTIONS(1400), - [anon_sym_PIPE_EQ] = ACTIONS(1400), - [anon_sym_LT_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1400), - [anon_sym_COLON_COLON] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(1400), - [anon_sym_SQUOTE] = ACTIONS(1402), - [anon_sym_as] = ACTIONS(1402), - [anon_sym_async] = ACTIONS(1402), - [anon_sym_break] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_continue] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_enum] = ACTIONS(1402), - [anon_sym_fn] = ACTIONS(1402), - [anon_sym_for] = ACTIONS(1402), - [anon_sym_if] = ACTIONS(1402), - [anon_sym_impl] = ACTIONS(1402), - [anon_sym_let] = ACTIONS(1402), - [anon_sym_loop] = ACTIONS(1402), - [anon_sym_match] = ACTIONS(1402), - [anon_sym_mod] = ACTIONS(1402), - [anon_sym_pub] = ACTIONS(1402), - [anon_sym_return] = ACTIONS(1402), - [anon_sym_static] = ACTIONS(1402), - [anon_sym_struct] = ACTIONS(1402), - [anon_sym_trait] = ACTIONS(1402), - [anon_sym_type] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_unsafe] = ACTIONS(1402), - [anon_sym_use] = ACTIONS(1402), - [anon_sym_while] = ACTIONS(1402), - [anon_sym_extern] = ACTIONS(1402), - [anon_sym_yield] = ACTIONS(1402), - [anon_sym_move] = ACTIONS(1402), - [anon_sym_try] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1400), - [aux_sym_string_literal_token1] = ACTIONS(1400), - [sym_char_literal] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1402), - [sym_super] = ACTIONS(1402), - [sym_crate] = ACTIONS(1402), - [sym_metavariable] = ACTIONS(1400), - [sym__raw_string_literal_start] = ACTIONS(1400), - [sym_float_literal] = ACTIONS(1400), - }, - [387] = { - [sym_line_comment] = STATE(387), - [sym_block_comment] = STATE(387), - [ts_builtin_sym_end] = ACTIONS(993), - [sym_identifier] = ACTIONS(991), - [anon_sym_SEMI] = ACTIONS(993), - [anon_sym_macro_rules_BANG] = ACTIONS(993), - [anon_sym_LPAREN] = ACTIONS(993), - [anon_sym_LBRACK] = ACTIONS(993), - [anon_sym_LBRACE] = ACTIONS(993), - [anon_sym_RBRACE] = ACTIONS(993), - [anon_sym_PLUS] = ACTIONS(991), - [anon_sym_STAR] = ACTIONS(991), - [anon_sym_QMARK] = ACTIONS(993), - [anon_sym_u8] = ACTIONS(991), - [anon_sym_i8] = ACTIONS(991), - [anon_sym_u16] = ACTIONS(991), - [anon_sym_i16] = ACTIONS(991), - [anon_sym_u32] = ACTIONS(991), - [anon_sym_i32] = ACTIONS(991), - [anon_sym_u64] = ACTIONS(991), - [anon_sym_i64] = ACTIONS(991), - [anon_sym_u128] = ACTIONS(991), - [anon_sym_i128] = ACTIONS(991), - [anon_sym_isize] = ACTIONS(991), - [anon_sym_usize] = ACTIONS(991), - [anon_sym_f32] = ACTIONS(991), - [anon_sym_f64] = ACTIONS(991), - [anon_sym_bool] = ACTIONS(991), - [anon_sym_str] = ACTIONS(991), - [anon_sym_char] = ACTIONS(991), - [anon_sym_DASH] = ACTIONS(991), - [anon_sym_SLASH] = ACTIONS(991), - [anon_sym_PERCENT] = ACTIONS(991), - [anon_sym_CARET] = ACTIONS(991), - [anon_sym_BANG] = ACTIONS(991), - [anon_sym_AMP] = ACTIONS(991), - [anon_sym_PIPE] = ACTIONS(991), - [anon_sym_AMP_AMP] = ACTIONS(993), - [anon_sym_PIPE_PIPE] = ACTIONS(993), - [anon_sym_LT_LT] = ACTIONS(991), - [anon_sym_GT_GT] = ACTIONS(991), - [anon_sym_PLUS_EQ] = ACTIONS(993), - [anon_sym_DASH_EQ] = ACTIONS(993), - [anon_sym_STAR_EQ] = ACTIONS(993), - [anon_sym_SLASH_EQ] = ACTIONS(993), - [anon_sym_PERCENT_EQ] = ACTIONS(993), - [anon_sym_CARET_EQ] = ACTIONS(993), - [anon_sym_AMP_EQ] = ACTIONS(993), - [anon_sym_PIPE_EQ] = ACTIONS(993), - [anon_sym_LT_LT_EQ] = ACTIONS(993), - [anon_sym_GT_GT_EQ] = ACTIONS(993), - [anon_sym_EQ] = ACTIONS(991), - [anon_sym_EQ_EQ] = ACTIONS(993), - [anon_sym_BANG_EQ] = ACTIONS(993), - [anon_sym_GT] = ACTIONS(991), - [anon_sym_LT] = ACTIONS(991), - [anon_sym_GT_EQ] = ACTIONS(993), - [anon_sym_LT_EQ] = ACTIONS(993), - [anon_sym_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT] = ACTIONS(991), - [anon_sym_DOT_DOT_DOT] = ACTIONS(993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(993), - [anon_sym_COLON_COLON] = ACTIONS(993), - [anon_sym_POUND] = ACTIONS(993), - [anon_sym_SQUOTE] = ACTIONS(991), - [anon_sym_as] = ACTIONS(991), - [anon_sym_async] = ACTIONS(991), - [anon_sym_break] = ACTIONS(991), - [anon_sym_const] = ACTIONS(991), - [anon_sym_continue] = ACTIONS(991), - [anon_sym_default] = ACTIONS(991), - [anon_sym_enum] = ACTIONS(991), - [anon_sym_fn] = ACTIONS(991), - [anon_sym_for] = ACTIONS(991), - [anon_sym_if] = ACTIONS(991), - [anon_sym_impl] = ACTIONS(991), - [anon_sym_let] = ACTIONS(991), - [anon_sym_loop] = ACTIONS(991), - [anon_sym_match] = ACTIONS(991), - [anon_sym_mod] = ACTIONS(991), - [anon_sym_pub] = ACTIONS(991), - [anon_sym_return] = ACTIONS(991), - [anon_sym_static] = ACTIONS(991), - [anon_sym_struct] = ACTIONS(991), - [anon_sym_trait] = ACTIONS(991), - [anon_sym_type] = ACTIONS(991), - [anon_sym_union] = ACTIONS(991), - [anon_sym_unsafe] = ACTIONS(991), - [anon_sym_use] = ACTIONS(991), - [anon_sym_while] = ACTIONS(991), - [anon_sym_extern] = ACTIONS(991), - [anon_sym_yield] = ACTIONS(991), - [anon_sym_move] = ACTIONS(991), - [anon_sym_try] = ACTIONS(991), - [sym_integer_literal] = ACTIONS(993), - [aux_sym_string_literal_token1] = ACTIONS(993), - [sym_char_literal] = ACTIONS(993), - [anon_sym_true] = ACTIONS(991), - [anon_sym_false] = ACTIONS(991), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(991), - [sym_super] = ACTIONS(991), - [sym_crate] = ACTIONS(991), - [sym_metavariable] = ACTIONS(993), - [sym__raw_string_literal_start] = ACTIONS(993), - [sym_float_literal] = ACTIONS(993), + [anon_sym_COLON_COLON] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(1394), + [anon_sym_SQUOTE] = ACTIONS(1396), + [anon_sym_as] = ACTIONS(1396), + [anon_sym_async] = ACTIONS(1396), + [anon_sym_break] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_continue] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_enum] = ACTIONS(1396), + [anon_sym_fn] = ACTIONS(1396), + [anon_sym_for] = ACTIONS(1396), + [anon_sym_if] = ACTIONS(1396), + [anon_sym_impl] = ACTIONS(1396), + [anon_sym_let] = ACTIONS(1396), + [anon_sym_loop] = ACTIONS(1396), + [anon_sym_match] = ACTIONS(1396), + [anon_sym_mod] = ACTIONS(1396), + [anon_sym_pub] = ACTIONS(1396), + [anon_sym_return] = ACTIONS(1396), + [anon_sym_static] = ACTIONS(1396), + [anon_sym_struct] = ACTIONS(1396), + [anon_sym_trait] = ACTIONS(1396), + [anon_sym_type] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_unsafe] = ACTIONS(1396), + [anon_sym_use] = ACTIONS(1396), + [anon_sym_while] = ACTIONS(1396), + [anon_sym_extern] = ACTIONS(1396), + [anon_sym_yield] = ACTIONS(1396), + [anon_sym_move] = ACTIONS(1396), + [anon_sym_try] = ACTIONS(1396), + [sym_integer_literal] = ACTIONS(1394), + [aux_sym_string_literal_token1] = ACTIONS(1394), + [sym_char_literal] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1396), + [anon_sym_false] = ACTIONS(1396), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1396), + [sym_super] = ACTIONS(1396), + [sym_crate] = ACTIONS(1396), + [sym_metavariable] = ACTIONS(1394), + [sym__raw_string_literal_start] = ACTIONS(1394), + [sym_float_literal] = ACTIONS(1394), }, [388] = { - [sym_attribute_item] = STATE(415), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(2969), - [sym_variadic_parameter] = STATE(2969), - [sym_parameter] = STATE(2969), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2562), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), [sym_line_comment] = STATE(388), [sym_block_comment] = STATE(388), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_RPAREN] = ACTIONS(1404), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1406), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COMMA] = ACTIONS(1408), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [ts_builtin_sym_end] = ACTIONS(1398), + [sym_identifier] = ACTIONS(1400), + [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_macro_rules_BANG] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_LBRACE] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1398), + [anon_sym_u8] = ACTIONS(1400), + [anon_sym_i8] = ACTIONS(1400), + [anon_sym_u16] = ACTIONS(1400), + [anon_sym_i16] = ACTIONS(1400), + [anon_sym_u32] = ACTIONS(1400), + [anon_sym_i32] = ACTIONS(1400), + [anon_sym_u64] = ACTIONS(1400), + [anon_sym_i64] = ACTIONS(1400), + [anon_sym_u128] = ACTIONS(1400), + [anon_sym_i128] = ACTIONS(1400), + [anon_sym_isize] = ACTIONS(1400), + [anon_sym_usize] = ACTIONS(1400), + [anon_sym_f32] = ACTIONS(1400), + [anon_sym_f64] = ACTIONS(1400), + [anon_sym_bool] = ACTIONS(1400), + [anon_sym_str] = ACTIONS(1400), + [anon_sym_char] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym_BANG] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [anon_sym_PLUS_EQ] = ACTIONS(1398), + [anon_sym_DASH_EQ] = ACTIONS(1398), + [anon_sym_STAR_EQ] = ACTIONS(1398), + [anon_sym_SLASH_EQ] = ACTIONS(1398), + [anon_sym_PERCENT_EQ] = ACTIONS(1398), + [anon_sym_CARET_EQ] = ACTIONS(1398), + [anon_sym_AMP_EQ] = ACTIONS(1398), + [anon_sym_PIPE_EQ] = ACTIONS(1398), + [anon_sym_LT_LT_EQ] = ACTIONS(1398), + [anon_sym_GT_GT_EQ] = ACTIONS(1398), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT_DOT] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), + [anon_sym_COLON_COLON] = ACTIONS(1398), + [anon_sym_POUND] = ACTIONS(1398), + [anon_sym_SQUOTE] = ACTIONS(1400), + [anon_sym_as] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1400), + [anon_sym_break] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_continue] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_enum] = ACTIONS(1400), + [anon_sym_fn] = ACTIONS(1400), + [anon_sym_for] = ACTIONS(1400), + [anon_sym_if] = ACTIONS(1400), + [anon_sym_impl] = ACTIONS(1400), + [anon_sym_let] = ACTIONS(1400), + [anon_sym_loop] = ACTIONS(1400), + [anon_sym_match] = ACTIONS(1400), + [anon_sym_mod] = ACTIONS(1400), + [anon_sym_pub] = ACTIONS(1400), + [anon_sym_return] = ACTIONS(1400), + [anon_sym_static] = ACTIONS(1400), + [anon_sym_struct] = ACTIONS(1400), + [anon_sym_trait] = ACTIONS(1400), + [anon_sym_type] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_unsafe] = ACTIONS(1400), + [anon_sym_use] = ACTIONS(1400), + [anon_sym_while] = ACTIONS(1400), + [anon_sym_extern] = ACTIONS(1400), + [anon_sym_yield] = ACTIONS(1400), + [anon_sym_move] = ACTIONS(1400), + [anon_sym_try] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1398), + [aux_sym_string_literal_token1] = ACTIONS(1398), + [sym_char_literal] = ACTIONS(1398), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1398), + [sym__raw_string_literal_start] = ACTIONS(1398), + [sym_float_literal] = ACTIONS(1398), }, [389] = { [sym_line_comment] = STATE(389), [sym_block_comment] = STATE(389), - [ts_builtin_sym_end] = ACTIONS(1410), - [sym_identifier] = ACTIONS(1412), - [anon_sym_SEMI] = ACTIONS(1410), - [anon_sym_macro_rules_BANG] = ACTIONS(1410), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_QMARK] = ACTIONS(1410), - [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_DASH] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_BANG] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_PLUS_EQ] = ACTIONS(1410), - [anon_sym_DASH_EQ] = ACTIONS(1410), - [anon_sym_STAR_EQ] = ACTIONS(1410), - [anon_sym_SLASH_EQ] = ACTIONS(1410), - [anon_sym_PERCENT_EQ] = ACTIONS(1410), - [anon_sym_CARET_EQ] = ACTIONS(1410), - [anon_sym_AMP_EQ] = ACTIONS(1410), - [anon_sym_PIPE_EQ] = ACTIONS(1410), - [anon_sym_LT_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_GT_EQ] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_SQUOTE] = ACTIONS(1412), - [anon_sym_as] = ACTIONS(1412), - [anon_sym_async] = 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_while] = ACTIONS(1412), - [anon_sym_extern] = ACTIONS(1412), - [anon_sym_yield] = ACTIONS(1412), - [anon_sym_move] = ACTIONS(1412), - [anon_sym_try] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [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(1410), - [sym__raw_string_literal_start] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), + [ts_builtin_sym_end] = ACTIONS(1402), + [sym_identifier] = ACTIONS(1404), + [anon_sym_SEMI] = ACTIONS(1402), + [anon_sym_macro_rules_BANG] = ACTIONS(1402), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_LBRACE] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_QMARK] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(1404), + [anon_sym_PERCENT] = ACTIONS(1404), + [anon_sym_CARET] = ACTIONS(1404), + [anon_sym_BANG] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_AMP_AMP] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1404), + [anon_sym_GT_GT] = ACTIONS(1404), + [anon_sym_PLUS_EQ] = ACTIONS(1402), + [anon_sym_DASH_EQ] = ACTIONS(1402), + [anon_sym_STAR_EQ] = ACTIONS(1402), + [anon_sym_SLASH_EQ] = ACTIONS(1402), + [anon_sym_PERCENT_EQ] = ACTIONS(1402), + [anon_sym_CARET_EQ] = ACTIONS(1402), + [anon_sym_AMP_EQ] = ACTIONS(1402), + [anon_sym_PIPE_EQ] = ACTIONS(1402), + [anon_sym_LT_LT_EQ] = ACTIONS(1402), + [anon_sym_GT_GT_EQ] = ACTIONS(1402), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_SQUOTE] = ACTIONS(1404), + [anon_sym_as] = ACTIONS(1404), + [anon_sym_async] = ACTIONS(1404), + [anon_sym_break] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_continue] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_enum] = ACTIONS(1404), + [anon_sym_fn] = ACTIONS(1404), + [anon_sym_for] = ACTIONS(1404), + [anon_sym_if] = ACTIONS(1404), + [anon_sym_impl] = ACTIONS(1404), + [anon_sym_let] = ACTIONS(1404), + [anon_sym_loop] = ACTIONS(1404), + [anon_sym_match] = ACTIONS(1404), + [anon_sym_mod] = ACTIONS(1404), + [anon_sym_pub] = ACTIONS(1404), + [anon_sym_return] = ACTIONS(1404), + [anon_sym_static] = ACTIONS(1404), + [anon_sym_struct] = ACTIONS(1404), + [anon_sym_trait] = ACTIONS(1404), + [anon_sym_type] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_unsafe] = ACTIONS(1404), + [anon_sym_use] = ACTIONS(1404), + [anon_sym_while] = ACTIONS(1404), + [anon_sym_extern] = ACTIONS(1404), + [anon_sym_yield] = ACTIONS(1404), + [anon_sym_move] = ACTIONS(1404), + [anon_sym_try] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [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(1402), + [sym__raw_string_literal_start] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), }, [390] = { + [sym_attribute_item] = STATE(416), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(2751), + [sym_variadic_parameter] = STATE(2751), + [sym_parameter] = STATE(2751), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2526), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(390), [sym_block_comment] = STATE(390), - [ts_builtin_sym_end] = ACTIONS(1414), - [sym_identifier] = ACTIONS(1416), - [anon_sym_SEMI] = ACTIONS(1414), - [anon_sym_macro_rules_BANG] = ACTIONS(1414), - [anon_sym_LPAREN] = ACTIONS(1414), - [anon_sym_LBRACK] = ACTIONS(1414), - [anon_sym_LBRACE] = ACTIONS(1414), - [anon_sym_RBRACE] = ACTIONS(1414), - [anon_sym_PLUS] = ACTIONS(1416), - [anon_sym_STAR] = ACTIONS(1416), - [anon_sym_QMARK] = ACTIONS(1414), - [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_DASH] = ACTIONS(1416), - [anon_sym_SLASH] = ACTIONS(1416), - [anon_sym_PERCENT] = ACTIONS(1416), - [anon_sym_CARET] = ACTIONS(1416), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_AMP] = ACTIONS(1416), - [anon_sym_PIPE] = ACTIONS(1416), - [anon_sym_AMP_AMP] = ACTIONS(1414), - [anon_sym_PIPE_PIPE] = ACTIONS(1414), - [anon_sym_LT_LT] = ACTIONS(1416), - [anon_sym_GT_GT] = ACTIONS(1416), - [anon_sym_PLUS_EQ] = ACTIONS(1414), - [anon_sym_DASH_EQ] = ACTIONS(1414), - [anon_sym_STAR_EQ] = ACTIONS(1414), - [anon_sym_SLASH_EQ] = ACTIONS(1414), - [anon_sym_PERCENT_EQ] = ACTIONS(1414), - [anon_sym_CARET_EQ] = ACTIONS(1414), - [anon_sym_AMP_EQ] = ACTIONS(1414), - [anon_sym_PIPE_EQ] = ACTIONS(1414), - [anon_sym_LT_LT_EQ] = ACTIONS(1414), - [anon_sym_GT_GT_EQ] = ACTIONS(1414), - [anon_sym_EQ] = ACTIONS(1416), - [anon_sym_EQ_EQ] = ACTIONS(1414), - [anon_sym_BANG_EQ] = ACTIONS(1414), - [anon_sym_GT] = ACTIONS(1416), - [anon_sym_LT] = ACTIONS(1416), - [anon_sym_GT_EQ] = ACTIONS(1414), - [anon_sym_LT_EQ] = ACTIONS(1414), - [anon_sym_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1414), - [anon_sym_COLON_COLON] = ACTIONS(1414), - [anon_sym_POUND] = ACTIONS(1414), - [anon_sym_SQUOTE] = ACTIONS(1416), - [anon_sym_as] = ACTIONS(1416), - [anon_sym_async] = 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_while] = ACTIONS(1416), - [anon_sym_extern] = ACTIONS(1416), - [anon_sym_yield] = ACTIONS(1416), - [anon_sym_move] = ACTIONS(1416), - [anon_sym_try] = ACTIONS(1416), - [sym_integer_literal] = ACTIONS(1414), - [aux_sym_string_literal_token1] = ACTIONS(1414), - [sym_char_literal] = ACTIONS(1414), - [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(1414), - [sym__raw_string_literal_start] = ACTIONS(1414), - [sym_float_literal] = ACTIONS(1414), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1406), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1408), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COMMA] = ACTIONS(1410), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [391] = { [sym_line_comment] = STATE(391), [sym_block_comment] = STATE(391), - [ts_builtin_sym_end] = ACTIONS(1418), - [sym_identifier] = ACTIONS(1420), - [anon_sym_SEMI] = ACTIONS(1418), - [anon_sym_macro_rules_BANG] = ACTIONS(1418), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), - [anon_sym_LBRACE] = ACTIONS(1418), - [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), + [ts_builtin_sym_end] = ACTIONS(1412), + [sym_identifier] = ACTIONS(1414), + [anon_sym_SEMI] = ACTIONS(1412), + [anon_sym_macro_rules_BANG] = ACTIONS(1412), + [anon_sym_LPAREN] = ACTIONS(1412), + [anon_sym_LBRACK] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1412), + [anon_sym_RBRACE] = ACTIONS(1412), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1414), [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1420), - [anon_sym_i8] = ACTIONS(1420), - [anon_sym_u16] = ACTIONS(1420), - [anon_sym_i16] = ACTIONS(1420), - [anon_sym_u32] = ACTIONS(1420), - [anon_sym_i32] = ACTIONS(1420), - [anon_sym_u64] = ACTIONS(1420), - [anon_sym_i64] = ACTIONS(1420), - [anon_sym_u128] = ACTIONS(1420), - [anon_sym_i128] = ACTIONS(1420), - [anon_sym_isize] = ACTIONS(1420), - [anon_sym_usize] = ACTIONS(1420), - [anon_sym_f32] = ACTIONS(1420), - [anon_sym_f64] = ACTIONS(1420), - [anon_sym_bool] = ACTIONS(1420), - [anon_sym_str] = ACTIONS(1420), - [anon_sym_char] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1420), - [anon_sym_PERCENT] = ACTIONS(1420), - [anon_sym_CARET] = ACTIONS(1420), - [anon_sym_BANG] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_u8] = ACTIONS(1414), + [anon_sym_i8] = ACTIONS(1414), + [anon_sym_u16] = ACTIONS(1414), + [anon_sym_i16] = ACTIONS(1414), + [anon_sym_u32] = ACTIONS(1414), + [anon_sym_i32] = ACTIONS(1414), + [anon_sym_u64] = ACTIONS(1414), + [anon_sym_i64] = ACTIONS(1414), + [anon_sym_u128] = ACTIONS(1414), + [anon_sym_i128] = ACTIONS(1414), + [anon_sym_isize] = ACTIONS(1414), + [anon_sym_usize] = ACTIONS(1414), + [anon_sym_f32] = ACTIONS(1414), + [anon_sym_f64] = ACTIONS(1414), + [anon_sym_bool] = ACTIONS(1414), + [anon_sym_str] = ACTIONS(1414), + [anon_sym_char] = ACTIONS(1414), + [anon_sym_DASH] = ACTIONS(1414), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1414), + [anon_sym_AMP] = ACTIONS(1414), + [anon_sym_PIPE] = ACTIONS(1414), [anon_sym_AMP_AMP] = ACTIONS(1418), [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1420), - [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_LT_LT] = ACTIONS(1416), + [anon_sym_GT_GT] = ACTIONS(1416), [anon_sym_PLUS_EQ] = ACTIONS(1418), [anon_sym_DASH_EQ] = ACTIONS(1418), [anon_sym_STAR_EQ] = ACTIONS(1418), @@ -60332,607 +60353,607 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(1418), [anon_sym_LT_LT_EQ] = ACTIONS(1418), [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1416), [anon_sym_EQ_EQ] = ACTIONS(1418), [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1414), [anon_sym_GT_EQ] = ACTIONS(1418), [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1420), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1414), [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_SQUOTE] = ACTIONS(1420), - [anon_sym_as] = ACTIONS(1420), - [anon_sym_async] = ACTIONS(1420), - [anon_sym_break] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_continue] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_enum] = ACTIONS(1420), - [anon_sym_fn] = ACTIONS(1420), - [anon_sym_for] = ACTIONS(1420), - [anon_sym_if] = ACTIONS(1420), - [anon_sym_impl] = ACTIONS(1420), - [anon_sym_let] = ACTIONS(1420), - [anon_sym_loop] = ACTIONS(1420), - [anon_sym_match] = ACTIONS(1420), - [anon_sym_mod] = ACTIONS(1420), - [anon_sym_pub] = ACTIONS(1420), - [anon_sym_return] = ACTIONS(1420), - [anon_sym_static] = ACTIONS(1420), - [anon_sym_struct] = ACTIONS(1420), - [anon_sym_trait] = ACTIONS(1420), - [anon_sym_type] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_unsafe] = ACTIONS(1420), - [anon_sym_use] = ACTIONS(1420), - [anon_sym_while] = ACTIONS(1420), - [anon_sym_extern] = ACTIONS(1420), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_move] = ACTIONS(1420), - [anon_sym_try] = ACTIONS(1420), - [sym_integer_literal] = ACTIONS(1418), - [aux_sym_string_literal_token1] = ACTIONS(1418), - [sym_char_literal] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1418), - [sym__raw_string_literal_start] = ACTIONS(1418), - [sym_float_literal] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1412), + [anon_sym_POUND] = ACTIONS(1412), + [anon_sym_SQUOTE] = ACTIONS(1414), + [anon_sym_as] = ACTIONS(1416), + [anon_sym_async] = ACTIONS(1414), + [anon_sym_break] = ACTIONS(1414), + [anon_sym_const] = ACTIONS(1414), + [anon_sym_continue] = ACTIONS(1414), + [anon_sym_default] = ACTIONS(1414), + [anon_sym_enum] = ACTIONS(1414), + [anon_sym_fn] = ACTIONS(1414), + [anon_sym_for] = ACTIONS(1414), + [anon_sym_if] = ACTIONS(1414), + [anon_sym_impl] = ACTIONS(1414), + [anon_sym_let] = ACTIONS(1414), + [anon_sym_loop] = ACTIONS(1414), + [anon_sym_match] = ACTIONS(1414), + [anon_sym_mod] = ACTIONS(1414), + [anon_sym_pub] = ACTIONS(1414), + [anon_sym_return] = ACTIONS(1414), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_struct] = ACTIONS(1414), + [anon_sym_trait] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_union] = ACTIONS(1414), + [anon_sym_unsafe] = ACTIONS(1414), + [anon_sym_use] = ACTIONS(1414), + [anon_sym_while] = ACTIONS(1414), + [anon_sym_extern] = ACTIONS(1414), + [anon_sym_yield] = ACTIONS(1414), + [anon_sym_move] = ACTIONS(1414), + [anon_sym_try] = ACTIONS(1414), + [sym_integer_literal] = ACTIONS(1412), + [aux_sym_string_literal_token1] = ACTIONS(1412), + [sym_char_literal] = ACTIONS(1412), + [anon_sym_true] = ACTIONS(1414), + [anon_sym_false] = ACTIONS(1414), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1414), + [sym_super] = ACTIONS(1414), + [sym_crate] = ACTIONS(1414), + [sym_metavariable] = ACTIONS(1412), + [sym__raw_string_literal_start] = ACTIONS(1412), + [sym_float_literal] = ACTIONS(1412), }, [392] = { [sym_line_comment] = STATE(392), [sym_block_comment] = STATE(392), - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_macro_rules_BANG] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1424), - [anon_sym_i8] = ACTIONS(1424), - [anon_sym_u16] = ACTIONS(1424), - [anon_sym_i16] = ACTIONS(1424), - [anon_sym_u32] = ACTIONS(1424), - [anon_sym_i32] = ACTIONS(1424), - [anon_sym_u64] = ACTIONS(1424), - [anon_sym_i64] = ACTIONS(1424), - [anon_sym_u128] = ACTIONS(1424), - [anon_sym_i128] = ACTIONS(1424), - [anon_sym_isize] = ACTIONS(1424), - [anon_sym_usize] = ACTIONS(1424), - [anon_sym_f32] = ACTIONS(1424), - [anon_sym_f64] = ACTIONS(1424), - [anon_sym_bool] = ACTIONS(1424), - [anon_sym_str] = ACTIONS(1424), - [anon_sym_char] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1394), - [anon_sym_DASH_EQ] = ACTIONS(1394), - [anon_sym_STAR_EQ] = ACTIONS(1394), - [anon_sym_SLASH_EQ] = ACTIONS(1394), - [anon_sym_PERCENT_EQ] = ACTIONS(1394), - [anon_sym_CARET_EQ] = ACTIONS(1394), - [anon_sym_AMP_EQ] = ACTIONS(1394), - [anon_sym_PIPE_EQ] = ACTIONS(1394), - [anon_sym_LT_LT_EQ] = ACTIONS(1394), - [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_impl] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_loop] = ACTIONS(1424), - [anon_sym_match] = ACTIONS(1424), - [anon_sym_mod] = ACTIONS(1424), - [anon_sym_pub] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_trait] = ACTIONS(1424), - [anon_sym_type] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_unsafe] = ACTIONS(1424), - [anon_sym_use] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1424), - [anon_sym_move] = ACTIONS(1424), - [anon_sym_try] = ACTIONS(1424), - [sym_integer_literal] = ACTIONS(1422), - [aux_sym_string_literal_token1] = ACTIONS(1422), - [sym_char_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1424), - [anon_sym_false] = ACTIONS(1424), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1424), - [sym_super] = ACTIONS(1424), - [sym_crate] = ACTIONS(1424), - [sym_metavariable] = ACTIONS(1422), - [sym__raw_string_literal_start] = ACTIONS(1422), - [sym_float_literal] = ACTIONS(1422), + [ts_builtin_sym_end] = ACTIONS(1420), + [sym_identifier] = ACTIONS(1422), + [anon_sym_SEMI] = ACTIONS(1420), + [anon_sym_macro_rules_BANG] = ACTIONS(1420), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_LBRACE] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_QMARK] = ACTIONS(1420), + [anon_sym_u8] = ACTIONS(1422), + [anon_sym_i8] = ACTIONS(1422), + [anon_sym_u16] = ACTIONS(1422), + [anon_sym_i16] = ACTIONS(1422), + [anon_sym_u32] = ACTIONS(1422), + [anon_sym_i32] = ACTIONS(1422), + [anon_sym_u64] = ACTIONS(1422), + [anon_sym_i64] = ACTIONS(1422), + [anon_sym_u128] = ACTIONS(1422), + [anon_sym_i128] = ACTIONS(1422), + [anon_sym_isize] = ACTIONS(1422), + [anon_sym_usize] = ACTIONS(1422), + [anon_sym_f32] = ACTIONS(1422), + [anon_sym_f64] = ACTIONS(1422), + [anon_sym_bool] = ACTIONS(1422), + [anon_sym_str] = ACTIONS(1422), + [anon_sym_char] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_SLASH] = ACTIONS(1422), + [anon_sym_PERCENT] = ACTIONS(1422), + [anon_sym_CARET] = ACTIONS(1422), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_PIPE_PIPE] = ACTIONS(1420), + [anon_sym_LT_LT] = ACTIONS(1422), + [anon_sym_GT_GT] = ACTIONS(1422), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1422), + [anon_sym_EQ_EQ] = ACTIONS(1420), + [anon_sym_BANG_EQ] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1422), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1420), + [anon_sym_DOT] = ACTIONS(1422), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), + [anon_sym_COLON_COLON] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_SQUOTE] = ACTIONS(1422), + [anon_sym_as] = ACTIONS(1422), + [anon_sym_async] = ACTIONS(1422), + [anon_sym_break] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_continue] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_enum] = ACTIONS(1422), + [anon_sym_fn] = ACTIONS(1422), + [anon_sym_for] = ACTIONS(1422), + [anon_sym_if] = ACTIONS(1422), + [anon_sym_impl] = ACTIONS(1422), + [anon_sym_let] = ACTIONS(1422), + [anon_sym_loop] = ACTIONS(1422), + [anon_sym_match] = ACTIONS(1422), + [anon_sym_mod] = ACTIONS(1422), + [anon_sym_pub] = ACTIONS(1422), + [anon_sym_return] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1422), + [anon_sym_struct] = ACTIONS(1422), + [anon_sym_trait] = ACTIONS(1422), + [anon_sym_type] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_unsafe] = ACTIONS(1422), + [anon_sym_use] = ACTIONS(1422), + [anon_sym_while] = ACTIONS(1422), + [anon_sym_extern] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1422), + [anon_sym_move] = ACTIONS(1422), + [anon_sym_try] = ACTIONS(1422), + [sym_integer_literal] = ACTIONS(1420), + [aux_sym_string_literal_token1] = ACTIONS(1420), + [sym_char_literal] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1422), + [anon_sym_false] = ACTIONS(1422), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1422), + [sym_super] = ACTIONS(1422), + [sym_crate] = ACTIONS(1422), + [sym_metavariable] = ACTIONS(1420), + [sym__raw_string_literal_start] = ACTIONS(1420), + [sym_float_literal] = ACTIONS(1420), }, [393] = { [sym_line_comment] = STATE(393), [sym_block_comment] = STATE(393), - [ts_builtin_sym_end] = ACTIONS(1426), - [sym_identifier] = ACTIONS(1428), - [anon_sym_SEMI] = ACTIONS(1426), - [anon_sym_macro_rules_BANG] = ACTIONS(1426), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_LBRACE] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_QMARK] = ACTIONS(1426), - [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_DASH] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1428), - [anon_sym_PERCENT] = ACTIONS(1428), - [anon_sym_CARET] = ACTIONS(1428), - [anon_sym_BANG] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1426), - [anon_sym_PIPE_PIPE] = ACTIONS(1426), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_PLUS_EQ] = ACTIONS(1426), - [anon_sym_DASH_EQ] = ACTIONS(1426), - [anon_sym_STAR_EQ] = ACTIONS(1426), - [anon_sym_SLASH_EQ] = ACTIONS(1426), - [anon_sym_PERCENT_EQ] = ACTIONS(1426), - [anon_sym_CARET_EQ] = ACTIONS(1426), - [anon_sym_AMP_EQ] = ACTIONS(1426), - [anon_sym_PIPE_EQ] = ACTIONS(1426), - [anon_sym_LT_LT_EQ] = ACTIONS(1426), - [anon_sym_GT_GT_EQ] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_SQUOTE] = ACTIONS(1428), - [anon_sym_as] = ACTIONS(1428), - [anon_sym_async] = 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_while] = ACTIONS(1428), - [anon_sym_extern] = ACTIONS(1428), - [anon_sym_yield] = ACTIONS(1428), - [anon_sym_move] = ACTIONS(1428), - [anon_sym_try] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1426), - [aux_sym_string_literal_token1] = ACTIONS(1426), - [sym_char_literal] = ACTIONS(1426), - [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(1426), - [sym__raw_string_literal_start] = ACTIONS(1426), - [sym_float_literal] = ACTIONS(1426), + [ts_builtin_sym_end] = ACTIONS(1424), + [sym_identifier] = ACTIONS(1426), + [anon_sym_SEMI] = ACTIONS(1424), + [anon_sym_macro_rules_BANG] = ACTIONS(1424), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_LBRACE] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_QMARK] = ACTIONS(1424), + [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_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym_BANG] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1424), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_PLUS_EQ] = ACTIONS(1424), + [anon_sym_DASH_EQ] = ACTIONS(1424), + [anon_sym_STAR_EQ] = ACTIONS(1424), + [anon_sym_SLASH_EQ] = ACTIONS(1424), + [anon_sym_PERCENT_EQ] = ACTIONS(1424), + [anon_sym_CARET_EQ] = ACTIONS(1424), + [anon_sym_AMP_EQ] = ACTIONS(1424), + [anon_sym_PIPE_EQ] = ACTIONS(1424), + [anon_sym_LT_LT_EQ] = ACTIONS(1424), + [anon_sym_GT_GT_EQ] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_EQ_EQ] = ACTIONS(1424), + [anon_sym_BANG_EQ] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT_EQ] = ACTIONS(1424), + [anon_sym_LT_EQ] = ACTIONS(1424), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_DOT_DOT] = ACTIONS(1426), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_SQUOTE] = ACTIONS(1426), + [anon_sym_as] = ACTIONS(1426), + [anon_sym_async] = 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_while] = ACTIONS(1426), + [anon_sym_extern] = ACTIONS(1426), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_move] = ACTIONS(1426), + [anon_sym_try] = ACTIONS(1426), + [sym_integer_literal] = ACTIONS(1424), + [aux_sym_string_literal_token1] = ACTIONS(1424), + [sym_char_literal] = ACTIONS(1424), + [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(1424), + [sym__raw_string_literal_start] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1424), }, [394] = { [sym_line_comment] = STATE(394), [sym_block_comment] = STATE(394), - [ts_builtin_sym_end] = ACTIONS(1430), - [sym_identifier] = ACTIONS(1432), - [anon_sym_SEMI] = ACTIONS(1430), - [anon_sym_macro_rules_BANG] = ACTIONS(1430), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_LBRACE] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(1430), - [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_DASH] = ACTIONS(1432), - [anon_sym_SLASH] = ACTIONS(1432), - [anon_sym_PERCENT] = ACTIONS(1432), - [anon_sym_CARET] = ACTIONS(1432), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1430), - [anon_sym_LT_LT] = ACTIONS(1432), - [anon_sym_GT_GT] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1430), - [anon_sym_DASH_EQ] = ACTIONS(1430), - [anon_sym_STAR_EQ] = ACTIONS(1430), - [anon_sym_SLASH_EQ] = ACTIONS(1430), - [anon_sym_PERCENT_EQ] = ACTIONS(1430), - [anon_sym_CARET_EQ] = ACTIONS(1430), - [anon_sym_AMP_EQ] = ACTIONS(1430), - [anon_sym_PIPE_EQ] = ACTIONS(1430), - [anon_sym_LT_LT_EQ] = ACTIONS(1430), - [anon_sym_GT_GT_EQ] = ACTIONS(1430), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_EQ_EQ] = ACTIONS(1430), - [anon_sym_BANG_EQ] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_GT_EQ] = ACTIONS(1430), - [anon_sym_LT_EQ] = ACTIONS(1430), - [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_SQUOTE] = ACTIONS(1432), - [anon_sym_as] = ACTIONS(1432), - [anon_sym_async] = 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_while] = ACTIONS(1432), - [anon_sym_extern] = ACTIONS(1432), - [anon_sym_yield] = ACTIONS(1432), - [anon_sym_move] = ACTIONS(1432), - [anon_sym_try] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [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(1430), - [sym__raw_string_literal_start] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), + [ts_builtin_sym_end] = ACTIONS(1428), + [sym_identifier] = ACTIONS(1430), + [anon_sym_SEMI] = ACTIONS(1428), + [anon_sym_macro_rules_BANG] = ACTIONS(1428), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_LBRACE] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_QMARK] = ACTIONS(1428), + [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_DASH] = ACTIONS(1430), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_BANG] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1430), + [anon_sym_GT_GT] = ACTIONS(1430), + [anon_sym_PLUS_EQ] = ACTIONS(1428), + [anon_sym_DASH_EQ] = ACTIONS(1428), + [anon_sym_STAR_EQ] = ACTIONS(1428), + [anon_sym_SLASH_EQ] = ACTIONS(1428), + [anon_sym_PERCENT_EQ] = ACTIONS(1428), + [anon_sym_CARET_EQ] = ACTIONS(1428), + [anon_sym_AMP_EQ] = ACTIONS(1428), + [anon_sym_PIPE_EQ] = ACTIONS(1428), + [anon_sym_LT_LT_EQ] = ACTIONS(1428), + [anon_sym_GT_GT_EQ] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1428), + [anon_sym_BANG_EQ] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_GT_EQ] = ACTIONS(1428), + [anon_sym_LT_EQ] = ACTIONS(1428), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_DOT_DOT] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), + [anon_sym_COLON_COLON] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_SQUOTE] = ACTIONS(1430), + [anon_sym_as] = ACTIONS(1430), + [anon_sym_async] = 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_while] = ACTIONS(1430), + [anon_sym_extern] = ACTIONS(1430), + [anon_sym_yield] = ACTIONS(1430), + [anon_sym_move] = ACTIONS(1430), + [anon_sym_try] = ACTIONS(1430), + [sym_integer_literal] = ACTIONS(1428), + [aux_sym_string_literal_token1] = ACTIONS(1428), + [sym_char_literal] = ACTIONS(1428), + [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(1428), + [sym__raw_string_literal_start] = ACTIONS(1428), + [sym_float_literal] = ACTIONS(1428), }, [395] = { [sym_line_comment] = STATE(395), [sym_block_comment] = STATE(395), - [ts_builtin_sym_end] = ACTIONS(1434), - [sym_identifier] = ACTIONS(1436), - [anon_sym_SEMI] = ACTIONS(1434), - [anon_sym_macro_rules_BANG] = ACTIONS(1434), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_LBRACE] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_QMARK] = ACTIONS(1434), - [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_DASH] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_BANG] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_PIPE_PIPE] = ACTIONS(1434), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1436), - [anon_sym_PLUS_EQ] = ACTIONS(1434), - [anon_sym_DASH_EQ] = ACTIONS(1434), - [anon_sym_STAR_EQ] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1434), - [anon_sym_PERCENT_EQ] = ACTIONS(1434), - [anon_sym_CARET_EQ] = ACTIONS(1434), - [anon_sym_AMP_EQ] = ACTIONS(1434), - [anon_sym_PIPE_EQ] = ACTIONS(1434), - [anon_sym_LT_LT_EQ] = ACTIONS(1434), - [anon_sym_GT_GT_EQ] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1434), - [anon_sym_LT_EQ] = ACTIONS(1434), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT_DOT] = ACTIONS(1436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1434), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), - [anon_sym_COLON_COLON] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_SQUOTE] = ACTIONS(1436), - [anon_sym_as] = ACTIONS(1436), - [anon_sym_async] = 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_while] = ACTIONS(1436), - [anon_sym_extern] = ACTIONS(1436), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_move] = ACTIONS(1436), - [anon_sym_try] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1434), - [aux_sym_string_literal_token1] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [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(1434), - [sym__raw_string_literal_start] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1434), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_macro_rules_BANG] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [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_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1416), + [anon_sym_GT_GT] = ACTIONS(1416), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_as] = ACTIONS(1416), + [anon_sym_async] = 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_while] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym_yield] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1432), + [aux_sym_string_literal_token1] = ACTIONS(1432), + [sym_char_literal] = ACTIONS(1432), + [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(1432), + [sym__raw_string_literal_start] = ACTIONS(1432), + [sym_float_literal] = ACTIONS(1432), }, [396] = { - [sym_attribute_item] = STATE(416), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(2750), - [sym_variadic_parameter] = STATE(2750), - [sym_parameter] = STATE(2750), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2631), - [sym_bracketed_type] = STATE(3533), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(2981), + [sym_variadic_parameter] = STATE(2981), + [sym_parameter] = STATE(2981), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2705), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3114), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2437), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2470), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(396), [sym_block_comment] = STATE(396), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_RPAREN] = ACTIONS(1438), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1270), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1274), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1436), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1438), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), [anon_sym_COMMA] = ACTIONS(1440), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1316), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [397] = { [sym_line_comment] = STATE(397), @@ -61044,113 +61065,113 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1442), }, [398] = { + [sym_attribute_item] = STATE(414), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(2981), + [sym_variadic_parameter] = STATE(2981), + [sym_parameter] = STATE(2981), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2705), + [sym_bracketed_type] = STATE(3527), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3273), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2464), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(398), [sym_block_comment] = STATE(398), - [ts_builtin_sym_end] = ACTIONS(1446), - [sym_identifier] = ACTIONS(1448), - [anon_sym_SEMI] = ACTIONS(1446), - [anon_sym_macro_rules_BANG] = ACTIONS(1446), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_LBRACE] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_QMARK] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym_BANG] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1448), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [anon_sym_DASH_EQ] = ACTIONS(1446), - [anon_sym_STAR_EQ] = ACTIONS(1446), - [anon_sym_SLASH_EQ] = ACTIONS(1446), - [anon_sym_PERCENT_EQ] = ACTIONS(1446), - [anon_sym_CARET_EQ] = ACTIONS(1446), - [anon_sym_AMP_EQ] = ACTIONS(1446), - [anon_sym_PIPE_EQ] = ACTIONS(1446), - [anon_sym_LT_LT_EQ] = ACTIONS(1446), - [anon_sym_GT_GT_EQ] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1446), - [anon_sym_BANG_EQ] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_GT_EQ] = ACTIONS(1446), - [anon_sym_LT_EQ] = ACTIONS(1446), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_SQUOTE] = ACTIONS(1448), - [anon_sym_as] = ACTIONS(1448), - [anon_sym_async] = ACTIONS(1448), - [anon_sym_break] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_continue] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_enum] = ACTIONS(1448), - [anon_sym_fn] = ACTIONS(1448), - [anon_sym_for] = ACTIONS(1448), - [anon_sym_if] = ACTIONS(1448), - [anon_sym_impl] = ACTIONS(1448), - [anon_sym_let] = ACTIONS(1448), - [anon_sym_loop] = ACTIONS(1448), - [anon_sym_match] = ACTIONS(1448), - [anon_sym_mod] = ACTIONS(1448), - [anon_sym_pub] = ACTIONS(1448), - [anon_sym_return] = ACTIONS(1448), - [anon_sym_static] = ACTIONS(1448), - [anon_sym_struct] = ACTIONS(1448), - [anon_sym_trait] = ACTIONS(1448), - [anon_sym_type] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_unsafe] = ACTIONS(1448), - [anon_sym_use] = ACTIONS(1448), - [anon_sym_while] = ACTIONS(1448), - [anon_sym_extern] = ACTIONS(1448), - [anon_sym_yield] = ACTIONS(1448), - [anon_sym_move] = ACTIONS(1448), - [anon_sym_try] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym__raw_string_literal_start] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_RPAREN] = ACTIONS(1446), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1266), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1270), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COMMA] = ACTIONS(1448), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1312), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1316), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [399] = { [sym_line_comment] = STATE(399), @@ -61262,1983 +61283,1983 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1450), }, [400] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3262), - [sym_variadic_parameter] = STATE(3262), - [sym_parameter] = STATE(3262), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3088), + [sym_variadic_parameter] = STATE(3088), + [sym_parameter] = STATE(3088), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(400), [sym_block_comment] = STATE(400), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), [anon_sym_RPAREN] = ACTIONS(1454), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [401] = { + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3088), + [sym_variadic_parameter] = STATE(3088), + [sym_parameter] = STATE(3088), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(401), [sym_block_comment] = STATE(401), - [sym_identifier] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1394), - [anon_sym_macro_rules_BANG] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1394), - [anon_sym_LBRACK] = ACTIONS(1394), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1424), - [anon_sym_i8] = ACTIONS(1424), - [anon_sym_u16] = ACTIONS(1424), - [anon_sym_i16] = ACTIONS(1424), - [anon_sym_u32] = ACTIONS(1424), - [anon_sym_i32] = ACTIONS(1424), - [anon_sym_u64] = ACTIONS(1424), - [anon_sym_i64] = ACTIONS(1424), - [anon_sym_u128] = ACTIONS(1424), - [anon_sym_i128] = ACTIONS(1424), - [anon_sym_isize] = ACTIONS(1424), - [anon_sym_usize] = ACTIONS(1424), - [anon_sym_f32] = ACTIONS(1424), - [anon_sym_f64] = ACTIONS(1424), - [anon_sym_bool] = ACTIONS(1424), - [anon_sym_str] = ACTIONS(1424), - [anon_sym_char] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1392), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_BANG] = ACTIONS(1424), - [anon_sym_AMP] = ACTIONS(1392), - [anon_sym_PIPE] = ACTIONS(1392), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1394), - [anon_sym_DASH_EQ] = ACTIONS(1394), - [anon_sym_STAR_EQ] = ACTIONS(1394), - [anon_sym_SLASH_EQ] = ACTIONS(1394), - [anon_sym_PERCENT_EQ] = ACTIONS(1394), - [anon_sym_CARET_EQ] = ACTIONS(1394), - [anon_sym_AMP_EQ] = ACTIONS(1394), - [anon_sym_PIPE_EQ] = ACTIONS(1394), - [anon_sym_LT_LT_EQ] = ACTIONS(1394), - [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1392), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_impl] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_loop] = ACTIONS(1424), - [anon_sym_match] = ACTIONS(1424), - [anon_sym_mod] = ACTIONS(1424), - [anon_sym_pub] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_trait] = ACTIONS(1424), - [anon_sym_type] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_unsafe] = ACTIONS(1424), - [anon_sym_use] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1424), - [anon_sym_move] = ACTIONS(1424), - [anon_sym_try] = ACTIONS(1424), - [sym_integer_literal] = ACTIONS(1422), - [aux_sym_string_literal_token1] = ACTIONS(1422), - [sym_char_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1424), - [anon_sym_false] = ACTIONS(1424), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1424), - [sym_super] = ACTIONS(1424), - [sym_crate] = ACTIONS(1424), - [sym_metavariable] = ACTIONS(1422), - [sym__raw_string_literal_start] = ACTIONS(1422), - [sym_float_literal] = ACTIONS(1422), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1458), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [402] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3262), - [sym_variadic_parameter] = STATE(3262), - [sym_parameter] = STATE(3262), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3088), + [sym_variadic_parameter] = STATE(3088), + [sym_parameter] = STATE(3088), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(402), [sym_block_comment] = STATE(402), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_RPAREN] = ACTIONS(1458), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1460), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [403] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3262), - [sym_variadic_parameter] = STATE(3262), - [sym_parameter] = STATE(3262), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3088), + [sym_variadic_parameter] = STATE(3088), + [sym_parameter] = STATE(3088), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(403), [sym_block_comment] = STATE(403), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_RPAREN] = ACTIONS(1460), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_RPAREN] = ACTIONS(1462), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [404] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3262), - [sym_variadic_parameter] = STATE(3262), - [sym_parameter] = STATE(3262), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), [sym_line_comment] = STATE(404), [sym_block_comment] = STATE(404), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_RPAREN] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym_identifier] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1418), + [anon_sym_macro_rules_BANG] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1418), + [anon_sym_LBRACK] = ACTIONS(1418), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [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_DASH] = ACTIONS(1416), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_AMP] = ACTIONS(1416), + [anon_sym_PIPE] = ACTIONS(1416), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1416), + [anon_sym_GT_GT] = ACTIONS(1416), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1416), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1416), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_as] = ACTIONS(1416), + [anon_sym_async] = 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_while] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym_yield] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1432), + [aux_sym_string_literal_token1] = ACTIONS(1432), + [sym_char_literal] = ACTIONS(1432), + [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(1432), + [sym__raw_string_literal_start] = ACTIONS(1432), + [sym_float_literal] = ACTIONS(1432), }, [405] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3262), - [sym_variadic_parameter] = STATE(3262), - [sym_parameter] = STATE(3262), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3088), + [sym_variadic_parameter] = STATE(3088), + [sym_parameter] = STATE(3088), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(405), [sym_block_comment] = STATE(405), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), [anon_sym_RPAREN] = ACTIONS(1464), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [406] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3262), - [sym_variadic_parameter] = STATE(3262), - [sym_parameter] = STATE(3262), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3088), + [sym_variadic_parameter] = STATE(3088), + [sym_parameter] = STATE(3088), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(406), [sym_block_comment] = STATE(406), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), [anon_sym_RPAREN] = ACTIONS(1466), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [407] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3262), - [sym_variadic_parameter] = STATE(3262), - [sym_parameter] = STATE(3262), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3088), + [sym_variadic_parameter] = STATE(3088), + [sym_parameter] = STATE(3088), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(407), [sym_block_comment] = STATE(407), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), [anon_sym_RPAREN] = ACTIONS(1468), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [408] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3262), - [sym_variadic_parameter] = STATE(3262), - [sym_parameter] = STATE(3262), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3088), + [sym_variadic_parameter] = STATE(3088), + [sym_parameter] = STATE(3088), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(408), [sym_block_comment] = STATE(408), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), [anon_sym_RPAREN] = ACTIONS(1470), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [409] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3262), - [sym_variadic_parameter] = STATE(3262), - [sym_parameter] = STATE(3262), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3088), + [sym_variadic_parameter] = STATE(3088), + [sym_parameter] = STATE(3088), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(409), [sym_block_comment] = STATE(409), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), [anon_sym_RPAREN] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [410] = { - [sym_attribute_item] = STATE(414), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3262), - [sym_variadic_parameter] = STATE(3262), - [sym_parameter] = STATE(3262), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2880), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2576), + [sym_bracketed_type] = STATE(3527), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3273), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym_closure_expression] = STATE(2855), + [sym_closure_parameters] = STATE(230), + [sym__pattern] = STATE(2640), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(410), [sym_block_comment] = STATE(410), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1456), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_POUND] = ACTIONS(1284), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, - [411] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2637), - [sym_bracketed_type] = STATE(3533), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3114), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2437), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym_closure_expression] = STATE(2897), - [sym_closure_parameters] = STATE(240), - [sym__pattern] = STATE(2684), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(411), - [sym_block_comment] = STATE(411), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), [anon_sym_RPAREN] = ACTIONS(1474), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1476), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1316), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), + }, + [411] = { + [sym_attribute_item] = STATE(415), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3088), + [sym_variadic_parameter] = STATE(3088), + [sym_parameter] = STATE(3088), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2763), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(411), + [sym_block_comment] = STATE(411), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1456), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_POUND] = ACTIONS(1280), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [412] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2637), - [sym_bracketed_type] = STATE(3533), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2576), + [sym_bracketed_type] = STATE(3527), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3114), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2437), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym_closure_expression] = STATE(2897), - [sym_closure_parameters] = STATE(240), - [sym__pattern] = STATE(2684), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3273), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym_closure_expression] = STATE(2855), + [sym_closure_parameters] = STATE(230), + [sym__pattern] = STATE(2640), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(412), [sym_block_comment] = STATE(412), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), [anon_sym_RPAREN] = ACTIONS(1492), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1476), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1316), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [413] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2637), - [sym_bracketed_type] = STATE(3533), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2576), + [sym_bracketed_type] = STATE(3527), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3114), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2437), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym_closure_expression] = STATE(2897), - [sym_closure_parameters] = STATE(240), - [sym__pattern] = STATE(2684), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3273), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym_closure_expression] = STATE(2855), + [sym_closure_parameters] = STATE(230), + [sym__pattern] = STATE(2640), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(413), [sym_block_comment] = STATE(413), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), [anon_sym_RPAREN] = ACTIONS(1494), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1476), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), [anon_sym_COMMA] = ACTIONS(1484), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1316), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [414] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(3225), - [sym_variadic_parameter] = STATE(3225), - [sym_parameter] = STATE(3225), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2829), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(2883), + [sym_variadic_parameter] = STATE(2883), + [sym_parameter] = STATE(2883), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2555), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(414), [sym_block_comment] = STATE(414), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1496), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [415] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(2943), - [sym_variadic_parameter] = STATE(2943), - [sym_parameter] = STATE(2943), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2582), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(3049), + [sym_variadic_parameter] = STATE(3049), + [sym_parameter] = STATE(3049), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2760), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(415), [sym_block_comment] = STATE(415), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1498), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [416] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(2976), - [sym_variadic_parameter] = STATE(2976), - [sym_parameter] = STATE(2976), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2510), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(2879), + [sym_variadic_parameter] = STATE(2879), + [sym_parameter] = STATE(2879), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2554), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(416), [sym_block_comment] = STATE(416), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1500), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [417] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_self_parameter] = STATE(2902), - [sym_variadic_parameter] = STATE(2902), - [sym_parameter] = STATE(2902), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2599), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(2852), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_self_parameter] = STATE(2812), + [sym_variadic_parameter] = STATE(2812), + [sym_parameter] = STATE(2812), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2614), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(2985), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3311), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3268), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(417), [sym_block_comment] = STATE(417), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1340), - [anon_sym_PIPE] = ACTIONS(1272), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1332), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1278), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1308), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1352), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1274), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1304), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1344), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [418] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2920), - [sym_bracketed_type] = STATE(3534), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2734), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3112), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2401), - [sym_scoped_identifier] = STATE(2137), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2678), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3278), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2424), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2672), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(418), [sym_block_comment] = STATE(418), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1504), [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1258), + [anon_sym_LBRACK] = ACTIONS(1254), [anon_sym_RBRACK] = ACTIONS(1508), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1510), [anon_sym_i8] = ACTIONS(1510), [anon_sym_u16] = ACTIONS(1510), @@ -63256,697 +63277,798 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1510), [anon_sym_str] = ACTIONS(1510), [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), [anon_sym_COMMA] = ACTIONS(1514), [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1522), [sym_super] = ACTIONS(1522), [sym_crate] = ACTIONS(1522), [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [419] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1973), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1983), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(829), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2090), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2093), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(419), [sym_block_comment] = STATE(419), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1528), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1354), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym_self] = ACTIONS(1530), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [420] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3534), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3527), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3112), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2401), - [sym_scoped_identifier] = STATE(2137), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2088), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3273), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2081), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(420), [sym_block_comment] = STATE(420), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1504), - [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1510), - [anon_sym_i8] = ACTIONS(1510), - [anon_sym_u16] = ACTIONS(1510), - [anon_sym_i16] = ACTIONS(1510), - [anon_sym_u32] = ACTIONS(1510), - [anon_sym_i32] = ACTIONS(1510), - [anon_sym_u64] = ACTIONS(1510), - [anon_sym_i64] = ACTIONS(1510), - [anon_sym_u128] = ACTIONS(1510), - [anon_sym_i128] = ACTIONS(1510), - [anon_sym_isize] = ACTIONS(1510), - [anon_sym_usize] = ACTIONS(1510), - [anon_sym_f32] = ACTIONS(1510), - [anon_sym_f64] = ACTIONS(1510), - [anon_sym_bool] = ACTIONS(1510), - [anon_sym_str] = ACTIONS(1510), - [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1272), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1528), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1522), - [sym_super] = ACTIONS(1522), - [sym_crate] = ACTIONS(1522), - [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym_self] = ACTIONS(1314), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1316), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [421] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1973), - [sym_bracketed_type] = STATE(3533), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1983), + [sym_bracketed_type] = STATE(3527), + [sym_lifetime] = STATE(833), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3114), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2437), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2090), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3273), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2093), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(421), [sym_block_comment] = STATE(421), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1532), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [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_metavariable] = ACTIONS(1316), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [422] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1973), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2090), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2081), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(422), [sym_block_comment] = STATE(422), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1530), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym_self] = ACTIONS(1534), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [423] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1973), - [sym_bracketed_type] = STATE(3533), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1983), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(833), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3114), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2437), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2090), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2093), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(423), [sym_block_comment] = STATE(423), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1272), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1526), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1532), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1536), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1346), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [424] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3533), - [sym_lifetime] = STATE(830), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3527), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3114), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2437), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2088), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3273), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2081), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(424), [sym_block_comment] = STATE(424), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1534), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1536), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1538), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1316), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [425] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1973), - [sym_bracketed_type] = STATE(3534), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1983), + [sym_bracketed_type] = STATE(3527), + [sym_lifetime] = STATE(829), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3112), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2401), - [sym_scoped_identifier] = STATE(2137), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2090), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3273), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2487), + [sym_scoped_identifier] = STATE(2113), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2093), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(425), [sym_block_comment] = STATE(425), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1248), + [anon_sym_LPAREN] = ACTIONS(1250), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1260), + [anon_sym_i8] = ACTIONS(1260), + [anon_sym_u16] = ACTIONS(1260), + [anon_sym_i16] = ACTIONS(1260), + [anon_sym_u32] = ACTIONS(1260), + [anon_sym_i32] = ACTIONS(1260), + [anon_sym_u64] = ACTIONS(1260), + [anon_sym_i64] = ACTIONS(1260), + [anon_sym_u128] = ACTIONS(1260), + [anon_sym_i128] = ACTIONS(1260), + [anon_sym_isize] = ACTIONS(1260), + [anon_sym_usize] = ACTIONS(1260), + [anon_sym_f32] = ACTIONS(1260), + [anon_sym_f64] = ACTIONS(1260), + [anon_sym_bool] = ACTIONS(1260), + [anon_sym_str] = ACTIONS(1260), + [anon_sym_char] = ACTIONS(1260), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1476), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(1278), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1288), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1296), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1540), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1542), + [sym_super] = ACTIONS(1314), + [sym_crate] = ACTIONS(1314), + [sym_metavariable] = ACTIONS(1316), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), + }, + [426] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1983), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(833), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3278), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2424), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2093), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(426), + [sym_block_comment] = STATE(426), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1504), [anon_sym_LPAREN] = ACTIONS(1506), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1510), [anon_sym_i8] = ACTIONS(1510), [anon_sym_u16] = ACTIONS(1510), @@ -63964,343 +64086,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1510), [anon_sym_str] = ACTIONS(1510), [anon_sym_char] = ACTIONS(1510), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1512), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), [anon_sym_COLON_COLON] = ACTIONS(1516), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), [anon_sym_default] = ACTIONS(1518), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1520), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1544), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1522), [sym_super] = ACTIONS(1522), [sym_crate] = ACTIONS(1522), [sym_metavariable] = ACTIONS(1524), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, - [426] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3533), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3114), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2437), - [sym_scoped_identifier] = STATE(2126), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2088), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(426), - [sym_block_comment] = STATE(426), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1252), - [anon_sym_LPAREN] = ACTIONS(1254), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1264), - [anon_sym_i8] = ACTIONS(1264), - [anon_sym_u16] = ACTIONS(1264), - [anon_sym_i16] = ACTIONS(1264), - [anon_sym_u32] = ACTIONS(1264), - [anon_sym_i32] = ACTIONS(1264), - [anon_sym_u64] = ACTIONS(1264), - [anon_sym_i64] = ACTIONS(1264), - [anon_sym_u128] = ACTIONS(1264), - [anon_sym_i128] = ACTIONS(1264), - [anon_sym_isize] = ACTIONS(1264), - [anon_sym_usize] = ACTIONS(1264), - [anon_sym_f32] = ACTIONS(1264), - [anon_sym_f64] = ACTIONS(1264), - [anon_sym_bool] = ACTIONS(1264), - [anon_sym_str] = ACTIONS(1264), - [anon_sym_char] = ACTIONS(1264), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1476), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1282), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1292), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1300), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1538), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1318), - [sym_super] = ACTIONS(1318), - [sym_crate] = ACTIONS(1318), - [sym_metavariable] = ACTIONS(1320), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [427] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3520), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2088), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_generic_type_with_turbofish] = STATE(3198), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2480), + [sym_scoped_identifier] = STATE(2216), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2081), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(427), [sym_block_comment] = STATE(427), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1324), + [anon_sym_LPAREN] = ACTIONS(1326), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1330), + [anon_sym_i8] = ACTIONS(1330), + [anon_sym_u16] = ACTIONS(1330), + [anon_sym_i16] = ACTIONS(1330), + [anon_sym_u32] = ACTIONS(1330), + [anon_sym_i32] = ACTIONS(1330), + [anon_sym_u64] = ACTIONS(1330), + [anon_sym_i64] = ACTIONS(1330), + [anon_sym_u128] = ACTIONS(1330), + [anon_sym_i128] = ACTIONS(1330), + [anon_sym_isize] = ACTIONS(1330), + [anon_sym_usize] = ACTIONS(1330), + [anon_sym_f32] = ACTIONS(1330), + [anon_sym_f64] = ACTIONS(1330), + [anon_sym_bool] = ACTIONS(1330), + [anon_sym_str] = ACTIONS(1330), + [anon_sym_char] = ACTIONS(1330), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1540), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_COLON_COLON] = ACTIONS(1338), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1340), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1342), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1354), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym_self] = ACTIONS(1346), + [sym_super] = ACTIONS(1346), + [sym_crate] = ACTIONS(1346), + [sym_metavariable] = ACTIONS(1348), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [428] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3526), - [sym_lifetime] = STATE(830), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3528), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), [sym_generic_type_with_turbofish] = STATE(3278), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(2426), - [sym_scoped_identifier] = STATE(2201), - [sym_scoped_type_identifier] = STATE(2127), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2088), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(2424), + [sym_scoped_identifier] = STATE(2157), + [sym_scoped_type_identifier] = STATE(2114), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2081), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(428), [sym_block_comment] = STATE(428), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1332), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_LBRACK] = ACTIONS(1258), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1338), - [anon_sym_i8] = ACTIONS(1338), - [anon_sym_u16] = ACTIONS(1338), - [anon_sym_i16] = ACTIONS(1338), - [anon_sym_u32] = ACTIONS(1338), - [anon_sym_i32] = ACTIONS(1338), - [anon_sym_u64] = ACTIONS(1338), - [anon_sym_i64] = ACTIONS(1338), - [anon_sym_u128] = ACTIONS(1338), - [anon_sym_i128] = ACTIONS(1338), - [anon_sym_isize] = ACTIONS(1338), - [anon_sym_usize] = ACTIONS(1338), - [anon_sym_f32] = ACTIONS(1338), - [anon_sym_f64] = ACTIONS(1338), - [anon_sym_bool] = ACTIONS(1338), - [anon_sym_str] = ACTIONS(1338), - [anon_sym_char] = ACTIONS(1338), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1526), - [anon_sym_PIPE] = ACTIONS(1272), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(1504), + [anon_sym_LPAREN] = ACTIONS(1506), + [anon_sym_LBRACK] = ACTIONS(1254), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1510), + [anon_sym_i8] = ACTIONS(1510), + [anon_sym_u16] = ACTIONS(1510), + [anon_sym_i16] = ACTIONS(1510), + [anon_sym_u32] = ACTIONS(1510), + [anon_sym_i32] = ACTIONS(1510), + [anon_sym_u64] = ACTIONS(1510), + [anon_sym_i64] = ACTIONS(1510), + [anon_sym_u128] = ACTIONS(1510), + [anon_sym_i128] = ACTIONS(1510), + [anon_sym_isize] = ACTIONS(1510), + [anon_sym_usize] = ACTIONS(1510), + [anon_sym_f32] = ACTIONS(1510), + [anon_sym_f64] = ACTIONS(1510), + [anon_sym_bool] = ACTIONS(1510), + [anon_sym_str] = ACTIONS(1510), + [anon_sym_char] = ACTIONS(1510), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1512), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(1346), - [anon_sym_SQUOTE] = ACTIONS(1286), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1290), - [anon_sym_default] = ACTIONS(1348), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1350), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_ref] = ACTIONS(1304), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(1542), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1544), - [sym_super] = ACTIONS(1354), - [sym_crate] = ACTIONS(1354), - [sym_metavariable] = ACTIONS(1356), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [anon_sym_COLON_COLON] = ACTIONS(1516), + [anon_sym_SQUOTE] = ACTIONS(1282), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1286), + [anon_sym_default] = ACTIONS(1518), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1520), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_ref] = ACTIONS(1300), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1522), + [sym_super] = ACTIONS(1522), + [sym_crate] = ACTIONS(1522), + [sym_metavariable] = ACTIONS(1524), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [429] = { [sym_line_comment] = STATE(429), @@ -64498,30 +64519,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1548), }, [431] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2109), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2112), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(431), [sym_block_comment] = STATE(431), [sym_identifier] = ACTIONS(1550), @@ -64570,7 +64591,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1550), [anon_sym_unsafe] = ACTIONS(1550), [anon_sym_while] = ACTIONS(1550), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_yield] = ACTIONS(1550), [anon_sym_move] = ACTIONS(1550), @@ -64590,30 +64611,30 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1552), }, [432] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2104), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2103), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(432), [sym_block_comment] = STATE(432), [sym_identifier] = ACTIONS(1554), @@ -64662,7 +64683,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_union] = ACTIONS(1554), [anon_sym_unsafe] = ACTIONS(1554), [anon_sym_while] = ACTIONS(1554), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_yield] = ACTIONS(1554), [anon_sym_move] = ACTIONS(1554), @@ -64682,44 +64703,44 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1556), }, [433] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2457), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2459), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2396), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2694), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2694), - [sym__literal] = STATE(2694), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2575), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2575), + [sym__literal] = STATE(2575), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(433), [sym_block_comment] = STATE(433), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -64737,75 +64758,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1570), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [434] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2457), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2459), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2396), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2694), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2694), - [sym__literal] = STATE(2694), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2575), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2575), + [sym__literal] = STATE(2575), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(434), [sym_block_comment] = STATE(434), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -64823,75 +64844,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1586), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [435] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2457), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2459), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2396), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2694), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2694), - [sym__literal] = STATE(2694), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2575), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2575), + [sym__literal] = STATE(2575), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(435), [sym_block_comment] = STATE(435), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -64909,75 +64930,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1588), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [436] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2457), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2459), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2396), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2694), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2694), - [sym__literal] = STATE(2694), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2575), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2575), + [sym__literal] = STATE(2575), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(436), [sym_block_comment] = STATE(436), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -64995,75 +65016,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1590), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [437] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2457), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2459), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2396), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2694), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2694), - [sym__literal] = STATE(2694), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2575), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2575), + [sym__literal] = STATE(2575), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(437), [sym_block_comment] = STATE(437), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65081,75 +65102,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1592), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [438] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2457), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2459), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2396), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2694), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2694), - [sym__literal] = STATE(2694), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2575), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2575), + [sym__literal] = STATE(2575), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(438), [sym_block_comment] = STATE(438), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65167,75 +65188,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1594), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [439] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2457), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2459), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2396), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2694), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2694), - [sym__literal] = STATE(2694), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2575), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2575), + [sym__literal] = STATE(2575), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(439), [sym_block_comment] = STATE(439), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65253,75 +65274,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1596), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [440] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2457), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2459), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2396), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2694), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2694), - [sym__literal] = STATE(2694), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2575), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2575), + [sym__literal] = STATE(2575), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(440), [sym_block_comment] = STATE(440), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65339,75 +65360,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1598), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [441] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2457), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2459), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2396), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2694), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2694), - [sym__literal] = STATE(2694), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2575), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2575), + [sym__literal] = STATE(2575), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(441), [sym_block_comment] = STATE(441), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65425,75 +65446,75 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_GT] = ACTIONS(1600), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [442] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2457), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2459), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2391), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2396), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2694), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2694), - [sym__literal] = STATE(2694), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2575), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2575), + [sym__literal] = STATE(2575), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(442), [sym_block_comment] = STATE(442), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65511,74 +65532,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [443] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2321), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2323), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2300), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2301), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2466), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2466), - [sym__literal] = STATE(2466), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2426), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2426), + [sym__literal] = STATE(2426), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(443), [sym_block_comment] = STATE(443), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65596,74 +65617,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [444] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2316), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2315), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2345), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2346), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2474), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2474), - [sym__literal] = STATE(2474), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2425), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2425), + [sym__literal] = STATE(2425), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(444), [sym_block_comment] = STATE(444), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65681,74 +65702,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [445] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2361), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2366), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2352), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2353), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_type_binding] = STATE(2419), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_label] = STATE(3588), - [sym_block] = STATE(2419), - [sym__literal] = STATE(2419), - [sym_string_literal] = STATE(2798), - [sym_raw_string_literal] = STATE(2798), - [sym_boolean_literal] = STATE(2798), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_type_binding] = STATE(2441), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_label] = STATE(3582), + [sym_block] = STATE(2441), + [sym__literal] = STATE(2441), + [sym_string_literal] = STATE(2861), + [sym_raw_string_literal] = STATE(2861), + [sym_boolean_literal] = STATE(2861), [sym_line_comment] = STATE(445), [sym_block_comment] = STATE(445), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(1558), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), [anon_sym_LBRACE] = ACTIONS(1564), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -65766,288 +65787,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(1574), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_integer_literal] = ACTIONS(1580), - [aux_sym_string_literal_token1] = ACTIONS(1312), + [aux_sym_string_literal_token1] = ACTIONS(1308), [sym_char_literal] = ACTIONS(1580), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [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_start] = ACTIONS(1322), + [sym__raw_string_literal_start] = ACTIONS(1318), [sym_float_literal] = ACTIONS(1580), }, [446] = { - [sym_else_clause] = STATE(464), + [sym_else_clause] = STATE(455), [sym_line_comment] = STATE(446), [sym_block_comment] = STATE(446), - [sym_identifier] = ACTIONS(1198), - [anon_sym_LPAREN] = ACTIONS(1196), - [anon_sym_LBRACK] = ACTIONS(1196), - [anon_sym_RBRACE] = ACTIONS(1196), - [anon_sym_PLUS] = ACTIONS(1198), - [anon_sym_STAR] = ACTIONS(1198), - [anon_sym_QMARK] = ACTIONS(1196), - [anon_sym_u8] = ACTIONS(1198), - [anon_sym_i8] = ACTIONS(1198), - [anon_sym_u16] = ACTIONS(1198), - [anon_sym_i16] = ACTIONS(1198), - [anon_sym_u32] = ACTIONS(1198), - [anon_sym_i32] = ACTIONS(1198), - [anon_sym_u64] = ACTIONS(1198), - [anon_sym_i64] = ACTIONS(1198), - [anon_sym_u128] = ACTIONS(1198), - [anon_sym_i128] = ACTIONS(1198), - [anon_sym_isize] = ACTIONS(1198), - [anon_sym_usize] = ACTIONS(1198), - [anon_sym_f32] = ACTIONS(1198), - [anon_sym_f64] = ACTIONS(1198), - [anon_sym_bool] = ACTIONS(1198), - [anon_sym_str] = ACTIONS(1198), - [anon_sym_char] = ACTIONS(1198), - [anon_sym_DASH] = ACTIONS(1198), - [anon_sym_SLASH] = ACTIONS(1198), - [anon_sym_PERCENT] = ACTIONS(1198), - [anon_sym_CARET] = ACTIONS(1198), - [anon_sym_AMP] = ACTIONS(1198), - [anon_sym_PIPE] = ACTIONS(1198), - [anon_sym_AMP_AMP] = ACTIONS(1196), - [anon_sym_PIPE_PIPE] = ACTIONS(1196), - [anon_sym_LT_LT] = ACTIONS(1198), - [anon_sym_GT_GT] = ACTIONS(1198), - [anon_sym_PLUS_EQ] = ACTIONS(1196), - [anon_sym_DASH_EQ] = ACTIONS(1196), - [anon_sym_STAR_EQ] = ACTIONS(1196), - [anon_sym_SLASH_EQ] = ACTIONS(1196), - [anon_sym_PERCENT_EQ] = ACTIONS(1196), - [anon_sym_CARET_EQ] = ACTIONS(1196), - [anon_sym_AMP_EQ] = ACTIONS(1196), - [anon_sym_PIPE_EQ] = ACTIONS(1196), - [anon_sym_LT_LT_EQ] = ACTIONS(1196), - [anon_sym_GT_GT_EQ] = ACTIONS(1196), - [anon_sym_EQ] = ACTIONS(1198), - [anon_sym_EQ_EQ] = ACTIONS(1196), - [anon_sym_BANG_EQ] = ACTIONS(1196), - [anon_sym_GT] = ACTIONS(1198), - [anon_sym_LT] = ACTIONS(1198), - [anon_sym_GT_EQ] = ACTIONS(1196), - [anon_sym_LT_EQ] = ACTIONS(1196), - [anon_sym__] = ACTIONS(1198), - [anon_sym_DOT] = ACTIONS(1198), - [anon_sym_DOT_DOT] = ACTIONS(1198), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1196), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1196), - [anon_sym_COMMA] = ACTIONS(1196), - [anon_sym_COLON_COLON] = ACTIONS(1196), - [anon_sym_POUND] = ACTIONS(1196), - [anon_sym_as] = ACTIONS(1198), - [anon_sym_const] = ACTIONS(1198), - [anon_sym_default] = ACTIONS(1198), - [anon_sym_union] = ACTIONS(1198), - [anon_sym_ref] = ACTIONS(1198), + [sym_identifier] = ACTIONS(1196), + [anon_sym_LPAREN] = ACTIONS(1194), + [anon_sym_LBRACK] = ACTIONS(1194), + [anon_sym_RBRACE] = ACTIONS(1194), + [anon_sym_PLUS] = ACTIONS(1196), + [anon_sym_STAR] = ACTIONS(1196), + [anon_sym_QMARK] = ACTIONS(1194), + [anon_sym_u8] = ACTIONS(1196), + [anon_sym_i8] = ACTIONS(1196), + [anon_sym_u16] = ACTIONS(1196), + [anon_sym_i16] = ACTIONS(1196), + [anon_sym_u32] = ACTIONS(1196), + [anon_sym_i32] = ACTIONS(1196), + [anon_sym_u64] = ACTIONS(1196), + [anon_sym_i64] = ACTIONS(1196), + [anon_sym_u128] = ACTIONS(1196), + [anon_sym_i128] = ACTIONS(1196), + [anon_sym_isize] = ACTIONS(1196), + [anon_sym_usize] = ACTIONS(1196), + [anon_sym_f32] = ACTIONS(1196), + [anon_sym_f64] = ACTIONS(1196), + [anon_sym_bool] = ACTIONS(1196), + [anon_sym_str] = ACTIONS(1196), + [anon_sym_char] = ACTIONS(1196), + [anon_sym_DASH] = ACTIONS(1196), + [anon_sym_SLASH] = ACTIONS(1196), + [anon_sym_PERCENT] = ACTIONS(1196), + [anon_sym_CARET] = ACTIONS(1196), + [anon_sym_AMP] = ACTIONS(1196), + [anon_sym_PIPE] = ACTIONS(1196), + [anon_sym_AMP_AMP] = ACTIONS(1194), + [anon_sym_PIPE_PIPE] = ACTIONS(1194), + [anon_sym_LT_LT] = ACTIONS(1196), + [anon_sym_GT_GT] = ACTIONS(1196), + [anon_sym_PLUS_EQ] = ACTIONS(1194), + [anon_sym_DASH_EQ] = ACTIONS(1194), + [anon_sym_STAR_EQ] = ACTIONS(1194), + [anon_sym_SLASH_EQ] = ACTIONS(1194), + [anon_sym_PERCENT_EQ] = ACTIONS(1194), + [anon_sym_CARET_EQ] = ACTIONS(1194), + [anon_sym_AMP_EQ] = ACTIONS(1194), + [anon_sym_PIPE_EQ] = ACTIONS(1194), + [anon_sym_LT_LT_EQ] = ACTIONS(1194), + [anon_sym_GT_GT_EQ] = ACTIONS(1194), + [anon_sym_EQ] = ACTIONS(1196), + [anon_sym_EQ_EQ] = ACTIONS(1194), + [anon_sym_BANG_EQ] = ACTIONS(1194), + [anon_sym_GT] = ACTIONS(1196), + [anon_sym_LT] = ACTIONS(1196), + [anon_sym_GT_EQ] = ACTIONS(1194), + [anon_sym_LT_EQ] = ACTIONS(1194), + [anon_sym__] = ACTIONS(1196), + [anon_sym_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT] = ACTIONS(1196), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1194), + [anon_sym_COMMA] = ACTIONS(1194), + [anon_sym_COLON_COLON] = ACTIONS(1194), + [anon_sym_POUND] = ACTIONS(1194), + [anon_sym_as] = ACTIONS(1196), + [anon_sym_const] = ACTIONS(1196), + [anon_sym_default] = ACTIONS(1196), + [anon_sym_union] = ACTIONS(1196), + [anon_sym_ref] = ACTIONS(1196), [anon_sym_else] = ACTIONS(1602), - [sym_mutable_specifier] = ACTIONS(1198), - [sym_integer_literal] = ACTIONS(1196), - [aux_sym_string_literal_token1] = ACTIONS(1196), - [sym_char_literal] = ACTIONS(1196), - [anon_sym_true] = ACTIONS(1198), - [anon_sym_false] = ACTIONS(1198), + [sym_mutable_specifier] = ACTIONS(1196), + [sym_integer_literal] = ACTIONS(1194), + [aux_sym_string_literal_token1] = ACTIONS(1194), + [sym_char_literal] = ACTIONS(1194), + [anon_sym_true] = ACTIONS(1196), + [anon_sym_false] = ACTIONS(1196), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1198), - [sym_super] = ACTIONS(1198), - [sym_crate] = ACTIONS(1198), - [sym_metavariable] = ACTIONS(1196), - [sym__raw_string_literal_start] = ACTIONS(1196), - [sym_float_literal] = ACTIONS(1196), + [sym_self] = ACTIONS(1196), + [sym_super] = ACTIONS(1196), + [sym_crate] = ACTIONS(1196), + [sym_metavariable] = ACTIONS(1194), + [sym__raw_string_literal_start] = ACTIONS(1194), + [sym_float_literal] = ACTIONS(1194), }, [447] = { [sym_line_comment] = STATE(447), [sym_block_comment] = STATE(447), - [sym_identifier] = ACTIONS(1208), - [anon_sym_LPAREN] = ACTIONS(1206), - [anon_sym_LBRACK] = ACTIONS(1206), - [anon_sym_RBRACE] = ACTIONS(1206), - [anon_sym_PLUS] = ACTIONS(1208), - [anon_sym_STAR] = ACTIONS(1208), - [anon_sym_QMARK] = ACTIONS(1206), - [anon_sym_u8] = ACTIONS(1208), - [anon_sym_i8] = ACTIONS(1208), - [anon_sym_u16] = ACTIONS(1208), - [anon_sym_i16] = ACTIONS(1208), - [anon_sym_u32] = ACTIONS(1208), - [anon_sym_i32] = ACTIONS(1208), - [anon_sym_u64] = ACTIONS(1208), - [anon_sym_i64] = ACTIONS(1208), - [anon_sym_u128] = ACTIONS(1208), - [anon_sym_i128] = ACTIONS(1208), - [anon_sym_isize] = ACTIONS(1208), - [anon_sym_usize] = ACTIONS(1208), - [anon_sym_f32] = ACTIONS(1208), - [anon_sym_f64] = ACTIONS(1208), - [anon_sym_bool] = ACTIONS(1208), - [anon_sym_str] = ACTIONS(1208), - [anon_sym_char] = ACTIONS(1208), - [anon_sym_DASH] = ACTIONS(1208), - [anon_sym_SLASH] = ACTIONS(1208), - [anon_sym_PERCENT] = ACTIONS(1208), - [anon_sym_CARET] = ACTIONS(1208), - [anon_sym_AMP] = ACTIONS(1208), - [anon_sym_PIPE] = ACTIONS(1208), - [anon_sym_AMP_AMP] = ACTIONS(1206), - [anon_sym_PIPE_PIPE] = ACTIONS(1206), - [anon_sym_LT_LT] = ACTIONS(1208), - [anon_sym_GT_GT] = ACTIONS(1208), - [anon_sym_PLUS_EQ] = ACTIONS(1206), - [anon_sym_DASH_EQ] = ACTIONS(1206), - [anon_sym_STAR_EQ] = ACTIONS(1206), - [anon_sym_SLASH_EQ] = ACTIONS(1206), - [anon_sym_PERCENT_EQ] = ACTIONS(1206), - [anon_sym_CARET_EQ] = ACTIONS(1206), - [anon_sym_AMP_EQ] = ACTIONS(1206), - [anon_sym_PIPE_EQ] = ACTIONS(1206), - [anon_sym_LT_LT_EQ] = ACTIONS(1206), - [anon_sym_GT_GT_EQ] = ACTIONS(1206), - [anon_sym_EQ] = ACTIONS(1208), - [anon_sym_EQ_EQ] = ACTIONS(1206), - [anon_sym_BANG_EQ] = ACTIONS(1206), - [anon_sym_GT] = ACTIONS(1208), - [anon_sym_LT] = ACTIONS(1208), - [anon_sym_GT_EQ] = ACTIONS(1206), - [anon_sym_LT_EQ] = ACTIONS(1206), - [anon_sym__] = ACTIONS(1208), - [anon_sym_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT] = ACTIONS(1208), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1206), - [anon_sym_COMMA] = ACTIONS(1206), - [anon_sym_COLON_COLON] = ACTIONS(1206), - [anon_sym_POUND] = ACTIONS(1206), - [anon_sym_as] = ACTIONS(1208), - [anon_sym_const] = ACTIONS(1208), - [anon_sym_default] = ACTIONS(1208), - [anon_sym_union] = ACTIONS(1208), - [anon_sym_ref] = ACTIONS(1208), - [anon_sym_else] = ACTIONS(1208), - [sym_mutable_specifier] = ACTIONS(1208), - [sym_integer_literal] = ACTIONS(1206), - [aux_sym_string_literal_token1] = ACTIONS(1206), - [sym_char_literal] = ACTIONS(1206), - [anon_sym_true] = ACTIONS(1208), - [anon_sym_false] = ACTIONS(1208), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1208), - [sym_super] = ACTIONS(1208), - [sym_crate] = ACTIONS(1208), - [sym_metavariable] = ACTIONS(1206), - [sym__raw_string_literal_start] = ACTIONS(1206), - [sym_float_literal] = ACTIONS(1206), - }, - [448] = { - [sym_line_comment] = STATE(448), - [sym_block_comment] = STATE(448), - [sym_identifier] = ACTIONS(1234), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_PLUS] = ACTIONS(1234), - [anon_sym_STAR] = ACTIONS(1234), - [anon_sym_QMARK] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1234), - [anon_sym_SLASH] = ACTIONS(1234), - [anon_sym_PERCENT] = ACTIONS(1234), - [anon_sym_CARET] = ACTIONS(1234), - [anon_sym_AMP] = ACTIONS(1234), - [anon_sym_PIPE] = ACTIONS(1234), - [anon_sym_AMP_AMP] = ACTIONS(1232), - [anon_sym_PIPE_PIPE] = ACTIONS(1232), - [anon_sym_LT_LT] = ACTIONS(1234), - [anon_sym_GT_GT] = ACTIONS(1234), - [anon_sym_PLUS_EQ] = ACTIONS(1232), - [anon_sym_DASH_EQ] = ACTIONS(1232), - [anon_sym_STAR_EQ] = ACTIONS(1232), - [anon_sym_SLASH_EQ] = ACTIONS(1232), - [anon_sym_PERCENT_EQ] = ACTIONS(1232), - [anon_sym_CARET_EQ] = ACTIONS(1232), - [anon_sym_AMP_EQ] = ACTIONS(1232), - [anon_sym_PIPE_EQ] = ACTIONS(1232), - [anon_sym_LT_LT_EQ] = ACTIONS(1232), - [anon_sym_GT_GT_EQ] = ACTIONS(1232), - [anon_sym_EQ] = ACTIONS(1234), - [anon_sym_EQ_EQ] = ACTIONS(1232), - [anon_sym_BANG_EQ] = ACTIONS(1232), - [anon_sym_GT] = ACTIONS(1234), - [anon_sym_LT] = ACTIONS(1234), - [anon_sym_GT_EQ] = ACTIONS(1232), - [anon_sym_LT_EQ] = ACTIONS(1232), - [anon_sym__] = ACTIONS(1234), - [anon_sym_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT] = ACTIONS(1234), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), - [anon_sym_COMMA] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_as] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_ref] = ACTIONS(1234), - [anon_sym_else] = ACTIONS(1234), - [sym_mutable_specifier] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [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(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), - }, - [449] = { - [sym_line_comment] = STATE(449), - [sym_block_comment] = STATE(449), [sym_identifier] = ACTIONS(1242), [anon_sym_LPAREN] = ACTIONS(1240), [anon_sym_LBRACK] = ACTIONS(1240), @@ -66128,92 +65983,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1240), [sym_float_literal] = ACTIONS(1240), }, - [450] = { - [sym_line_comment] = STATE(450), - [sym_block_comment] = STATE(450), - [sym_identifier] = ACTIONS(1238), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_STAR] = ACTIONS(1238), - [anon_sym_QMARK] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_SLASH] = ACTIONS(1238), - [anon_sym_PERCENT] = ACTIONS(1238), - [anon_sym_CARET] = ACTIONS(1238), - [anon_sym_AMP] = ACTIONS(1238), - [anon_sym_PIPE] = ACTIONS(1238), - [anon_sym_AMP_AMP] = ACTIONS(1236), - [anon_sym_PIPE_PIPE] = ACTIONS(1236), - [anon_sym_LT_LT] = ACTIONS(1238), - [anon_sym_GT_GT] = ACTIONS(1238), - [anon_sym_PLUS_EQ] = ACTIONS(1236), - [anon_sym_DASH_EQ] = ACTIONS(1236), - [anon_sym_STAR_EQ] = ACTIONS(1236), - [anon_sym_SLASH_EQ] = ACTIONS(1236), - [anon_sym_PERCENT_EQ] = ACTIONS(1236), - [anon_sym_CARET_EQ] = ACTIONS(1236), - [anon_sym_AMP_EQ] = ACTIONS(1236), - [anon_sym_PIPE_EQ] = ACTIONS(1236), - [anon_sym_LT_LT_EQ] = ACTIONS(1236), - [anon_sym_GT_GT_EQ] = ACTIONS(1236), - [anon_sym_EQ] = ACTIONS(1238), - [anon_sym_EQ_EQ] = ACTIONS(1236), - [anon_sym_BANG_EQ] = ACTIONS(1236), - [anon_sym_GT] = ACTIONS(1238), - [anon_sym_LT] = ACTIONS(1238), - [anon_sym_GT_EQ] = ACTIONS(1236), - [anon_sym_LT_EQ] = ACTIONS(1236), - [anon_sym__] = ACTIONS(1238), - [anon_sym_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT] = ACTIONS(1238), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), - [anon_sym_COMMA] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_as] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_ref] = ACTIONS(1238), - [anon_sym_else] = ACTIONS(1238), - [sym_mutable_specifier] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), - }, - [451] = { - [sym_line_comment] = STATE(451), - [sym_block_comment] = STATE(451), + [448] = { + [sym_line_comment] = STATE(448), + [sym_block_comment] = STATE(448), [sym_identifier] = ACTIONS(1246), [anon_sym_LPAREN] = ACTIONS(1244), [anon_sym_LBRACK] = ACTIONS(1244), @@ -66294,665 +66066,258 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1244), [sym_float_literal] = ACTIONS(1244), }, - [452] = { - [sym_line_comment] = STATE(452), - [sym_block_comment] = STATE(452), - [sym_identifier] = ACTIONS(1412), - [anon_sym_LPAREN] = ACTIONS(1410), - [anon_sym_LBRACK] = ACTIONS(1410), - [anon_sym_RBRACE] = ACTIONS(1410), - [anon_sym_PLUS] = ACTIONS(1412), - [anon_sym_STAR] = ACTIONS(1412), - [anon_sym_QMARK] = ACTIONS(1410), - [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_DASH] = ACTIONS(1412), - [anon_sym_SLASH] = ACTIONS(1412), - [anon_sym_PERCENT] = ACTIONS(1412), - [anon_sym_CARET] = ACTIONS(1412), - [anon_sym_AMP] = ACTIONS(1412), - [anon_sym_PIPE] = ACTIONS(1412), - [anon_sym_AMP_AMP] = ACTIONS(1410), - [anon_sym_PIPE_PIPE] = ACTIONS(1410), - [anon_sym_LT_LT] = ACTIONS(1412), - [anon_sym_GT_GT] = ACTIONS(1412), - [anon_sym_PLUS_EQ] = ACTIONS(1410), - [anon_sym_DASH_EQ] = ACTIONS(1410), - [anon_sym_STAR_EQ] = ACTIONS(1410), - [anon_sym_SLASH_EQ] = ACTIONS(1410), - [anon_sym_PERCENT_EQ] = ACTIONS(1410), - [anon_sym_CARET_EQ] = ACTIONS(1410), - [anon_sym_AMP_EQ] = ACTIONS(1410), - [anon_sym_PIPE_EQ] = ACTIONS(1410), - [anon_sym_LT_LT_EQ] = ACTIONS(1410), - [anon_sym_GT_GT_EQ] = ACTIONS(1410), - [anon_sym_EQ] = ACTIONS(1412), - [anon_sym_EQ_EQ] = ACTIONS(1410), - [anon_sym_BANG_EQ] = ACTIONS(1410), - [anon_sym_GT] = ACTIONS(1412), - [anon_sym_LT] = ACTIONS(1412), - [anon_sym_GT_EQ] = ACTIONS(1410), - [anon_sym_LT_EQ] = ACTIONS(1410), - [anon_sym__] = ACTIONS(1412), - [anon_sym_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT] = ACTIONS(1412), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1410), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1410), - [anon_sym_COMMA] = ACTIONS(1410), - [anon_sym_COLON_COLON] = ACTIONS(1410), - [anon_sym_POUND] = ACTIONS(1410), - [anon_sym_as] = ACTIONS(1412), - [anon_sym_const] = ACTIONS(1412), - [anon_sym_default] = ACTIONS(1412), - [anon_sym_union] = ACTIONS(1412), - [anon_sym_ref] = ACTIONS(1412), - [sym_mutable_specifier] = ACTIONS(1412), - [sym_integer_literal] = ACTIONS(1410), - [aux_sym_string_literal_token1] = ACTIONS(1410), - [sym_char_literal] = ACTIONS(1410), - [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(1410), - [sym__raw_string_literal_start] = ACTIONS(1410), - [sym_float_literal] = ACTIONS(1410), - }, - [453] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_arm] = STATE(1476), - [sym_last_match_arm] = STATE(3412), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(453), - [sym_block_comment] = STATE(453), - [aux_sym_match_block_repeat1] = STATE(478), - [aux_sym_match_arm_repeat1] = STATE(757), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1610), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_POUND] = ACTIONS(1626), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), + [449] = { + [sym_line_comment] = STATE(449), + [sym_block_comment] = STATE(449), + [sym_identifier] = ACTIONS(1208), + [anon_sym_LPAREN] = ACTIONS(1206), + [anon_sym_LBRACK] = ACTIONS(1206), + [anon_sym_RBRACE] = ACTIONS(1206), + [anon_sym_PLUS] = ACTIONS(1208), + [anon_sym_STAR] = ACTIONS(1208), + [anon_sym_QMARK] = ACTIONS(1206), + [anon_sym_u8] = ACTIONS(1208), + [anon_sym_i8] = ACTIONS(1208), + [anon_sym_u16] = ACTIONS(1208), + [anon_sym_i16] = ACTIONS(1208), + [anon_sym_u32] = ACTIONS(1208), + [anon_sym_i32] = ACTIONS(1208), + [anon_sym_u64] = ACTIONS(1208), + [anon_sym_i64] = ACTIONS(1208), + [anon_sym_u128] = ACTIONS(1208), + [anon_sym_i128] = ACTIONS(1208), + [anon_sym_isize] = ACTIONS(1208), + [anon_sym_usize] = ACTIONS(1208), + [anon_sym_f32] = ACTIONS(1208), + [anon_sym_f64] = ACTIONS(1208), + [anon_sym_bool] = ACTIONS(1208), + [anon_sym_str] = ACTIONS(1208), + [anon_sym_char] = ACTIONS(1208), + [anon_sym_DASH] = ACTIONS(1208), + [anon_sym_SLASH] = ACTIONS(1208), + [anon_sym_PERCENT] = ACTIONS(1208), + [anon_sym_CARET] = ACTIONS(1208), + [anon_sym_AMP] = ACTIONS(1208), + [anon_sym_PIPE] = ACTIONS(1208), + [anon_sym_AMP_AMP] = ACTIONS(1206), + [anon_sym_PIPE_PIPE] = ACTIONS(1206), + [anon_sym_LT_LT] = ACTIONS(1208), + [anon_sym_GT_GT] = ACTIONS(1208), + [anon_sym_PLUS_EQ] = ACTIONS(1206), + [anon_sym_DASH_EQ] = ACTIONS(1206), + [anon_sym_STAR_EQ] = ACTIONS(1206), + [anon_sym_SLASH_EQ] = ACTIONS(1206), + [anon_sym_PERCENT_EQ] = ACTIONS(1206), + [anon_sym_CARET_EQ] = ACTIONS(1206), + [anon_sym_AMP_EQ] = ACTIONS(1206), + [anon_sym_PIPE_EQ] = ACTIONS(1206), + [anon_sym_LT_LT_EQ] = ACTIONS(1206), + [anon_sym_GT_GT_EQ] = ACTIONS(1206), + [anon_sym_EQ] = ACTIONS(1208), + [anon_sym_EQ_EQ] = ACTIONS(1206), + [anon_sym_BANG_EQ] = ACTIONS(1206), + [anon_sym_GT] = ACTIONS(1208), + [anon_sym_LT] = ACTIONS(1208), + [anon_sym_GT_EQ] = ACTIONS(1206), + [anon_sym_LT_EQ] = ACTIONS(1206), + [anon_sym__] = ACTIONS(1208), + [anon_sym_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT] = ACTIONS(1208), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1206), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1206), + [anon_sym_COMMA] = ACTIONS(1206), + [anon_sym_COLON_COLON] = ACTIONS(1206), + [anon_sym_POUND] = ACTIONS(1206), + [anon_sym_as] = ACTIONS(1208), + [anon_sym_const] = ACTIONS(1208), + [anon_sym_default] = ACTIONS(1208), + [anon_sym_union] = ACTIONS(1208), + [anon_sym_ref] = ACTIONS(1208), + [anon_sym_else] = ACTIONS(1208), + [sym_mutable_specifier] = ACTIONS(1208), + [sym_integer_literal] = ACTIONS(1206), + [aux_sym_string_literal_token1] = ACTIONS(1206), + [sym_char_literal] = ACTIONS(1206), + [anon_sym_true] = ACTIONS(1208), + [anon_sym_false] = ACTIONS(1208), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), - }, - [454] = { - [sym_line_comment] = STATE(454), - [sym_block_comment] = STATE(454), - [sym_identifier] = ACTIONS(1448), - [anon_sym_LPAREN] = ACTIONS(1446), - [anon_sym_LBRACK] = ACTIONS(1446), - [anon_sym_RBRACE] = ACTIONS(1446), - [anon_sym_PLUS] = ACTIONS(1448), - [anon_sym_STAR] = ACTIONS(1448), - [anon_sym_QMARK] = ACTIONS(1446), - [anon_sym_u8] = ACTIONS(1448), - [anon_sym_i8] = ACTIONS(1448), - [anon_sym_u16] = ACTIONS(1448), - [anon_sym_i16] = ACTIONS(1448), - [anon_sym_u32] = ACTIONS(1448), - [anon_sym_i32] = ACTIONS(1448), - [anon_sym_u64] = ACTIONS(1448), - [anon_sym_i64] = ACTIONS(1448), - [anon_sym_u128] = ACTIONS(1448), - [anon_sym_i128] = ACTIONS(1448), - [anon_sym_isize] = ACTIONS(1448), - [anon_sym_usize] = ACTIONS(1448), - [anon_sym_f32] = ACTIONS(1448), - [anon_sym_f64] = ACTIONS(1448), - [anon_sym_bool] = ACTIONS(1448), - [anon_sym_str] = ACTIONS(1448), - [anon_sym_char] = ACTIONS(1448), - [anon_sym_DASH] = ACTIONS(1448), - [anon_sym_SLASH] = ACTIONS(1448), - [anon_sym_PERCENT] = ACTIONS(1448), - [anon_sym_CARET] = ACTIONS(1448), - [anon_sym_AMP] = ACTIONS(1448), - [anon_sym_PIPE] = ACTIONS(1448), - [anon_sym_AMP_AMP] = ACTIONS(1446), - [anon_sym_PIPE_PIPE] = ACTIONS(1446), - [anon_sym_LT_LT] = ACTIONS(1448), - [anon_sym_GT_GT] = ACTIONS(1448), - [anon_sym_PLUS_EQ] = ACTIONS(1446), - [anon_sym_DASH_EQ] = ACTIONS(1446), - [anon_sym_STAR_EQ] = ACTIONS(1446), - [anon_sym_SLASH_EQ] = ACTIONS(1446), - [anon_sym_PERCENT_EQ] = ACTIONS(1446), - [anon_sym_CARET_EQ] = ACTIONS(1446), - [anon_sym_AMP_EQ] = ACTIONS(1446), - [anon_sym_PIPE_EQ] = ACTIONS(1446), - [anon_sym_LT_LT_EQ] = ACTIONS(1446), - [anon_sym_GT_GT_EQ] = ACTIONS(1446), - [anon_sym_EQ] = ACTIONS(1448), - [anon_sym_EQ_EQ] = ACTIONS(1446), - [anon_sym_BANG_EQ] = ACTIONS(1446), - [anon_sym_GT] = ACTIONS(1448), - [anon_sym_LT] = ACTIONS(1448), - [anon_sym_GT_EQ] = ACTIONS(1446), - [anon_sym_LT_EQ] = ACTIONS(1446), - [anon_sym__] = ACTIONS(1448), - [anon_sym_DOT] = ACTIONS(1448), - [anon_sym_DOT_DOT] = ACTIONS(1448), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1446), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1446), - [anon_sym_COMMA] = ACTIONS(1446), - [anon_sym_COLON_COLON] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(1446), - [anon_sym_as] = ACTIONS(1448), - [anon_sym_const] = ACTIONS(1448), - [anon_sym_default] = ACTIONS(1448), - [anon_sym_union] = ACTIONS(1448), - [anon_sym_ref] = ACTIONS(1448), - [sym_mutable_specifier] = ACTIONS(1448), - [sym_integer_literal] = ACTIONS(1446), - [aux_sym_string_literal_token1] = ACTIONS(1446), - [sym_char_literal] = ACTIONS(1446), - [anon_sym_true] = ACTIONS(1448), - [anon_sym_false] = ACTIONS(1448), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1448), - [sym_super] = ACTIONS(1448), - [sym_crate] = ACTIONS(1448), - [sym_metavariable] = ACTIONS(1446), - [sym__raw_string_literal_start] = ACTIONS(1446), - [sym_float_literal] = ACTIONS(1446), - }, - [455] = { - [sym_line_comment] = STATE(455), - [sym_block_comment] = STATE(455), - [sym_identifier] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1396), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_PLUS] = ACTIONS(1398), - [anon_sym_STAR] = ACTIONS(1398), - [anon_sym_QMARK] = ACTIONS(1396), - [anon_sym_u8] = ACTIONS(1398), - [anon_sym_i8] = ACTIONS(1398), - [anon_sym_u16] = ACTIONS(1398), - [anon_sym_i16] = ACTIONS(1398), - [anon_sym_u32] = ACTIONS(1398), - [anon_sym_i32] = ACTIONS(1398), - [anon_sym_u64] = ACTIONS(1398), - [anon_sym_i64] = ACTIONS(1398), - [anon_sym_u128] = ACTIONS(1398), - [anon_sym_i128] = ACTIONS(1398), - [anon_sym_isize] = ACTIONS(1398), - [anon_sym_usize] = ACTIONS(1398), - [anon_sym_f32] = ACTIONS(1398), - [anon_sym_f64] = ACTIONS(1398), - [anon_sym_bool] = ACTIONS(1398), - [anon_sym_str] = ACTIONS(1398), - [anon_sym_char] = ACTIONS(1398), - [anon_sym_DASH] = ACTIONS(1398), - [anon_sym_SLASH] = ACTIONS(1398), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1398), - [anon_sym_AMP_AMP] = ACTIONS(1396), - [anon_sym_PIPE_PIPE] = ACTIONS(1396), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1398), - [anon_sym_PLUS_EQ] = ACTIONS(1396), - [anon_sym_DASH_EQ] = ACTIONS(1396), - [anon_sym_STAR_EQ] = ACTIONS(1396), - [anon_sym_SLASH_EQ] = ACTIONS(1396), - [anon_sym_PERCENT_EQ] = ACTIONS(1396), - [anon_sym_CARET_EQ] = ACTIONS(1396), - [anon_sym_AMP_EQ] = ACTIONS(1396), - [anon_sym_PIPE_EQ] = ACTIONS(1396), - [anon_sym_LT_LT_EQ] = ACTIONS(1396), - [anon_sym_GT_GT_EQ] = ACTIONS(1396), - [anon_sym_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1396), - [anon_sym_BANG_EQ] = ACTIONS(1396), - [anon_sym_GT] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1396), - [anon_sym_LT_EQ] = ACTIONS(1396), - [anon_sym__] = ACTIONS(1398), - [anon_sym_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT] = ACTIONS(1398), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1396), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1396), - [anon_sym_COLON_COLON] = ACTIONS(1396), - [anon_sym_POUND] = ACTIONS(1396), - [anon_sym_as] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [anon_sym_default] = ACTIONS(1398), - [anon_sym_union] = ACTIONS(1398), - [anon_sym_ref] = ACTIONS(1398), - [sym_mutable_specifier] = ACTIONS(1398), - [sym_integer_literal] = ACTIONS(1396), - [aux_sym_string_literal_token1] = ACTIONS(1396), - [sym_char_literal] = ACTIONS(1396), - [anon_sym_true] = ACTIONS(1398), - [anon_sym_false] = ACTIONS(1398), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1398), - [sym_super] = ACTIONS(1398), - [sym_crate] = ACTIONS(1398), - [sym_metavariable] = ACTIONS(1396), - [sym__raw_string_literal_start] = ACTIONS(1396), - [sym_float_literal] = ACTIONS(1396), + [sym_self] = ACTIONS(1208), + [sym_super] = ACTIONS(1208), + [sym_crate] = ACTIONS(1208), + [sym_metavariable] = ACTIONS(1206), + [sym__raw_string_literal_start] = ACTIONS(1206), + [sym_float_literal] = ACTIONS(1206), }, - [456] = { - [sym_line_comment] = STATE(456), - [sym_block_comment] = STATE(456), - [sym_identifier] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(1650), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1648), - [anon_sym_i8] = ACTIONS(1648), - [anon_sym_u16] = ACTIONS(1648), - [anon_sym_i16] = ACTIONS(1648), - [anon_sym_u32] = ACTIONS(1648), - [anon_sym_i32] = ACTIONS(1648), - [anon_sym_u64] = ACTIONS(1648), - [anon_sym_i64] = ACTIONS(1648), - [anon_sym_u128] = ACTIONS(1648), - [anon_sym_i128] = ACTIONS(1648), - [anon_sym_isize] = ACTIONS(1648), - [anon_sym_usize] = ACTIONS(1648), - [anon_sym_f32] = ACTIONS(1648), - [anon_sym_f64] = ACTIONS(1648), - [anon_sym_bool] = ACTIONS(1648), - [anon_sym_str] = ACTIONS(1648), - [anon_sym_char] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1648), - [anon_sym_PIPE] = ACTIONS(1648), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1394), - [anon_sym_DASH_EQ] = ACTIONS(1394), - [anon_sym_STAR_EQ] = ACTIONS(1394), - [anon_sym_SLASH_EQ] = ACTIONS(1394), - [anon_sym_PERCENT_EQ] = ACTIONS(1394), - [anon_sym_CARET_EQ] = ACTIONS(1394), - [anon_sym_AMP_EQ] = ACTIONS(1394), - [anon_sym_PIPE_EQ] = ACTIONS(1394), - [anon_sym_LT_LT_EQ] = ACTIONS(1394), - [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1648), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym__] = ACTIONS(1648), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1648), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1650), - [anon_sym_POUND] = ACTIONS(1650), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1648), - [anon_sym_default] = ACTIONS(1648), - [anon_sym_union] = ACTIONS(1648), - [anon_sym_ref] = ACTIONS(1648), - [sym_mutable_specifier] = ACTIONS(1648), - [sym_integer_literal] = ACTIONS(1650), - [aux_sym_string_literal_token1] = ACTIONS(1650), - [sym_char_literal] = ACTIONS(1650), - [anon_sym_true] = ACTIONS(1648), - [anon_sym_false] = ACTIONS(1648), + [450] = { + [sym_line_comment] = STATE(450), + [sym_block_comment] = STATE(450), + [sym_identifier] = ACTIONS(1234), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_STAR] = ACTIONS(1234), + [anon_sym_QMARK] = ACTIONS(1232), + [anon_sym_u8] = ACTIONS(1234), + [anon_sym_i8] = ACTIONS(1234), + [anon_sym_u16] = ACTIONS(1234), + [anon_sym_i16] = ACTIONS(1234), + [anon_sym_u32] = ACTIONS(1234), + [anon_sym_i32] = ACTIONS(1234), + [anon_sym_u64] = ACTIONS(1234), + [anon_sym_i64] = ACTIONS(1234), + [anon_sym_u128] = ACTIONS(1234), + [anon_sym_i128] = ACTIONS(1234), + [anon_sym_isize] = ACTIONS(1234), + [anon_sym_usize] = ACTIONS(1234), + [anon_sym_f32] = ACTIONS(1234), + [anon_sym_f64] = ACTIONS(1234), + [anon_sym_bool] = ACTIONS(1234), + [anon_sym_str] = ACTIONS(1234), + [anon_sym_char] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_SLASH] = ACTIONS(1234), + [anon_sym_PERCENT] = ACTIONS(1234), + [anon_sym_CARET] = ACTIONS(1234), + [anon_sym_AMP] = ACTIONS(1234), + [anon_sym_PIPE] = ACTIONS(1234), + [anon_sym_AMP_AMP] = ACTIONS(1232), + [anon_sym_PIPE_PIPE] = ACTIONS(1232), + [anon_sym_LT_LT] = ACTIONS(1234), + [anon_sym_GT_GT] = ACTIONS(1234), + [anon_sym_PLUS_EQ] = ACTIONS(1232), + [anon_sym_DASH_EQ] = ACTIONS(1232), + [anon_sym_STAR_EQ] = ACTIONS(1232), + [anon_sym_SLASH_EQ] = ACTIONS(1232), + [anon_sym_PERCENT_EQ] = ACTIONS(1232), + [anon_sym_CARET_EQ] = ACTIONS(1232), + [anon_sym_AMP_EQ] = ACTIONS(1232), + [anon_sym_PIPE_EQ] = ACTIONS(1232), + [anon_sym_LT_LT_EQ] = ACTIONS(1232), + [anon_sym_GT_GT_EQ] = ACTIONS(1232), + [anon_sym_EQ] = ACTIONS(1234), + [anon_sym_EQ_EQ] = ACTIONS(1232), + [anon_sym_BANG_EQ] = ACTIONS(1232), + [anon_sym_GT] = ACTIONS(1234), + [anon_sym_LT] = ACTIONS(1234), + [anon_sym_GT_EQ] = ACTIONS(1232), + [anon_sym_LT_EQ] = ACTIONS(1232), + [anon_sym__] = ACTIONS(1234), + [anon_sym_DOT] = ACTIONS(1234), + [anon_sym_DOT_DOT] = ACTIONS(1234), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1232), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1232), + [anon_sym_COMMA] = ACTIONS(1232), + [anon_sym_COLON_COLON] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1232), + [anon_sym_as] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_ref] = ACTIONS(1234), + [anon_sym_else] = ACTIONS(1234), + [sym_mutable_specifier] = ACTIONS(1234), + [sym_integer_literal] = ACTIONS(1232), + [aux_sym_string_literal_token1] = ACTIONS(1232), + [sym_char_literal] = ACTIONS(1232), + [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(1648), - [sym_super] = ACTIONS(1648), - [sym_crate] = ACTIONS(1648), - [sym_metavariable] = ACTIONS(1650), - [sym__raw_string_literal_start] = ACTIONS(1650), - [sym_float_literal] = ACTIONS(1650), - }, - [457] = { - [sym_line_comment] = STATE(457), - [sym_block_comment] = STATE(457), - [sym_identifier] = ACTIONS(1250), - [anon_sym_LPAREN] = ACTIONS(1248), - [anon_sym_LBRACK] = ACTIONS(1248), - [anon_sym_RBRACE] = ACTIONS(1248), - [anon_sym_PLUS] = ACTIONS(1250), - [anon_sym_STAR] = ACTIONS(1250), - [anon_sym_QMARK] = ACTIONS(1248), - [anon_sym_u8] = ACTIONS(1250), - [anon_sym_i8] = ACTIONS(1250), - [anon_sym_u16] = ACTIONS(1250), - [anon_sym_i16] = ACTIONS(1250), - [anon_sym_u32] = ACTIONS(1250), - [anon_sym_i32] = ACTIONS(1250), - [anon_sym_u64] = ACTIONS(1250), - [anon_sym_i64] = ACTIONS(1250), - [anon_sym_u128] = ACTIONS(1250), - [anon_sym_i128] = ACTIONS(1250), - [anon_sym_isize] = ACTIONS(1250), - [anon_sym_usize] = ACTIONS(1250), - [anon_sym_f32] = ACTIONS(1250), - [anon_sym_f64] = ACTIONS(1250), - [anon_sym_bool] = ACTIONS(1250), - [anon_sym_str] = ACTIONS(1250), - [anon_sym_char] = ACTIONS(1250), - [anon_sym_DASH] = ACTIONS(1250), - [anon_sym_SLASH] = ACTIONS(1250), - [anon_sym_PERCENT] = ACTIONS(1250), - [anon_sym_CARET] = ACTIONS(1250), - [anon_sym_AMP] = ACTIONS(1250), - [anon_sym_PIPE] = ACTIONS(1250), - [anon_sym_AMP_AMP] = ACTIONS(1248), - [anon_sym_PIPE_PIPE] = ACTIONS(1248), - [anon_sym_LT_LT] = ACTIONS(1250), - [anon_sym_GT_GT] = ACTIONS(1250), - [anon_sym_PLUS_EQ] = ACTIONS(1248), - [anon_sym_DASH_EQ] = ACTIONS(1248), - [anon_sym_STAR_EQ] = ACTIONS(1248), - [anon_sym_SLASH_EQ] = ACTIONS(1248), - [anon_sym_PERCENT_EQ] = ACTIONS(1248), - [anon_sym_CARET_EQ] = ACTIONS(1248), - [anon_sym_AMP_EQ] = ACTIONS(1248), - [anon_sym_PIPE_EQ] = ACTIONS(1248), - [anon_sym_LT_LT_EQ] = ACTIONS(1248), - [anon_sym_GT_GT_EQ] = ACTIONS(1248), - [anon_sym_EQ] = ACTIONS(1250), - [anon_sym_EQ_EQ] = ACTIONS(1248), - [anon_sym_BANG_EQ] = ACTIONS(1248), - [anon_sym_GT] = ACTIONS(1250), - [anon_sym_LT] = ACTIONS(1250), - [anon_sym_GT_EQ] = ACTIONS(1248), - [anon_sym_LT_EQ] = ACTIONS(1248), - [anon_sym__] = ACTIONS(1250), - [anon_sym_DOT] = ACTIONS(1250), - [anon_sym_DOT_DOT] = ACTIONS(1250), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1248), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1248), - [anon_sym_COMMA] = ACTIONS(1248), - [anon_sym_COLON_COLON] = ACTIONS(1248), - [anon_sym_POUND] = ACTIONS(1248), - [anon_sym_as] = ACTIONS(1250), - [anon_sym_const] = ACTIONS(1250), - [anon_sym_default] = ACTIONS(1250), - [anon_sym_union] = ACTIONS(1250), - [anon_sym_ref] = ACTIONS(1250), - [sym_mutable_specifier] = ACTIONS(1250), - [sym_integer_literal] = ACTIONS(1248), - [aux_sym_string_literal_token1] = ACTIONS(1248), - [sym_char_literal] = ACTIONS(1248), - [anon_sym_true] = ACTIONS(1250), - [anon_sym_false] = ACTIONS(1250), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1250), - [sym_super] = ACTIONS(1250), - [sym_crate] = ACTIONS(1250), - [sym_metavariable] = ACTIONS(1248), - [sym__raw_string_literal_start] = ACTIONS(1248), - [sym_float_literal] = ACTIONS(1248), - }, - [458] = { - [sym_line_comment] = STATE(458), - [sym_block_comment] = STATE(458), - [sym_identifier] = ACTIONS(1360), - [anon_sym_LPAREN] = ACTIONS(1358), - [anon_sym_LBRACK] = ACTIONS(1358), - [anon_sym_RBRACE] = ACTIONS(1358), - [anon_sym_PLUS] = ACTIONS(1360), - [anon_sym_STAR] = ACTIONS(1360), - [anon_sym_QMARK] = ACTIONS(1358), - [anon_sym_u8] = ACTIONS(1360), - [anon_sym_i8] = ACTIONS(1360), - [anon_sym_u16] = ACTIONS(1360), - [anon_sym_i16] = ACTIONS(1360), - [anon_sym_u32] = ACTIONS(1360), - [anon_sym_i32] = ACTIONS(1360), - [anon_sym_u64] = ACTIONS(1360), - [anon_sym_i64] = ACTIONS(1360), - [anon_sym_u128] = ACTIONS(1360), - [anon_sym_i128] = ACTIONS(1360), - [anon_sym_isize] = ACTIONS(1360), - [anon_sym_usize] = ACTIONS(1360), - [anon_sym_f32] = ACTIONS(1360), - [anon_sym_f64] = ACTIONS(1360), - [anon_sym_bool] = ACTIONS(1360), - [anon_sym_str] = ACTIONS(1360), - [anon_sym_char] = ACTIONS(1360), - [anon_sym_DASH] = ACTIONS(1360), - [anon_sym_SLASH] = ACTIONS(1360), - [anon_sym_PERCENT] = ACTIONS(1360), - [anon_sym_CARET] = ACTIONS(1360), - [anon_sym_AMP] = ACTIONS(1360), - [anon_sym_PIPE] = ACTIONS(1360), - [anon_sym_AMP_AMP] = ACTIONS(1358), - [anon_sym_PIPE_PIPE] = ACTIONS(1358), - [anon_sym_LT_LT] = ACTIONS(1360), - [anon_sym_GT_GT] = ACTIONS(1360), - [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_CARET_EQ] = ACTIONS(1358), - [anon_sym_AMP_EQ] = ACTIONS(1358), - [anon_sym_PIPE_EQ] = ACTIONS(1358), - [anon_sym_LT_LT_EQ] = ACTIONS(1358), - [anon_sym_GT_GT_EQ] = ACTIONS(1358), - [anon_sym_EQ] = ACTIONS(1360), - [anon_sym_EQ_EQ] = ACTIONS(1358), - [anon_sym_BANG_EQ] = ACTIONS(1358), - [anon_sym_GT] = ACTIONS(1360), - [anon_sym_LT] = ACTIONS(1360), - [anon_sym_GT_EQ] = ACTIONS(1358), - [anon_sym_LT_EQ] = ACTIONS(1358), - [anon_sym__] = ACTIONS(1360), - [anon_sym_DOT] = ACTIONS(1360), - [anon_sym_DOT_DOT] = ACTIONS(1360), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1358), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1358), - [anon_sym_COMMA] = ACTIONS(1358), - [anon_sym_COLON_COLON] = ACTIONS(1358), - [anon_sym_POUND] = ACTIONS(1358), - [anon_sym_as] = ACTIONS(1360), - [anon_sym_const] = ACTIONS(1360), - [anon_sym_default] = ACTIONS(1360), - [anon_sym_union] = ACTIONS(1360), - [anon_sym_ref] = ACTIONS(1360), - [sym_mutable_specifier] = ACTIONS(1360), - [sym_integer_literal] = ACTIONS(1358), - [aux_sym_string_literal_token1] = ACTIONS(1358), - [sym_char_literal] = ACTIONS(1358), - [anon_sym_true] = ACTIONS(1360), - [anon_sym_false] = ACTIONS(1360), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1360), - [sym_super] = ACTIONS(1360), - [sym_crate] = ACTIONS(1360), - [sym_metavariable] = ACTIONS(1358), - [sym__raw_string_literal_start] = ACTIONS(1358), - [sym_float_literal] = ACTIONS(1358), + [sym_self] = ACTIONS(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1232), + [sym__raw_string_literal_start] = ACTIONS(1232), + [sym_float_literal] = ACTIONS(1232), }, - [459] = { - [sym_line_comment] = STATE(459), - [sym_block_comment] = STATE(459), - [sym_identifier] = ACTIONS(1444), - [anon_sym_LPAREN] = ACTIONS(1442), - [anon_sym_LBRACK] = ACTIONS(1442), - [anon_sym_RBRACE] = ACTIONS(1442), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_STAR] = ACTIONS(1444), - [anon_sym_QMARK] = ACTIONS(1442), - [anon_sym_u8] = ACTIONS(1444), - [anon_sym_i8] = ACTIONS(1444), - [anon_sym_u16] = ACTIONS(1444), - [anon_sym_i16] = ACTIONS(1444), - [anon_sym_u32] = ACTIONS(1444), - [anon_sym_i32] = ACTIONS(1444), - [anon_sym_u64] = ACTIONS(1444), - [anon_sym_i64] = ACTIONS(1444), - [anon_sym_u128] = ACTIONS(1444), - [anon_sym_i128] = ACTIONS(1444), - [anon_sym_isize] = ACTIONS(1444), - [anon_sym_usize] = ACTIONS(1444), - [anon_sym_f32] = ACTIONS(1444), - [anon_sym_f64] = ACTIONS(1444), - [anon_sym_bool] = ACTIONS(1444), - [anon_sym_str] = ACTIONS(1444), - [anon_sym_char] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_SLASH] = ACTIONS(1444), - [anon_sym_PERCENT] = ACTIONS(1444), - [anon_sym_CARET] = ACTIONS(1444), - [anon_sym_AMP] = ACTIONS(1444), - [anon_sym_PIPE] = ACTIONS(1444), - [anon_sym_AMP_AMP] = ACTIONS(1442), - [anon_sym_PIPE_PIPE] = ACTIONS(1442), - [anon_sym_LT_LT] = ACTIONS(1444), - [anon_sym_GT_GT] = ACTIONS(1444), - [anon_sym_PLUS_EQ] = ACTIONS(1442), - [anon_sym_DASH_EQ] = ACTIONS(1442), - [anon_sym_STAR_EQ] = ACTIONS(1442), - [anon_sym_SLASH_EQ] = ACTIONS(1442), - [anon_sym_PERCENT_EQ] = ACTIONS(1442), - [anon_sym_CARET_EQ] = ACTIONS(1442), - [anon_sym_AMP_EQ] = ACTIONS(1442), - [anon_sym_PIPE_EQ] = ACTIONS(1442), - [anon_sym_LT_LT_EQ] = ACTIONS(1442), - [anon_sym_GT_GT_EQ] = ACTIONS(1442), - [anon_sym_EQ] = ACTIONS(1444), - [anon_sym_EQ_EQ] = ACTIONS(1442), - [anon_sym_BANG_EQ] = ACTIONS(1442), - [anon_sym_GT] = ACTIONS(1444), - [anon_sym_LT] = ACTIONS(1444), - [anon_sym_GT_EQ] = ACTIONS(1442), - [anon_sym_LT_EQ] = ACTIONS(1442), - [anon_sym__] = ACTIONS(1444), - [anon_sym_DOT] = ACTIONS(1444), - [anon_sym_DOT_DOT] = ACTIONS(1444), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1442), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1442), - [anon_sym_COMMA] = ACTIONS(1442), - [anon_sym_COLON_COLON] = ACTIONS(1442), - [anon_sym_POUND] = ACTIONS(1442), - [anon_sym_as] = ACTIONS(1444), - [anon_sym_const] = ACTIONS(1444), - [anon_sym_default] = ACTIONS(1444), - [anon_sym_union] = ACTIONS(1444), - [anon_sym_ref] = ACTIONS(1444), - [sym_mutable_specifier] = ACTIONS(1444), - [sym_integer_literal] = ACTIONS(1442), - [aux_sym_string_literal_token1] = ACTIONS(1442), - [sym_char_literal] = ACTIONS(1442), - [anon_sym_true] = ACTIONS(1444), - [anon_sym_false] = ACTIONS(1444), + [451] = { + [sym_line_comment] = STATE(451), + [sym_block_comment] = STATE(451), + [sym_identifier] = ACTIONS(1238), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_PLUS] = ACTIONS(1238), + [anon_sym_STAR] = ACTIONS(1238), + [anon_sym_QMARK] = ACTIONS(1236), + [anon_sym_u8] = ACTIONS(1238), + [anon_sym_i8] = ACTIONS(1238), + [anon_sym_u16] = ACTIONS(1238), + [anon_sym_i16] = ACTIONS(1238), + [anon_sym_u32] = ACTIONS(1238), + [anon_sym_i32] = ACTIONS(1238), + [anon_sym_u64] = ACTIONS(1238), + [anon_sym_i64] = ACTIONS(1238), + [anon_sym_u128] = ACTIONS(1238), + [anon_sym_i128] = ACTIONS(1238), + [anon_sym_isize] = ACTIONS(1238), + [anon_sym_usize] = ACTIONS(1238), + [anon_sym_f32] = ACTIONS(1238), + [anon_sym_f64] = ACTIONS(1238), + [anon_sym_bool] = ACTIONS(1238), + [anon_sym_str] = ACTIONS(1238), + [anon_sym_char] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1238), + [anon_sym_SLASH] = ACTIONS(1238), + [anon_sym_PERCENT] = ACTIONS(1238), + [anon_sym_CARET] = ACTIONS(1238), + [anon_sym_AMP] = ACTIONS(1238), + [anon_sym_PIPE] = ACTIONS(1238), + [anon_sym_AMP_AMP] = ACTIONS(1236), + [anon_sym_PIPE_PIPE] = ACTIONS(1236), + [anon_sym_LT_LT] = ACTIONS(1238), + [anon_sym_GT_GT] = ACTIONS(1238), + [anon_sym_PLUS_EQ] = ACTIONS(1236), + [anon_sym_DASH_EQ] = ACTIONS(1236), + [anon_sym_STAR_EQ] = ACTIONS(1236), + [anon_sym_SLASH_EQ] = ACTIONS(1236), + [anon_sym_PERCENT_EQ] = ACTIONS(1236), + [anon_sym_CARET_EQ] = ACTIONS(1236), + [anon_sym_AMP_EQ] = ACTIONS(1236), + [anon_sym_PIPE_EQ] = ACTIONS(1236), + [anon_sym_LT_LT_EQ] = ACTIONS(1236), + [anon_sym_GT_GT_EQ] = ACTIONS(1236), + [anon_sym_EQ] = ACTIONS(1238), + [anon_sym_EQ_EQ] = ACTIONS(1236), + [anon_sym_BANG_EQ] = ACTIONS(1236), + [anon_sym_GT] = ACTIONS(1238), + [anon_sym_LT] = ACTIONS(1238), + [anon_sym_GT_EQ] = ACTIONS(1236), + [anon_sym_LT_EQ] = ACTIONS(1236), + [anon_sym__] = ACTIONS(1238), + [anon_sym_DOT] = ACTIONS(1238), + [anon_sym_DOT_DOT] = ACTIONS(1238), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1236), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1236), + [anon_sym_COMMA] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_as] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_ref] = ACTIONS(1238), + [anon_sym_else] = ACTIONS(1238), + [sym_mutable_specifier] = ACTIONS(1238), + [sym_integer_literal] = ACTIONS(1236), + [aux_sym_string_literal_token1] = ACTIONS(1236), + [sym_char_literal] = ACTIONS(1236), + [anon_sym_true] = ACTIONS(1238), + [anon_sym_false] = ACTIONS(1238), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1444), - [sym_super] = ACTIONS(1444), - [sym_crate] = ACTIONS(1444), - [sym_metavariable] = ACTIONS(1442), - [sym__raw_string_literal_start] = ACTIONS(1442), - [sym_float_literal] = ACTIONS(1442), + [sym_self] = ACTIONS(1238), + [sym_super] = ACTIONS(1238), + [sym_crate] = ACTIONS(1238), + [sym_metavariable] = ACTIONS(1236), + [sym__raw_string_literal_start] = ACTIONS(1236), + [sym_float_literal] = ACTIONS(1236), }, - [460] = { - [sym_line_comment] = STATE(460), - [sym_block_comment] = STATE(460), + [452] = { + [sym_line_comment] = STATE(452), + [sym_block_comment] = STATE(452), [sym_identifier] = ACTIONS(1364), [anon_sym_LPAREN] = ACTIONS(1362), [anon_sym_LBRACK] = ACTIONS(1362), @@ -67032,371 +66397,453 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1362), [sym_float_literal] = ACTIONS(1362), }, - [461] = { - [sym_line_comment] = STATE(461), - [sym_block_comment] = STATE(461), - [sym_identifier] = ACTIONS(1402), - [anon_sym_LPAREN] = ACTIONS(1400), - [anon_sym_LBRACK] = ACTIONS(1400), - [anon_sym_RBRACE] = ACTIONS(1400), - [anon_sym_PLUS] = ACTIONS(1402), - [anon_sym_STAR] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(1400), - [anon_sym_u8] = ACTIONS(1402), - [anon_sym_i8] = ACTIONS(1402), - [anon_sym_u16] = ACTIONS(1402), - [anon_sym_i16] = ACTIONS(1402), - [anon_sym_u32] = ACTIONS(1402), - [anon_sym_i32] = ACTIONS(1402), - [anon_sym_u64] = ACTIONS(1402), - [anon_sym_i64] = ACTIONS(1402), - [anon_sym_u128] = ACTIONS(1402), - [anon_sym_i128] = ACTIONS(1402), - [anon_sym_isize] = ACTIONS(1402), - [anon_sym_usize] = ACTIONS(1402), - [anon_sym_f32] = ACTIONS(1402), - [anon_sym_f64] = ACTIONS(1402), - [anon_sym_bool] = ACTIONS(1402), - [anon_sym_str] = ACTIONS(1402), - [anon_sym_char] = ACTIONS(1402), - [anon_sym_DASH] = ACTIONS(1402), - [anon_sym_SLASH] = ACTIONS(1402), - [anon_sym_PERCENT] = ACTIONS(1402), - [anon_sym_CARET] = ACTIONS(1402), - [anon_sym_AMP] = ACTIONS(1402), - [anon_sym_PIPE] = ACTIONS(1402), - [anon_sym_AMP_AMP] = ACTIONS(1400), - [anon_sym_PIPE_PIPE] = ACTIONS(1400), - [anon_sym_LT_LT] = ACTIONS(1402), - [anon_sym_GT_GT] = ACTIONS(1402), - [anon_sym_PLUS_EQ] = ACTIONS(1400), - [anon_sym_DASH_EQ] = ACTIONS(1400), - [anon_sym_STAR_EQ] = ACTIONS(1400), - [anon_sym_SLASH_EQ] = ACTIONS(1400), - [anon_sym_PERCENT_EQ] = ACTIONS(1400), - [anon_sym_CARET_EQ] = ACTIONS(1400), - [anon_sym_AMP_EQ] = ACTIONS(1400), - [anon_sym_PIPE_EQ] = ACTIONS(1400), - [anon_sym_LT_LT_EQ] = ACTIONS(1400), - [anon_sym_GT_GT_EQ] = ACTIONS(1400), - [anon_sym_EQ] = ACTIONS(1402), - [anon_sym_EQ_EQ] = ACTIONS(1400), - [anon_sym_BANG_EQ] = ACTIONS(1400), - [anon_sym_GT] = ACTIONS(1402), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT_EQ] = ACTIONS(1400), - [anon_sym_LT_EQ] = ACTIONS(1400), - [anon_sym__] = ACTIONS(1402), - [anon_sym_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT] = ACTIONS(1402), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1400), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1400), - [anon_sym_COMMA] = ACTIONS(1400), - [anon_sym_COLON_COLON] = ACTIONS(1400), - [anon_sym_POUND] = ACTIONS(1400), - [anon_sym_as] = ACTIONS(1402), - [anon_sym_const] = ACTIONS(1402), - [anon_sym_default] = ACTIONS(1402), - [anon_sym_union] = ACTIONS(1402), - [anon_sym_ref] = ACTIONS(1402), - [sym_mutable_specifier] = ACTIONS(1402), - [sym_integer_literal] = ACTIONS(1400), - [aux_sym_string_literal_token1] = ACTIONS(1400), - [sym_char_literal] = ACTIONS(1400), - [anon_sym_true] = ACTIONS(1402), - [anon_sym_false] = ACTIONS(1402), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1402), - [sym_super] = ACTIONS(1402), - [sym_crate] = ACTIONS(1402), - [sym_metavariable] = ACTIONS(1400), - [sym__raw_string_literal_start] = ACTIONS(1400), - [sym_float_literal] = ACTIONS(1400), + [453] = { + [sym_line_comment] = STATE(453), + [sym_block_comment] = STATE(453), + [sym_identifier] = ACTIONS(1430), + [anon_sym_LPAREN] = ACTIONS(1428), + [anon_sym_LBRACK] = ACTIONS(1428), + [anon_sym_RBRACE] = ACTIONS(1428), + [anon_sym_PLUS] = ACTIONS(1430), + [anon_sym_STAR] = ACTIONS(1430), + [anon_sym_QMARK] = ACTIONS(1428), + [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_DASH] = ACTIONS(1430), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_PERCENT] = ACTIONS(1430), + [anon_sym_CARET] = ACTIONS(1430), + [anon_sym_AMP] = ACTIONS(1430), + [anon_sym_PIPE] = ACTIONS(1430), + [anon_sym_AMP_AMP] = ACTIONS(1428), + [anon_sym_PIPE_PIPE] = ACTIONS(1428), + [anon_sym_LT_LT] = ACTIONS(1430), + [anon_sym_GT_GT] = ACTIONS(1430), + [anon_sym_PLUS_EQ] = ACTIONS(1428), + [anon_sym_DASH_EQ] = ACTIONS(1428), + [anon_sym_STAR_EQ] = ACTIONS(1428), + [anon_sym_SLASH_EQ] = ACTIONS(1428), + [anon_sym_PERCENT_EQ] = ACTIONS(1428), + [anon_sym_CARET_EQ] = ACTIONS(1428), + [anon_sym_AMP_EQ] = ACTIONS(1428), + [anon_sym_PIPE_EQ] = ACTIONS(1428), + [anon_sym_LT_LT_EQ] = ACTIONS(1428), + [anon_sym_GT_GT_EQ] = ACTIONS(1428), + [anon_sym_EQ] = ACTIONS(1430), + [anon_sym_EQ_EQ] = ACTIONS(1428), + [anon_sym_BANG_EQ] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1430), + [anon_sym_LT] = ACTIONS(1430), + [anon_sym_GT_EQ] = ACTIONS(1428), + [anon_sym_LT_EQ] = ACTIONS(1428), + [anon_sym__] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1430), + [anon_sym_DOT_DOT] = ACTIONS(1430), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1428), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1428), + [anon_sym_COMMA] = ACTIONS(1428), + [anon_sym_COLON_COLON] = ACTIONS(1428), + [anon_sym_POUND] = ACTIONS(1428), + [anon_sym_as] = ACTIONS(1430), + [anon_sym_const] = ACTIONS(1430), + [anon_sym_default] = ACTIONS(1430), + [anon_sym_union] = ACTIONS(1430), + [anon_sym_ref] = ACTIONS(1430), + [sym_mutable_specifier] = ACTIONS(1430), + [sym_integer_literal] = ACTIONS(1428), + [aux_sym_string_literal_token1] = ACTIONS(1428), + [sym_char_literal] = ACTIONS(1428), + [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(1428), + [sym__raw_string_literal_start] = ACTIONS(1428), + [sym_float_literal] = ACTIONS(1428), }, - [462] = { - [sym_line_comment] = STATE(462), - [sym_block_comment] = STATE(462), - [sym_identifier] = ACTIONS(1376), - [anon_sym_LPAREN] = ACTIONS(1374), - [anon_sym_LBRACK] = ACTIONS(1374), - [anon_sym_RBRACE] = ACTIONS(1374), - [anon_sym_PLUS] = ACTIONS(1376), - [anon_sym_STAR] = ACTIONS(1376), - [anon_sym_QMARK] = ACTIONS(1374), - [anon_sym_u8] = ACTIONS(1376), - [anon_sym_i8] = ACTIONS(1376), - [anon_sym_u16] = ACTIONS(1376), - [anon_sym_i16] = ACTIONS(1376), - [anon_sym_u32] = ACTIONS(1376), - [anon_sym_i32] = ACTIONS(1376), - [anon_sym_u64] = ACTIONS(1376), - [anon_sym_i64] = ACTIONS(1376), - [anon_sym_u128] = ACTIONS(1376), - [anon_sym_i128] = ACTIONS(1376), - [anon_sym_isize] = ACTIONS(1376), - [anon_sym_usize] = ACTIONS(1376), - [anon_sym_f32] = ACTIONS(1376), - [anon_sym_f64] = ACTIONS(1376), - [anon_sym_bool] = ACTIONS(1376), - [anon_sym_str] = ACTIONS(1376), - [anon_sym_char] = ACTIONS(1376), - [anon_sym_DASH] = ACTIONS(1376), - [anon_sym_SLASH] = ACTIONS(1376), - [anon_sym_PERCENT] = ACTIONS(1376), - [anon_sym_CARET] = ACTIONS(1376), - [anon_sym_AMP] = ACTIONS(1376), - [anon_sym_PIPE] = ACTIONS(1376), - [anon_sym_AMP_AMP] = ACTIONS(1374), - [anon_sym_PIPE_PIPE] = ACTIONS(1374), - [anon_sym_LT_LT] = ACTIONS(1376), - [anon_sym_GT_GT] = ACTIONS(1376), - [anon_sym_PLUS_EQ] = ACTIONS(1374), - [anon_sym_DASH_EQ] = ACTIONS(1374), - [anon_sym_STAR_EQ] = ACTIONS(1374), - [anon_sym_SLASH_EQ] = ACTIONS(1374), - [anon_sym_PERCENT_EQ] = ACTIONS(1374), - [anon_sym_CARET_EQ] = ACTIONS(1374), - [anon_sym_AMP_EQ] = ACTIONS(1374), - [anon_sym_PIPE_EQ] = ACTIONS(1374), - [anon_sym_LT_LT_EQ] = ACTIONS(1374), - [anon_sym_GT_GT_EQ] = ACTIONS(1374), - [anon_sym_EQ] = ACTIONS(1376), - [anon_sym_EQ_EQ] = ACTIONS(1374), - [anon_sym_BANG_EQ] = ACTIONS(1374), - [anon_sym_GT] = ACTIONS(1376), - [anon_sym_LT] = ACTIONS(1376), - [anon_sym_GT_EQ] = ACTIONS(1374), - [anon_sym_LT_EQ] = ACTIONS(1374), - [anon_sym__] = ACTIONS(1376), - [anon_sym_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT] = ACTIONS(1376), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1374), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), - [anon_sym_COMMA] = ACTIONS(1374), - [anon_sym_COLON_COLON] = ACTIONS(1374), - [anon_sym_POUND] = ACTIONS(1374), - [anon_sym_as] = ACTIONS(1376), - [anon_sym_const] = ACTIONS(1376), - [anon_sym_default] = ACTIONS(1376), - [anon_sym_union] = ACTIONS(1376), - [anon_sym_ref] = ACTIONS(1376), - [sym_mutable_specifier] = ACTIONS(1376), - [sym_integer_literal] = ACTIONS(1374), - [aux_sym_string_literal_token1] = ACTIONS(1374), - [sym_char_literal] = ACTIONS(1374), - [anon_sym_true] = ACTIONS(1376), - [anon_sym_false] = ACTIONS(1376), + [454] = { + [sym_line_comment] = STATE(454), + [sym_block_comment] = STATE(454), + [sym_identifier] = ACTIONS(1372), + [anon_sym_LPAREN] = ACTIONS(1370), + [anon_sym_LBRACK] = ACTIONS(1370), + [anon_sym_RBRACE] = ACTIONS(1370), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_STAR] = ACTIONS(1372), + [anon_sym_QMARK] = ACTIONS(1370), + [anon_sym_u8] = ACTIONS(1372), + [anon_sym_i8] = ACTIONS(1372), + [anon_sym_u16] = ACTIONS(1372), + [anon_sym_i16] = ACTIONS(1372), + [anon_sym_u32] = ACTIONS(1372), + [anon_sym_i32] = ACTIONS(1372), + [anon_sym_u64] = ACTIONS(1372), + [anon_sym_i64] = ACTIONS(1372), + [anon_sym_u128] = ACTIONS(1372), + [anon_sym_i128] = ACTIONS(1372), + [anon_sym_isize] = ACTIONS(1372), + [anon_sym_usize] = ACTIONS(1372), + [anon_sym_f32] = ACTIONS(1372), + [anon_sym_f64] = ACTIONS(1372), + [anon_sym_bool] = ACTIONS(1372), + [anon_sym_str] = ACTIONS(1372), + [anon_sym_char] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), + [anon_sym_SLASH] = ACTIONS(1372), + [anon_sym_PERCENT] = ACTIONS(1372), + [anon_sym_CARET] = ACTIONS(1372), + [anon_sym_AMP] = ACTIONS(1372), + [anon_sym_PIPE] = ACTIONS(1372), + [anon_sym_AMP_AMP] = ACTIONS(1370), + [anon_sym_PIPE_PIPE] = ACTIONS(1370), + [anon_sym_LT_LT] = ACTIONS(1372), + [anon_sym_GT_GT] = ACTIONS(1372), + [anon_sym_PLUS_EQ] = ACTIONS(1370), + [anon_sym_DASH_EQ] = ACTIONS(1370), + [anon_sym_STAR_EQ] = ACTIONS(1370), + [anon_sym_SLASH_EQ] = ACTIONS(1370), + [anon_sym_PERCENT_EQ] = ACTIONS(1370), + [anon_sym_CARET_EQ] = ACTIONS(1370), + [anon_sym_AMP_EQ] = ACTIONS(1370), + [anon_sym_PIPE_EQ] = ACTIONS(1370), + [anon_sym_LT_LT_EQ] = ACTIONS(1370), + [anon_sym_GT_GT_EQ] = ACTIONS(1370), + [anon_sym_EQ] = ACTIONS(1372), + [anon_sym_EQ_EQ] = ACTIONS(1370), + [anon_sym_BANG_EQ] = ACTIONS(1370), + [anon_sym_GT] = ACTIONS(1372), + [anon_sym_LT] = ACTIONS(1372), + [anon_sym_GT_EQ] = ACTIONS(1370), + [anon_sym_LT_EQ] = ACTIONS(1370), + [anon_sym__] = ACTIONS(1372), + [anon_sym_DOT] = ACTIONS(1372), + [anon_sym_DOT_DOT] = ACTIONS(1372), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), + [anon_sym_COMMA] = ACTIONS(1370), + [anon_sym_COLON_COLON] = ACTIONS(1370), + [anon_sym_POUND] = ACTIONS(1370), + [anon_sym_as] = ACTIONS(1372), + [anon_sym_const] = ACTIONS(1372), + [anon_sym_default] = ACTIONS(1372), + [anon_sym_union] = ACTIONS(1372), + [anon_sym_ref] = ACTIONS(1372), + [sym_mutable_specifier] = ACTIONS(1372), + [sym_integer_literal] = ACTIONS(1370), + [aux_sym_string_literal_token1] = ACTIONS(1370), + [sym_char_literal] = ACTIONS(1370), + [anon_sym_true] = ACTIONS(1372), + [anon_sym_false] = ACTIONS(1372), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1376), - [sym_super] = ACTIONS(1376), - [sym_crate] = ACTIONS(1376), - [sym_metavariable] = ACTIONS(1374), - [sym__raw_string_literal_start] = ACTIONS(1374), - [sym_float_literal] = ACTIONS(1374), + [sym_self] = ACTIONS(1372), + [sym_super] = ACTIONS(1372), + [sym_crate] = ACTIONS(1372), + [sym_metavariable] = ACTIONS(1370), + [sym__raw_string_literal_start] = ACTIONS(1370), + [sym_float_literal] = ACTIONS(1370), }, - [463] = { - [sym_line_comment] = STATE(463), - [sym_block_comment] = STATE(463), - [sym_identifier] = ACTIONS(1652), - [anon_sym_LPAREN] = ACTIONS(1654), - [anon_sym_LBRACK] = ACTIONS(1654), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1392), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_u8] = ACTIONS(1652), - [anon_sym_i8] = ACTIONS(1652), - [anon_sym_u16] = ACTIONS(1652), - [anon_sym_i16] = ACTIONS(1652), - [anon_sym_u32] = ACTIONS(1652), - [anon_sym_i32] = ACTIONS(1652), - [anon_sym_u64] = ACTIONS(1652), - [anon_sym_i64] = ACTIONS(1652), - [anon_sym_u128] = ACTIONS(1652), - [anon_sym_i128] = ACTIONS(1652), - [anon_sym_isize] = ACTIONS(1652), - [anon_sym_usize] = ACTIONS(1652), - [anon_sym_f32] = ACTIONS(1652), - [anon_sym_f64] = ACTIONS(1652), - [anon_sym_bool] = ACTIONS(1652), - [anon_sym_str] = ACTIONS(1652), - [anon_sym_char] = ACTIONS(1652), - [anon_sym_DASH] = ACTIONS(1652), - [anon_sym_SLASH] = ACTIONS(1392), - [anon_sym_PERCENT] = ACTIONS(1392), - [anon_sym_CARET] = ACTIONS(1392), - [anon_sym_AMP] = ACTIONS(1652), - [anon_sym_PIPE] = ACTIONS(1652), - [anon_sym_AMP_AMP] = ACTIONS(1394), - [anon_sym_PIPE_PIPE] = ACTIONS(1394), - [anon_sym_LT_LT] = ACTIONS(1392), - [anon_sym_GT_GT] = ACTIONS(1392), - [anon_sym_PLUS_EQ] = ACTIONS(1394), - [anon_sym_DASH_EQ] = ACTIONS(1394), - [anon_sym_STAR_EQ] = ACTIONS(1394), - [anon_sym_SLASH_EQ] = ACTIONS(1394), - [anon_sym_PERCENT_EQ] = ACTIONS(1394), - [anon_sym_CARET_EQ] = ACTIONS(1394), - [anon_sym_AMP_EQ] = ACTIONS(1394), - [anon_sym_PIPE_EQ] = ACTIONS(1394), - [anon_sym_LT_LT_EQ] = ACTIONS(1394), - [anon_sym_GT_GT_EQ] = ACTIONS(1394), - [anon_sym_EQ] = ACTIONS(1392), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_GT] = ACTIONS(1392), - [anon_sym_LT] = ACTIONS(1652), - [anon_sym_GT_EQ] = ACTIONS(1394), - [anon_sym_LT_EQ] = ACTIONS(1394), - [anon_sym__] = ACTIONS(1652), - [anon_sym_DOT] = ACTIONS(1392), - [anon_sym_DOT_DOT] = ACTIONS(1652), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), - [anon_sym_COMMA] = ACTIONS(1394), - [anon_sym_COLON_COLON] = ACTIONS(1654), - [anon_sym_POUND] = ACTIONS(1654), - [anon_sym_as] = ACTIONS(1392), - [anon_sym_const] = ACTIONS(1652), - [anon_sym_default] = ACTIONS(1652), - [anon_sym_union] = ACTIONS(1652), - [anon_sym_ref] = ACTIONS(1652), - [sym_mutable_specifier] = ACTIONS(1652), - [sym_integer_literal] = ACTIONS(1654), - [aux_sym_string_literal_token1] = ACTIONS(1654), - [sym_char_literal] = ACTIONS(1654), - [anon_sym_true] = ACTIONS(1652), - [anon_sym_false] = ACTIONS(1652), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1652), - [sym_super] = ACTIONS(1652), - [sym_crate] = ACTIONS(1652), - [sym_metavariable] = ACTIONS(1654), - [sym__raw_string_literal_start] = ACTIONS(1654), - [sym_float_literal] = ACTIONS(1654), + [455] = { + [sym_line_comment] = STATE(455), + [sym_block_comment] = STATE(455), + [sym_identifier] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1386), + [anon_sym_RBRACE] = ACTIONS(1386), + [anon_sym_PLUS] = ACTIONS(1388), + [anon_sym_STAR] = ACTIONS(1388), + [anon_sym_QMARK] = ACTIONS(1386), + [anon_sym_u8] = ACTIONS(1388), + [anon_sym_i8] = ACTIONS(1388), + [anon_sym_u16] = ACTIONS(1388), + [anon_sym_i16] = ACTIONS(1388), + [anon_sym_u32] = ACTIONS(1388), + [anon_sym_i32] = ACTIONS(1388), + [anon_sym_u64] = ACTIONS(1388), + [anon_sym_i64] = ACTIONS(1388), + [anon_sym_u128] = ACTIONS(1388), + [anon_sym_i128] = ACTIONS(1388), + [anon_sym_isize] = ACTIONS(1388), + [anon_sym_usize] = ACTIONS(1388), + [anon_sym_f32] = ACTIONS(1388), + [anon_sym_f64] = ACTIONS(1388), + [anon_sym_bool] = ACTIONS(1388), + [anon_sym_str] = ACTIONS(1388), + [anon_sym_char] = ACTIONS(1388), + [anon_sym_DASH] = ACTIONS(1388), + [anon_sym_SLASH] = ACTIONS(1388), + [anon_sym_PERCENT] = ACTIONS(1388), + [anon_sym_CARET] = ACTIONS(1388), + [anon_sym_AMP] = ACTIONS(1388), + [anon_sym_PIPE] = ACTIONS(1388), + [anon_sym_AMP_AMP] = ACTIONS(1386), + [anon_sym_PIPE_PIPE] = ACTIONS(1386), + [anon_sym_LT_LT] = ACTIONS(1388), + [anon_sym_GT_GT] = ACTIONS(1388), + [anon_sym_PLUS_EQ] = ACTIONS(1386), + [anon_sym_DASH_EQ] = ACTIONS(1386), + [anon_sym_STAR_EQ] = ACTIONS(1386), + [anon_sym_SLASH_EQ] = ACTIONS(1386), + [anon_sym_PERCENT_EQ] = ACTIONS(1386), + [anon_sym_CARET_EQ] = ACTIONS(1386), + [anon_sym_AMP_EQ] = ACTIONS(1386), + [anon_sym_PIPE_EQ] = ACTIONS(1386), + [anon_sym_LT_LT_EQ] = ACTIONS(1386), + [anon_sym_GT_GT_EQ] = ACTIONS(1386), + [anon_sym_EQ] = ACTIONS(1388), + [anon_sym_EQ_EQ] = ACTIONS(1386), + [anon_sym_BANG_EQ] = ACTIONS(1386), + [anon_sym_GT] = ACTIONS(1388), + [anon_sym_LT] = ACTIONS(1388), + [anon_sym_GT_EQ] = ACTIONS(1386), + [anon_sym_LT_EQ] = ACTIONS(1386), + [anon_sym__] = ACTIONS(1388), + [anon_sym_DOT] = ACTIONS(1388), + [anon_sym_DOT_DOT] = ACTIONS(1388), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1386), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1386), + [anon_sym_COMMA] = ACTIONS(1386), + [anon_sym_COLON_COLON] = ACTIONS(1386), + [anon_sym_POUND] = ACTIONS(1386), + [anon_sym_as] = ACTIONS(1388), + [anon_sym_const] = ACTIONS(1388), + [anon_sym_default] = ACTIONS(1388), + [anon_sym_union] = ACTIONS(1388), + [anon_sym_ref] = ACTIONS(1388), + [sym_mutable_specifier] = ACTIONS(1388), + [sym_integer_literal] = ACTIONS(1386), + [aux_sym_string_literal_token1] = ACTIONS(1386), + [sym_char_literal] = ACTIONS(1386), + [anon_sym_true] = ACTIONS(1388), + [anon_sym_false] = ACTIONS(1388), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1388), + [sym_super] = ACTIONS(1388), + [sym_crate] = ACTIONS(1388), + [sym_metavariable] = ACTIONS(1386), + [sym__raw_string_literal_start] = ACTIONS(1386), + [sym_float_literal] = ACTIONS(1386), }, - [464] = { - [sym_line_comment] = STATE(464), - [sym_block_comment] = STATE(464), - [sym_identifier] = ACTIONS(1428), - [anon_sym_LPAREN] = ACTIONS(1426), - [anon_sym_LBRACK] = ACTIONS(1426), - [anon_sym_RBRACE] = ACTIONS(1426), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_STAR] = ACTIONS(1428), - [anon_sym_QMARK] = ACTIONS(1426), - [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_DASH] = ACTIONS(1428), - [anon_sym_SLASH] = ACTIONS(1428), - [anon_sym_PERCENT] = ACTIONS(1428), - [anon_sym_CARET] = ACTIONS(1428), - [anon_sym_AMP] = ACTIONS(1428), - [anon_sym_PIPE] = ACTIONS(1428), - [anon_sym_AMP_AMP] = ACTIONS(1426), - [anon_sym_PIPE_PIPE] = ACTIONS(1426), - [anon_sym_LT_LT] = ACTIONS(1428), - [anon_sym_GT_GT] = ACTIONS(1428), - [anon_sym_PLUS_EQ] = ACTIONS(1426), - [anon_sym_DASH_EQ] = ACTIONS(1426), - [anon_sym_STAR_EQ] = ACTIONS(1426), - [anon_sym_SLASH_EQ] = ACTIONS(1426), - [anon_sym_PERCENT_EQ] = ACTIONS(1426), - [anon_sym_CARET_EQ] = ACTIONS(1426), - [anon_sym_AMP_EQ] = ACTIONS(1426), - [anon_sym_PIPE_EQ] = ACTIONS(1426), - [anon_sym_LT_LT_EQ] = ACTIONS(1426), - [anon_sym_GT_GT_EQ] = ACTIONS(1426), - [anon_sym_EQ] = ACTIONS(1428), - [anon_sym_EQ_EQ] = ACTIONS(1426), - [anon_sym_BANG_EQ] = ACTIONS(1426), - [anon_sym_GT] = ACTIONS(1428), - [anon_sym_LT] = ACTIONS(1428), - [anon_sym_GT_EQ] = ACTIONS(1426), - [anon_sym_LT_EQ] = ACTIONS(1426), - [anon_sym__] = ACTIONS(1428), - [anon_sym_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT] = ACTIONS(1428), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1426), - [anon_sym_COMMA] = ACTIONS(1426), - [anon_sym_COLON_COLON] = ACTIONS(1426), - [anon_sym_POUND] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1428), - [anon_sym_const] = ACTIONS(1428), - [anon_sym_default] = ACTIONS(1428), - [anon_sym_union] = ACTIONS(1428), - [anon_sym_ref] = ACTIONS(1428), - [sym_mutable_specifier] = ACTIONS(1428), - [sym_integer_literal] = ACTIONS(1426), - [aux_sym_string_literal_token1] = ACTIONS(1426), - [sym_char_literal] = ACTIONS(1426), - [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(1426), - [sym__raw_string_literal_start] = ACTIONS(1426), - [sym_float_literal] = ACTIONS(1426), + [456] = { + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_arm] = STATE(1471), + [sym_last_match_arm] = STATE(3546), + [sym_match_pattern] = STATE(3345), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(456), + [sym_block_comment] = STATE(456), + [aux_sym_match_block_repeat1] = STATE(478), + [aux_sym_match_arm_repeat1] = STATE(759), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_RBRACE] = ACTIONS(1610), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_POUND] = ACTIONS(1626), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_ref] = ACTIONS(1632), + [sym_mutable_specifier] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1636), }, - [465] = { - [sym_line_comment] = STATE(465), - [sym_block_comment] = STATE(465), - [sym_identifier] = ACTIONS(1420), - [anon_sym_LPAREN] = ACTIONS(1418), - [anon_sym_LBRACK] = ACTIONS(1418), + [457] = { + [sym_line_comment] = STATE(457), + [sym_block_comment] = STATE(457), + [sym_identifier] = ACTIONS(1356), + [anon_sym_LPAREN] = ACTIONS(1354), + [anon_sym_LBRACK] = ACTIONS(1354), + [anon_sym_RBRACE] = ACTIONS(1354), + [anon_sym_PLUS] = ACTIONS(1356), + [anon_sym_STAR] = ACTIONS(1356), + [anon_sym_QMARK] = ACTIONS(1354), + [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_DASH] = ACTIONS(1356), + [anon_sym_SLASH] = ACTIONS(1356), + [anon_sym_PERCENT] = ACTIONS(1356), + [anon_sym_CARET] = ACTIONS(1356), + [anon_sym_AMP] = ACTIONS(1356), + [anon_sym_PIPE] = ACTIONS(1356), + [anon_sym_AMP_AMP] = ACTIONS(1354), + [anon_sym_PIPE_PIPE] = ACTIONS(1354), + [anon_sym_LT_LT] = ACTIONS(1356), + [anon_sym_GT_GT] = ACTIONS(1356), + [anon_sym_PLUS_EQ] = ACTIONS(1354), + [anon_sym_DASH_EQ] = ACTIONS(1354), + [anon_sym_STAR_EQ] = ACTIONS(1354), + [anon_sym_SLASH_EQ] = ACTIONS(1354), + [anon_sym_PERCENT_EQ] = ACTIONS(1354), + [anon_sym_CARET_EQ] = ACTIONS(1354), + [anon_sym_AMP_EQ] = ACTIONS(1354), + [anon_sym_PIPE_EQ] = ACTIONS(1354), + [anon_sym_LT_LT_EQ] = ACTIONS(1354), + [anon_sym_GT_GT_EQ] = ACTIONS(1354), + [anon_sym_EQ] = ACTIONS(1356), + [anon_sym_EQ_EQ] = ACTIONS(1354), + [anon_sym_BANG_EQ] = ACTIONS(1354), + [anon_sym_GT] = ACTIONS(1356), + [anon_sym_LT] = ACTIONS(1356), + [anon_sym_GT_EQ] = ACTIONS(1354), + [anon_sym_LT_EQ] = ACTIONS(1354), + [anon_sym__] = ACTIONS(1356), + [anon_sym_DOT] = ACTIONS(1356), + [anon_sym_DOT_DOT] = ACTIONS(1356), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1354), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1354), + [anon_sym_COMMA] = ACTIONS(1354), + [anon_sym_COLON_COLON] = ACTIONS(1354), + [anon_sym_POUND] = ACTIONS(1354), + [anon_sym_as] = ACTIONS(1356), + [anon_sym_const] = ACTIONS(1356), + [anon_sym_default] = ACTIONS(1356), + [anon_sym_union] = ACTIONS(1356), + [anon_sym_ref] = ACTIONS(1356), + [sym_mutable_specifier] = ACTIONS(1356), + [sym_integer_literal] = ACTIONS(1354), + [aux_sym_string_literal_token1] = ACTIONS(1354), + [sym_char_literal] = ACTIONS(1354), + [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(1354), + [sym__raw_string_literal_start] = ACTIONS(1354), + [sym_float_literal] = ACTIONS(1354), + }, + [458] = { + [sym_line_comment] = STATE(458), + [sym_block_comment] = STATE(458), + [sym_identifier] = ACTIONS(1648), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_LBRACK] = ACTIONS(1650), [anon_sym_RBRACE] = ACTIONS(1418), - [anon_sym_PLUS] = ACTIONS(1420), - [anon_sym_STAR] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), [anon_sym_QMARK] = ACTIONS(1418), - [anon_sym_u8] = ACTIONS(1420), - [anon_sym_i8] = ACTIONS(1420), - [anon_sym_u16] = ACTIONS(1420), - [anon_sym_i16] = ACTIONS(1420), - [anon_sym_u32] = ACTIONS(1420), - [anon_sym_i32] = ACTIONS(1420), - [anon_sym_u64] = ACTIONS(1420), - [anon_sym_i64] = ACTIONS(1420), - [anon_sym_u128] = ACTIONS(1420), - [anon_sym_i128] = ACTIONS(1420), - [anon_sym_isize] = ACTIONS(1420), - [anon_sym_usize] = ACTIONS(1420), - [anon_sym_f32] = ACTIONS(1420), - [anon_sym_f64] = ACTIONS(1420), - [anon_sym_bool] = ACTIONS(1420), - [anon_sym_str] = ACTIONS(1420), - [anon_sym_char] = ACTIONS(1420), - [anon_sym_DASH] = ACTIONS(1420), - [anon_sym_SLASH] = ACTIONS(1420), - [anon_sym_PERCENT] = ACTIONS(1420), - [anon_sym_CARET] = ACTIONS(1420), - [anon_sym_AMP] = ACTIONS(1420), - [anon_sym_PIPE] = ACTIONS(1420), + [anon_sym_u8] = ACTIONS(1648), + [anon_sym_i8] = ACTIONS(1648), + [anon_sym_u16] = ACTIONS(1648), + [anon_sym_i16] = ACTIONS(1648), + [anon_sym_u32] = ACTIONS(1648), + [anon_sym_i32] = ACTIONS(1648), + [anon_sym_u64] = ACTIONS(1648), + [anon_sym_i64] = ACTIONS(1648), + [anon_sym_u128] = ACTIONS(1648), + [anon_sym_i128] = ACTIONS(1648), + [anon_sym_isize] = ACTIONS(1648), + [anon_sym_usize] = ACTIONS(1648), + [anon_sym_f32] = ACTIONS(1648), + [anon_sym_f64] = ACTIONS(1648), + [anon_sym_bool] = ACTIONS(1648), + [anon_sym_str] = ACTIONS(1648), + [anon_sym_char] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1648), + [anon_sym_PIPE] = ACTIONS(1648), [anon_sym_AMP_AMP] = ACTIONS(1418), [anon_sym_PIPE_PIPE] = ACTIONS(1418), - [anon_sym_LT_LT] = ACTIONS(1420), - [anon_sym_GT_GT] = ACTIONS(1420), + [anon_sym_LT_LT] = ACTIONS(1416), + [anon_sym_GT_GT] = ACTIONS(1416), [anon_sym_PLUS_EQ] = ACTIONS(1418), [anon_sym_DASH_EQ] = ACTIONS(1418), [anon_sym_STAR_EQ] = ACTIONS(1418), @@ -67407,79 +66854,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PIPE_EQ] = ACTIONS(1418), [anon_sym_LT_LT_EQ] = ACTIONS(1418), [anon_sym_GT_GT_EQ] = ACTIONS(1418), - [anon_sym_EQ] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1416), [anon_sym_EQ_EQ] = ACTIONS(1418), [anon_sym_BANG_EQ] = ACTIONS(1418), - [anon_sym_GT] = ACTIONS(1420), - [anon_sym_LT] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1648), [anon_sym_GT_EQ] = ACTIONS(1418), [anon_sym_LT_EQ] = ACTIONS(1418), - [anon_sym__] = ACTIONS(1420), - [anon_sym_DOT] = ACTIONS(1420), - [anon_sym_DOT_DOT] = ACTIONS(1420), + [anon_sym__] = ACTIONS(1648), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1648), [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), [anon_sym_COMMA] = ACTIONS(1418), - [anon_sym_COLON_COLON] = ACTIONS(1418), - [anon_sym_POUND] = ACTIONS(1418), - [anon_sym_as] = ACTIONS(1420), - [anon_sym_const] = ACTIONS(1420), - [anon_sym_default] = ACTIONS(1420), - [anon_sym_union] = ACTIONS(1420), - [anon_sym_ref] = ACTIONS(1420), - [sym_mutable_specifier] = ACTIONS(1420), - [sym_integer_literal] = ACTIONS(1418), - [aux_sym_string_literal_token1] = ACTIONS(1418), - [sym_char_literal] = ACTIONS(1418), - [anon_sym_true] = ACTIONS(1420), - [anon_sym_false] = ACTIONS(1420), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1420), - [sym_super] = ACTIONS(1420), - [sym_crate] = ACTIONS(1420), - [sym_metavariable] = ACTIONS(1418), - [sym__raw_string_literal_start] = ACTIONS(1418), - [sym_float_literal] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1650), + [anon_sym_POUND] = ACTIONS(1650), + [anon_sym_as] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1648), + [anon_sym_default] = ACTIONS(1648), + [anon_sym_union] = ACTIONS(1648), + [anon_sym_ref] = ACTIONS(1648), + [sym_mutable_specifier] = ACTIONS(1648), + [sym_integer_literal] = ACTIONS(1650), + [aux_sym_string_literal_token1] = ACTIONS(1650), + [sym_char_literal] = ACTIONS(1650), + [anon_sym_true] = ACTIONS(1648), + [anon_sym_false] = ACTIONS(1648), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1648), + [sym_super] = ACTIONS(1648), + [sym_crate] = ACTIONS(1648), + [sym_metavariable] = ACTIONS(1650), + [sym__raw_string_literal_start] = ACTIONS(1650), + [sym_float_literal] = ACTIONS(1650), }, - [466] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_arm] = STATE(1476), - [sym_last_match_arm] = STATE(3467), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(466), - [sym_block_comment] = STATE(466), - [aux_sym_match_block_repeat1] = STATE(476), - [aux_sym_match_arm_repeat1] = STATE(757), + [459] = { + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_arm] = STATE(1471), + [sym_last_match_arm] = STATE(3568), + [sym_match_pattern] = STATE(3345), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(459), + [sym_block_comment] = STATE(459), + [aux_sym_match_block_repeat1] = STATE(475), + [aux_sym_match_arm_repeat1] = STATE(759), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1656), + [anon_sym_RBRACE] = ACTIONS(1652), [anon_sym_u8] = ACTIONS(1612), [anon_sym_i8] = ACTIONS(1612), [anon_sym_u16] = ACTIONS(1612), @@ -67524,126 +66971,126 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, - [467] = { - [sym_line_comment] = STATE(467), - [sym_block_comment] = STATE(467), - [sym_identifier] = ACTIONS(1326), - [anon_sym_LPAREN] = ACTIONS(1324), - [anon_sym_LBRACK] = ACTIONS(1324), - [anon_sym_RBRACE] = ACTIONS(1324), - [anon_sym_PLUS] = ACTIONS(1326), - [anon_sym_STAR] = ACTIONS(1326), - [anon_sym_QMARK] = ACTIONS(1324), - [anon_sym_u8] = ACTIONS(1326), - [anon_sym_i8] = ACTIONS(1326), - [anon_sym_u16] = ACTIONS(1326), - [anon_sym_i16] = ACTIONS(1326), - [anon_sym_u32] = ACTIONS(1326), - [anon_sym_i32] = ACTIONS(1326), - [anon_sym_u64] = ACTIONS(1326), - [anon_sym_i64] = ACTIONS(1326), - [anon_sym_u128] = ACTIONS(1326), - [anon_sym_i128] = ACTIONS(1326), - [anon_sym_isize] = ACTIONS(1326), - [anon_sym_usize] = ACTIONS(1326), - [anon_sym_f32] = ACTIONS(1326), - [anon_sym_f64] = ACTIONS(1326), - [anon_sym_bool] = ACTIONS(1326), - [anon_sym_str] = ACTIONS(1326), - [anon_sym_char] = ACTIONS(1326), - [anon_sym_DASH] = ACTIONS(1326), - [anon_sym_SLASH] = ACTIONS(1326), - [anon_sym_PERCENT] = ACTIONS(1326), - [anon_sym_CARET] = ACTIONS(1326), - [anon_sym_AMP] = ACTIONS(1326), - [anon_sym_PIPE] = ACTIONS(1326), - [anon_sym_AMP_AMP] = ACTIONS(1324), - [anon_sym_PIPE_PIPE] = ACTIONS(1324), - [anon_sym_LT_LT] = ACTIONS(1326), - [anon_sym_GT_GT] = ACTIONS(1326), - [anon_sym_PLUS_EQ] = ACTIONS(1324), - [anon_sym_DASH_EQ] = ACTIONS(1324), - [anon_sym_STAR_EQ] = ACTIONS(1324), - [anon_sym_SLASH_EQ] = ACTIONS(1324), - [anon_sym_PERCENT_EQ] = ACTIONS(1324), - [anon_sym_CARET_EQ] = ACTIONS(1324), - [anon_sym_AMP_EQ] = ACTIONS(1324), - [anon_sym_PIPE_EQ] = ACTIONS(1324), - [anon_sym_LT_LT_EQ] = ACTIONS(1324), - [anon_sym_GT_GT_EQ] = ACTIONS(1324), - [anon_sym_EQ] = ACTIONS(1326), - [anon_sym_EQ_EQ] = ACTIONS(1324), - [anon_sym_BANG_EQ] = ACTIONS(1324), - [anon_sym_GT] = ACTIONS(1326), - [anon_sym_LT] = ACTIONS(1326), - [anon_sym_GT_EQ] = ACTIONS(1324), - [anon_sym_LT_EQ] = ACTIONS(1324), - [anon_sym__] = ACTIONS(1326), - [anon_sym_DOT] = ACTIONS(1326), - [anon_sym_DOT_DOT] = ACTIONS(1326), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1324), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1324), - [anon_sym_COMMA] = ACTIONS(1324), - [anon_sym_COLON_COLON] = ACTIONS(1324), - [anon_sym_POUND] = ACTIONS(1324), - [anon_sym_as] = ACTIONS(1326), - [anon_sym_const] = ACTIONS(1326), - [anon_sym_default] = ACTIONS(1326), - [anon_sym_union] = ACTIONS(1326), - [anon_sym_ref] = ACTIONS(1326), - [sym_mutable_specifier] = ACTIONS(1326), - [sym_integer_literal] = ACTIONS(1324), - [aux_sym_string_literal_token1] = ACTIONS(1324), - [sym_char_literal] = ACTIONS(1324), - [anon_sym_true] = ACTIONS(1326), - [anon_sym_false] = ACTIONS(1326), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1326), - [sym_super] = ACTIONS(1326), - [sym_crate] = ACTIONS(1326), - [sym_metavariable] = ACTIONS(1324), - [sym__raw_string_literal_start] = ACTIONS(1324), - [sym_float_literal] = ACTIONS(1324), + [460] = { + [sym_line_comment] = STATE(460), + [sym_block_comment] = STATE(460), + [sym_identifier] = ACTIONS(1400), + [anon_sym_LPAREN] = ACTIONS(1398), + [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_PLUS] = ACTIONS(1400), + [anon_sym_STAR] = ACTIONS(1400), + [anon_sym_QMARK] = ACTIONS(1398), + [anon_sym_u8] = ACTIONS(1400), + [anon_sym_i8] = ACTIONS(1400), + [anon_sym_u16] = ACTIONS(1400), + [anon_sym_i16] = ACTIONS(1400), + [anon_sym_u32] = ACTIONS(1400), + [anon_sym_i32] = ACTIONS(1400), + [anon_sym_u64] = ACTIONS(1400), + [anon_sym_i64] = ACTIONS(1400), + [anon_sym_u128] = ACTIONS(1400), + [anon_sym_i128] = ACTIONS(1400), + [anon_sym_isize] = ACTIONS(1400), + [anon_sym_usize] = ACTIONS(1400), + [anon_sym_f32] = ACTIONS(1400), + [anon_sym_f64] = ACTIONS(1400), + [anon_sym_bool] = ACTIONS(1400), + [anon_sym_str] = ACTIONS(1400), + [anon_sym_char] = ACTIONS(1400), + [anon_sym_DASH] = ACTIONS(1400), + [anon_sym_SLASH] = ACTIONS(1400), + [anon_sym_PERCENT] = ACTIONS(1400), + [anon_sym_CARET] = ACTIONS(1400), + [anon_sym_AMP] = ACTIONS(1400), + [anon_sym_PIPE] = ACTIONS(1400), + [anon_sym_AMP_AMP] = ACTIONS(1398), + [anon_sym_PIPE_PIPE] = ACTIONS(1398), + [anon_sym_LT_LT] = ACTIONS(1400), + [anon_sym_GT_GT] = ACTIONS(1400), + [anon_sym_PLUS_EQ] = ACTIONS(1398), + [anon_sym_DASH_EQ] = ACTIONS(1398), + [anon_sym_STAR_EQ] = ACTIONS(1398), + [anon_sym_SLASH_EQ] = ACTIONS(1398), + [anon_sym_PERCENT_EQ] = ACTIONS(1398), + [anon_sym_CARET_EQ] = ACTIONS(1398), + [anon_sym_AMP_EQ] = ACTIONS(1398), + [anon_sym_PIPE_EQ] = ACTIONS(1398), + [anon_sym_LT_LT_EQ] = ACTIONS(1398), + [anon_sym_GT_GT_EQ] = ACTIONS(1398), + [anon_sym_EQ] = ACTIONS(1400), + [anon_sym_EQ_EQ] = ACTIONS(1398), + [anon_sym_BANG_EQ] = ACTIONS(1398), + [anon_sym_GT] = ACTIONS(1400), + [anon_sym_LT] = ACTIONS(1400), + [anon_sym_GT_EQ] = ACTIONS(1398), + [anon_sym_LT_EQ] = ACTIONS(1398), + [anon_sym__] = ACTIONS(1400), + [anon_sym_DOT] = ACTIONS(1400), + [anon_sym_DOT_DOT] = ACTIONS(1400), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1398), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1398), + [anon_sym_COMMA] = ACTIONS(1398), + [anon_sym_COLON_COLON] = ACTIONS(1398), + [anon_sym_POUND] = ACTIONS(1398), + [anon_sym_as] = ACTIONS(1400), + [anon_sym_const] = ACTIONS(1400), + [anon_sym_default] = ACTIONS(1400), + [anon_sym_union] = ACTIONS(1400), + [anon_sym_ref] = ACTIONS(1400), + [sym_mutable_specifier] = ACTIONS(1400), + [sym_integer_literal] = ACTIONS(1398), + [aux_sym_string_literal_token1] = ACTIONS(1398), + [sym_char_literal] = ACTIONS(1398), + [anon_sym_true] = ACTIONS(1400), + [anon_sym_false] = ACTIONS(1400), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1400), + [sym_super] = ACTIONS(1400), + [sym_crate] = ACTIONS(1400), + [sym_metavariable] = ACTIONS(1398), + [sym__raw_string_literal_start] = ACTIONS(1398), + [sym_float_literal] = ACTIONS(1398), }, - [468] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_arm] = STATE(1476), - [sym_last_match_arm] = STATE(3484), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(468), - [sym_block_comment] = STATE(468), + [461] = { + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_arm] = STATE(1471), + [sym_last_match_arm] = STATE(3358), + [sym_match_pattern] = STATE(3345), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(461), + [sym_block_comment] = STATE(461), [aux_sym_match_block_repeat1] = STATE(477), - [aux_sym_match_arm_repeat1] = STATE(757), + [aux_sym_match_arm_repeat1] = STATE(759), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_RBRACE] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1654), [anon_sym_u8] = ACTIONS(1612), [anon_sym_i8] = ACTIONS(1612), [anon_sym_u16] = ACTIONS(1612), @@ -67688,9 +67135,419 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, - [469] = { - [sym_line_comment] = STATE(469), - [sym_block_comment] = STATE(469), + [462] = { + [sym_line_comment] = STATE(462), + [sym_block_comment] = STATE(462), + [sym_identifier] = ACTIONS(1368), + [anon_sym_LPAREN] = ACTIONS(1366), + [anon_sym_LBRACK] = ACTIONS(1366), + [anon_sym_RBRACE] = ACTIONS(1366), + [anon_sym_PLUS] = ACTIONS(1368), + [anon_sym_STAR] = ACTIONS(1368), + [anon_sym_QMARK] = ACTIONS(1366), + [anon_sym_u8] = ACTIONS(1368), + [anon_sym_i8] = ACTIONS(1368), + [anon_sym_u16] = ACTIONS(1368), + [anon_sym_i16] = ACTIONS(1368), + [anon_sym_u32] = ACTIONS(1368), + [anon_sym_i32] = ACTIONS(1368), + [anon_sym_u64] = ACTIONS(1368), + [anon_sym_i64] = ACTIONS(1368), + [anon_sym_u128] = ACTIONS(1368), + [anon_sym_i128] = ACTIONS(1368), + [anon_sym_isize] = ACTIONS(1368), + [anon_sym_usize] = ACTIONS(1368), + [anon_sym_f32] = ACTIONS(1368), + [anon_sym_f64] = ACTIONS(1368), + [anon_sym_bool] = ACTIONS(1368), + [anon_sym_str] = ACTIONS(1368), + [anon_sym_char] = ACTIONS(1368), + [anon_sym_DASH] = ACTIONS(1368), + [anon_sym_SLASH] = ACTIONS(1368), + [anon_sym_PERCENT] = ACTIONS(1368), + [anon_sym_CARET] = ACTIONS(1368), + [anon_sym_AMP] = ACTIONS(1368), + [anon_sym_PIPE] = ACTIONS(1368), + [anon_sym_AMP_AMP] = ACTIONS(1366), + [anon_sym_PIPE_PIPE] = ACTIONS(1366), + [anon_sym_LT_LT] = ACTIONS(1368), + [anon_sym_GT_GT] = ACTIONS(1368), + [anon_sym_PLUS_EQ] = ACTIONS(1366), + [anon_sym_DASH_EQ] = ACTIONS(1366), + [anon_sym_STAR_EQ] = ACTIONS(1366), + [anon_sym_SLASH_EQ] = ACTIONS(1366), + [anon_sym_PERCENT_EQ] = ACTIONS(1366), + [anon_sym_CARET_EQ] = ACTIONS(1366), + [anon_sym_AMP_EQ] = ACTIONS(1366), + [anon_sym_PIPE_EQ] = ACTIONS(1366), + [anon_sym_LT_LT_EQ] = ACTIONS(1366), + [anon_sym_GT_GT_EQ] = ACTIONS(1366), + [anon_sym_EQ] = ACTIONS(1368), + [anon_sym_EQ_EQ] = ACTIONS(1366), + [anon_sym_BANG_EQ] = ACTIONS(1366), + [anon_sym_GT] = ACTIONS(1368), + [anon_sym_LT] = ACTIONS(1368), + [anon_sym_GT_EQ] = ACTIONS(1366), + [anon_sym_LT_EQ] = ACTIONS(1366), + [anon_sym__] = ACTIONS(1368), + [anon_sym_DOT] = ACTIONS(1368), + [anon_sym_DOT_DOT] = ACTIONS(1368), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1366), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), + [anon_sym_COMMA] = ACTIONS(1366), + [anon_sym_COLON_COLON] = ACTIONS(1366), + [anon_sym_POUND] = ACTIONS(1366), + [anon_sym_as] = ACTIONS(1368), + [anon_sym_const] = ACTIONS(1368), + [anon_sym_default] = ACTIONS(1368), + [anon_sym_union] = ACTIONS(1368), + [anon_sym_ref] = ACTIONS(1368), + [sym_mutable_specifier] = ACTIONS(1368), + [sym_integer_literal] = ACTIONS(1366), + [aux_sym_string_literal_token1] = ACTIONS(1366), + [sym_char_literal] = ACTIONS(1366), + [anon_sym_true] = ACTIONS(1368), + [anon_sym_false] = ACTIONS(1368), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1368), + [sym_super] = ACTIONS(1368), + [sym_crate] = ACTIONS(1368), + [sym_metavariable] = ACTIONS(1366), + [sym__raw_string_literal_start] = ACTIONS(1366), + [sym_float_literal] = ACTIONS(1366), + }, + [463] = { + [sym_line_comment] = STATE(463), + [sym_block_comment] = STATE(463), + [sym_identifier] = ACTIONS(1404), + [anon_sym_LPAREN] = ACTIONS(1402), + [anon_sym_LBRACK] = ACTIONS(1402), + [anon_sym_RBRACE] = ACTIONS(1402), + [anon_sym_PLUS] = ACTIONS(1404), + [anon_sym_STAR] = ACTIONS(1404), + [anon_sym_QMARK] = ACTIONS(1402), + [anon_sym_u8] = ACTIONS(1404), + [anon_sym_i8] = ACTIONS(1404), + [anon_sym_u16] = ACTIONS(1404), + [anon_sym_i16] = ACTIONS(1404), + [anon_sym_u32] = ACTIONS(1404), + [anon_sym_i32] = ACTIONS(1404), + [anon_sym_u64] = ACTIONS(1404), + [anon_sym_i64] = ACTIONS(1404), + [anon_sym_u128] = ACTIONS(1404), + [anon_sym_i128] = ACTIONS(1404), + [anon_sym_isize] = ACTIONS(1404), + [anon_sym_usize] = ACTIONS(1404), + [anon_sym_f32] = ACTIONS(1404), + [anon_sym_f64] = ACTIONS(1404), + [anon_sym_bool] = ACTIONS(1404), + [anon_sym_str] = ACTIONS(1404), + [anon_sym_char] = ACTIONS(1404), + [anon_sym_DASH] = ACTIONS(1404), + [anon_sym_SLASH] = ACTIONS(1404), + [anon_sym_PERCENT] = ACTIONS(1404), + [anon_sym_CARET] = ACTIONS(1404), + [anon_sym_AMP] = ACTIONS(1404), + [anon_sym_PIPE] = ACTIONS(1404), + [anon_sym_AMP_AMP] = ACTIONS(1402), + [anon_sym_PIPE_PIPE] = ACTIONS(1402), + [anon_sym_LT_LT] = ACTIONS(1404), + [anon_sym_GT_GT] = ACTIONS(1404), + [anon_sym_PLUS_EQ] = ACTIONS(1402), + [anon_sym_DASH_EQ] = ACTIONS(1402), + [anon_sym_STAR_EQ] = ACTIONS(1402), + [anon_sym_SLASH_EQ] = ACTIONS(1402), + [anon_sym_PERCENT_EQ] = ACTIONS(1402), + [anon_sym_CARET_EQ] = ACTIONS(1402), + [anon_sym_AMP_EQ] = ACTIONS(1402), + [anon_sym_PIPE_EQ] = ACTIONS(1402), + [anon_sym_LT_LT_EQ] = ACTIONS(1402), + [anon_sym_GT_GT_EQ] = ACTIONS(1402), + [anon_sym_EQ] = ACTIONS(1404), + [anon_sym_EQ_EQ] = ACTIONS(1402), + [anon_sym_BANG_EQ] = ACTIONS(1402), + [anon_sym_GT] = ACTIONS(1404), + [anon_sym_LT] = ACTIONS(1404), + [anon_sym_GT_EQ] = ACTIONS(1402), + [anon_sym_LT_EQ] = ACTIONS(1402), + [anon_sym__] = ACTIONS(1404), + [anon_sym_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT] = ACTIONS(1404), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1402), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1402), + [anon_sym_COMMA] = ACTIONS(1402), + [anon_sym_COLON_COLON] = ACTIONS(1402), + [anon_sym_POUND] = ACTIONS(1402), + [anon_sym_as] = ACTIONS(1404), + [anon_sym_const] = ACTIONS(1404), + [anon_sym_default] = ACTIONS(1404), + [anon_sym_union] = ACTIONS(1404), + [anon_sym_ref] = ACTIONS(1404), + [sym_mutable_specifier] = ACTIONS(1404), + [sym_integer_literal] = ACTIONS(1402), + [aux_sym_string_literal_token1] = ACTIONS(1402), + [sym_char_literal] = ACTIONS(1402), + [anon_sym_true] = ACTIONS(1404), + [anon_sym_false] = ACTIONS(1404), + [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(1402), + [sym__raw_string_literal_start] = ACTIONS(1402), + [sym_float_literal] = ACTIONS(1402), + }, + [464] = { + [sym_line_comment] = STATE(464), + [sym_block_comment] = STATE(464), + [sym_identifier] = ACTIONS(1656), + [anon_sym_LPAREN] = ACTIONS(1658), + [anon_sym_LBRACK] = ACTIONS(1658), + [anon_sym_RBRACE] = ACTIONS(1418), + [anon_sym_PLUS] = ACTIONS(1416), + [anon_sym_STAR] = ACTIONS(1416), + [anon_sym_QMARK] = ACTIONS(1418), + [anon_sym_u8] = ACTIONS(1656), + [anon_sym_i8] = ACTIONS(1656), + [anon_sym_u16] = ACTIONS(1656), + [anon_sym_i16] = ACTIONS(1656), + [anon_sym_u32] = ACTIONS(1656), + [anon_sym_i32] = ACTIONS(1656), + [anon_sym_u64] = ACTIONS(1656), + [anon_sym_i64] = ACTIONS(1656), + [anon_sym_u128] = ACTIONS(1656), + [anon_sym_i128] = ACTIONS(1656), + [anon_sym_isize] = ACTIONS(1656), + [anon_sym_usize] = ACTIONS(1656), + [anon_sym_f32] = ACTIONS(1656), + [anon_sym_f64] = ACTIONS(1656), + [anon_sym_bool] = ACTIONS(1656), + [anon_sym_str] = ACTIONS(1656), + [anon_sym_char] = ACTIONS(1656), + [anon_sym_DASH] = ACTIONS(1656), + [anon_sym_SLASH] = ACTIONS(1416), + [anon_sym_PERCENT] = ACTIONS(1416), + [anon_sym_CARET] = ACTIONS(1416), + [anon_sym_AMP] = ACTIONS(1656), + [anon_sym_PIPE] = ACTIONS(1656), + [anon_sym_AMP_AMP] = ACTIONS(1418), + [anon_sym_PIPE_PIPE] = ACTIONS(1418), + [anon_sym_LT_LT] = ACTIONS(1416), + [anon_sym_GT_GT] = ACTIONS(1416), + [anon_sym_PLUS_EQ] = ACTIONS(1418), + [anon_sym_DASH_EQ] = ACTIONS(1418), + [anon_sym_STAR_EQ] = ACTIONS(1418), + [anon_sym_SLASH_EQ] = ACTIONS(1418), + [anon_sym_PERCENT_EQ] = ACTIONS(1418), + [anon_sym_CARET_EQ] = ACTIONS(1418), + [anon_sym_AMP_EQ] = ACTIONS(1418), + [anon_sym_PIPE_EQ] = ACTIONS(1418), + [anon_sym_LT_LT_EQ] = ACTIONS(1418), + [anon_sym_GT_GT_EQ] = ACTIONS(1418), + [anon_sym_EQ] = ACTIONS(1416), + [anon_sym_EQ_EQ] = ACTIONS(1418), + [anon_sym_BANG_EQ] = ACTIONS(1418), + [anon_sym_GT] = ACTIONS(1416), + [anon_sym_LT] = ACTIONS(1656), + [anon_sym_GT_EQ] = ACTIONS(1418), + [anon_sym_LT_EQ] = ACTIONS(1418), + [anon_sym__] = ACTIONS(1656), + [anon_sym_DOT] = ACTIONS(1416), + [anon_sym_DOT_DOT] = ACTIONS(1656), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1418), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1418), + [anon_sym_COMMA] = ACTIONS(1418), + [anon_sym_COLON_COLON] = ACTIONS(1658), + [anon_sym_POUND] = ACTIONS(1658), + [anon_sym_as] = ACTIONS(1416), + [anon_sym_const] = ACTIONS(1656), + [anon_sym_default] = ACTIONS(1656), + [anon_sym_union] = ACTIONS(1656), + [anon_sym_ref] = ACTIONS(1656), + [sym_mutable_specifier] = ACTIONS(1656), + [sym_integer_literal] = ACTIONS(1658), + [aux_sym_string_literal_token1] = ACTIONS(1658), + [sym_char_literal] = ACTIONS(1658), + [anon_sym_true] = ACTIONS(1656), + [anon_sym_false] = ACTIONS(1656), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1656), + [sym_super] = ACTIONS(1656), + [sym_crate] = ACTIONS(1656), + [sym_metavariable] = ACTIONS(1658), + [sym__raw_string_literal_start] = ACTIONS(1658), + [sym_float_literal] = ACTIONS(1658), + }, + [465] = { + [sym_line_comment] = STATE(465), + [sym_block_comment] = STATE(465), + [sym_identifier] = ACTIONS(1384), + [anon_sym_LPAREN] = ACTIONS(1382), + [anon_sym_LBRACK] = ACTIONS(1382), + [anon_sym_RBRACE] = ACTIONS(1382), + [anon_sym_PLUS] = ACTIONS(1384), + [anon_sym_STAR] = ACTIONS(1384), + [anon_sym_QMARK] = ACTIONS(1382), + [anon_sym_u8] = ACTIONS(1384), + [anon_sym_i8] = ACTIONS(1384), + [anon_sym_u16] = ACTIONS(1384), + [anon_sym_i16] = ACTIONS(1384), + [anon_sym_u32] = ACTIONS(1384), + [anon_sym_i32] = ACTIONS(1384), + [anon_sym_u64] = ACTIONS(1384), + [anon_sym_i64] = ACTIONS(1384), + [anon_sym_u128] = ACTIONS(1384), + [anon_sym_i128] = ACTIONS(1384), + [anon_sym_isize] = ACTIONS(1384), + [anon_sym_usize] = ACTIONS(1384), + [anon_sym_f32] = ACTIONS(1384), + [anon_sym_f64] = ACTIONS(1384), + [anon_sym_bool] = ACTIONS(1384), + [anon_sym_str] = ACTIONS(1384), + [anon_sym_char] = ACTIONS(1384), + [anon_sym_DASH] = ACTIONS(1384), + [anon_sym_SLASH] = ACTIONS(1384), + [anon_sym_PERCENT] = ACTIONS(1384), + [anon_sym_CARET] = ACTIONS(1384), + [anon_sym_AMP] = ACTIONS(1384), + [anon_sym_PIPE] = ACTIONS(1384), + [anon_sym_AMP_AMP] = ACTIONS(1382), + [anon_sym_PIPE_PIPE] = ACTIONS(1382), + [anon_sym_LT_LT] = ACTIONS(1384), + [anon_sym_GT_GT] = ACTIONS(1384), + [anon_sym_PLUS_EQ] = ACTIONS(1382), + [anon_sym_DASH_EQ] = ACTIONS(1382), + [anon_sym_STAR_EQ] = ACTIONS(1382), + [anon_sym_SLASH_EQ] = ACTIONS(1382), + [anon_sym_PERCENT_EQ] = ACTIONS(1382), + [anon_sym_CARET_EQ] = ACTIONS(1382), + [anon_sym_AMP_EQ] = ACTIONS(1382), + [anon_sym_PIPE_EQ] = ACTIONS(1382), + [anon_sym_LT_LT_EQ] = ACTIONS(1382), + [anon_sym_GT_GT_EQ] = ACTIONS(1382), + [anon_sym_EQ] = ACTIONS(1384), + [anon_sym_EQ_EQ] = ACTIONS(1382), + [anon_sym_BANG_EQ] = ACTIONS(1382), + [anon_sym_GT] = ACTIONS(1384), + [anon_sym_LT] = ACTIONS(1384), + [anon_sym_GT_EQ] = ACTIONS(1382), + [anon_sym_LT_EQ] = ACTIONS(1382), + [anon_sym__] = ACTIONS(1384), + [anon_sym_DOT] = ACTIONS(1384), + [anon_sym_DOT_DOT] = ACTIONS(1384), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1382), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1382), + [anon_sym_COMMA] = ACTIONS(1382), + [anon_sym_COLON_COLON] = ACTIONS(1382), + [anon_sym_POUND] = ACTIONS(1382), + [anon_sym_as] = ACTIONS(1384), + [anon_sym_const] = ACTIONS(1384), + [anon_sym_default] = ACTIONS(1384), + [anon_sym_union] = ACTIONS(1384), + [anon_sym_ref] = ACTIONS(1384), + [sym_mutable_specifier] = ACTIONS(1384), + [sym_integer_literal] = ACTIONS(1382), + [aux_sym_string_literal_token1] = ACTIONS(1382), + [sym_char_literal] = ACTIONS(1382), + [anon_sym_true] = ACTIONS(1384), + [anon_sym_false] = ACTIONS(1384), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1384), + [sym_super] = ACTIONS(1384), + [sym_crate] = ACTIONS(1384), + [sym_metavariable] = ACTIONS(1382), + [sym__raw_string_literal_start] = ACTIONS(1382), + [sym_float_literal] = ACTIONS(1382), + }, + [466] = { + [sym_line_comment] = STATE(466), + [sym_block_comment] = STATE(466), + [sym_identifier] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_LBRACK] = ACTIONS(1420), + [anon_sym_RBRACE] = ACTIONS(1420), + [anon_sym_PLUS] = ACTIONS(1422), + [anon_sym_STAR] = ACTIONS(1422), + [anon_sym_QMARK] = ACTIONS(1420), + [anon_sym_u8] = ACTIONS(1422), + [anon_sym_i8] = ACTIONS(1422), + [anon_sym_u16] = ACTIONS(1422), + [anon_sym_i16] = ACTIONS(1422), + [anon_sym_u32] = ACTIONS(1422), + [anon_sym_i32] = ACTIONS(1422), + [anon_sym_u64] = ACTIONS(1422), + [anon_sym_i64] = ACTIONS(1422), + [anon_sym_u128] = ACTIONS(1422), + [anon_sym_i128] = ACTIONS(1422), + [anon_sym_isize] = ACTIONS(1422), + [anon_sym_usize] = ACTIONS(1422), + [anon_sym_f32] = ACTIONS(1422), + [anon_sym_f64] = ACTIONS(1422), + [anon_sym_bool] = ACTIONS(1422), + [anon_sym_str] = ACTIONS(1422), + [anon_sym_char] = ACTIONS(1422), + [anon_sym_DASH] = ACTIONS(1422), + [anon_sym_SLASH] = ACTIONS(1422), + [anon_sym_PERCENT] = ACTIONS(1422), + [anon_sym_CARET] = ACTIONS(1422), + [anon_sym_AMP] = ACTIONS(1422), + [anon_sym_PIPE] = ACTIONS(1422), + [anon_sym_AMP_AMP] = ACTIONS(1420), + [anon_sym_PIPE_PIPE] = ACTIONS(1420), + [anon_sym_LT_LT] = ACTIONS(1422), + [anon_sym_GT_GT] = ACTIONS(1422), + [anon_sym_PLUS_EQ] = ACTIONS(1420), + [anon_sym_DASH_EQ] = ACTIONS(1420), + [anon_sym_STAR_EQ] = ACTIONS(1420), + [anon_sym_SLASH_EQ] = ACTIONS(1420), + [anon_sym_PERCENT_EQ] = ACTIONS(1420), + [anon_sym_CARET_EQ] = ACTIONS(1420), + [anon_sym_AMP_EQ] = ACTIONS(1420), + [anon_sym_PIPE_EQ] = ACTIONS(1420), + [anon_sym_LT_LT_EQ] = ACTIONS(1420), + [anon_sym_GT_GT_EQ] = ACTIONS(1420), + [anon_sym_EQ] = ACTIONS(1422), + [anon_sym_EQ_EQ] = ACTIONS(1420), + [anon_sym_BANG_EQ] = ACTIONS(1420), + [anon_sym_GT] = ACTIONS(1422), + [anon_sym_LT] = ACTIONS(1422), + [anon_sym_GT_EQ] = ACTIONS(1420), + [anon_sym_LT_EQ] = ACTIONS(1420), + [anon_sym__] = ACTIONS(1422), + [anon_sym_DOT] = ACTIONS(1422), + [anon_sym_DOT_DOT] = ACTIONS(1422), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1420), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1420), + [anon_sym_COMMA] = ACTIONS(1420), + [anon_sym_COLON_COLON] = ACTIONS(1420), + [anon_sym_POUND] = ACTIONS(1420), + [anon_sym_as] = ACTIONS(1422), + [anon_sym_const] = ACTIONS(1422), + [anon_sym_default] = ACTIONS(1422), + [anon_sym_union] = ACTIONS(1422), + [anon_sym_ref] = ACTIONS(1422), + [sym_mutable_specifier] = ACTIONS(1422), + [sym_integer_literal] = ACTIONS(1420), + [aux_sym_string_literal_token1] = ACTIONS(1420), + [sym_char_literal] = ACTIONS(1420), + [anon_sym_true] = ACTIONS(1422), + [anon_sym_false] = ACTIONS(1422), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1422), + [sym_super] = ACTIONS(1422), + [sym_crate] = ACTIONS(1422), + [sym_metavariable] = ACTIONS(1420), + [sym__raw_string_literal_start] = ACTIONS(1420), + [sym_float_literal] = ACTIONS(1420), + }, + [467] = { + [sym_line_comment] = STATE(467), + [sym_block_comment] = STATE(467), [sym_identifier] = ACTIONS(1452), [anon_sym_LPAREN] = ACTIONS(1450), [anon_sym_LBRACK] = ACTIONS(1450), @@ -67770,286 +67627,368 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1450), [sym_float_literal] = ACTIONS(1450), }, + [468] = { + [sym_line_comment] = STATE(468), + [sym_block_comment] = STATE(468), + [sym_identifier] = ACTIONS(1380), + [anon_sym_LPAREN] = ACTIONS(1378), + [anon_sym_LBRACK] = ACTIONS(1378), + [anon_sym_RBRACE] = ACTIONS(1378), + [anon_sym_PLUS] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(1380), + [anon_sym_QMARK] = ACTIONS(1378), + [anon_sym_u8] = ACTIONS(1380), + [anon_sym_i8] = ACTIONS(1380), + [anon_sym_u16] = ACTIONS(1380), + [anon_sym_i16] = ACTIONS(1380), + [anon_sym_u32] = ACTIONS(1380), + [anon_sym_i32] = ACTIONS(1380), + [anon_sym_u64] = ACTIONS(1380), + [anon_sym_i64] = ACTIONS(1380), + [anon_sym_u128] = ACTIONS(1380), + [anon_sym_i128] = ACTIONS(1380), + [anon_sym_isize] = ACTIONS(1380), + [anon_sym_usize] = ACTIONS(1380), + [anon_sym_f32] = ACTIONS(1380), + [anon_sym_f64] = ACTIONS(1380), + [anon_sym_bool] = ACTIONS(1380), + [anon_sym_str] = ACTIONS(1380), + [anon_sym_char] = ACTIONS(1380), + [anon_sym_DASH] = ACTIONS(1380), + [anon_sym_SLASH] = ACTIONS(1380), + [anon_sym_PERCENT] = ACTIONS(1380), + [anon_sym_CARET] = ACTIONS(1380), + [anon_sym_AMP] = ACTIONS(1380), + [anon_sym_PIPE] = ACTIONS(1380), + [anon_sym_AMP_AMP] = ACTIONS(1378), + [anon_sym_PIPE_PIPE] = ACTIONS(1378), + [anon_sym_LT_LT] = ACTIONS(1380), + [anon_sym_GT_GT] = ACTIONS(1380), + [anon_sym_PLUS_EQ] = ACTIONS(1378), + [anon_sym_DASH_EQ] = ACTIONS(1378), + [anon_sym_STAR_EQ] = ACTIONS(1378), + [anon_sym_SLASH_EQ] = ACTIONS(1378), + [anon_sym_PERCENT_EQ] = ACTIONS(1378), + [anon_sym_CARET_EQ] = ACTIONS(1378), + [anon_sym_AMP_EQ] = ACTIONS(1378), + [anon_sym_PIPE_EQ] = ACTIONS(1378), + [anon_sym_LT_LT_EQ] = ACTIONS(1378), + [anon_sym_GT_GT_EQ] = ACTIONS(1378), + [anon_sym_EQ] = ACTIONS(1380), + [anon_sym_EQ_EQ] = ACTIONS(1378), + [anon_sym_BANG_EQ] = ACTIONS(1378), + [anon_sym_GT] = ACTIONS(1380), + [anon_sym_LT] = ACTIONS(1380), + [anon_sym_GT_EQ] = ACTIONS(1378), + [anon_sym_LT_EQ] = ACTIONS(1378), + [anon_sym__] = ACTIONS(1380), + [anon_sym_DOT] = ACTIONS(1380), + [anon_sym_DOT_DOT] = ACTIONS(1380), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1378), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1378), + [anon_sym_COMMA] = ACTIONS(1378), + [anon_sym_COLON_COLON] = ACTIONS(1378), + [anon_sym_POUND] = ACTIONS(1378), + [anon_sym_as] = ACTIONS(1380), + [anon_sym_const] = ACTIONS(1380), + [anon_sym_default] = ACTIONS(1380), + [anon_sym_union] = ACTIONS(1380), + [anon_sym_ref] = ACTIONS(1380), + [sym_mutable_specifier] = ACTIONS(1380), + [sym_integer_literal] = ACTIONS(1378), + [aux_sym_string_literal_token1] = ACTIONS(1378), + [sym_char_literal] = ACTIONS(1378), + [anon_sym_true] = ACTIONS(1380), + [anon_sym_false] = ACTIONS(1380), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1380), + [sym_super] = ACTIONS(1380), + [sym_crate] = ACTIONS(1380), + [sym_metavariable] = ACTIONS(1378), + [sym__raw_string_literal_start] = ACTIONS(1378), + [sym_float_literal] = ACTIONS(1378), + }, + [469] = { + [sym_line_comment] = STATE(469), + [sym_block_comment] = STATE(469), + [sym_identifier] = ACTIONS(1352), + [anon_sym_LPAREN] = ACTIONS(1350), + [anon_sym_LBRACK] = ACTIONS(1350), + [anon_sym_RBRACE] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_STAR] = ACTIONS(1352), + [anon_sym_QMARK] = ACTIONS(1350), + [anon_sym_u8] = ACTIONS(1352), + [anon_sym_i8] = ACTIONS(1352), + [anon_sym_u16] = ACTIONS(1352), + [anon_sym_i16] = ACTIONS(1352), + [anon_sym_u32] = ACTIONS(1352), + [anon_sym_i32] = ACTIONS(1352), + [anon_sym_u64] = ACTIONS(1352), + [anon_sym_i64] = ACTIONS(1352), + [anon_sym_u128] = ACTIONS(1352), + [anon_sym_i128] = ACTIONS(1352), + [anon_sym_isize] = ACTIONS(1352), + [anon_sym_usize] = ACTIONS(1352), + [anon_sym_f32] = ACTIONS(1352), + [anon_sym_f64] = ACTIONS(1352), + [anon_sym_bool] = ACTIONS(1352), + [anon_sym_str] = ACTIONS(1352), + [anon_sym_char] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), + [anon_sym_SLASH] = ACTIONS(1352), + [anon_sym_PERCENT] = ACTIONS(1352), + [anon_sym_CARET] = ACTIONS(1352), + [anon_sym_AMP] = ACTIONS(1352), + [anon_sym_PIPE] = ACTIONS(1352), + [anon_sym_AMP_AMP] = ACTIONS(1350), + [anon_sym_PIPE_PIPE] = ACTIONS(1350), + [anon_sym_LT_LT] = ACTIONS(1352), + [anon_sym_GT_GT] = ACTIONS(1352), + [anon_sym_PLUS_EQ] = ACTIONS(1350), + [anon_sym_DASH_EQ] = ACTIONS(1350), + [anon_sym_STAR_EQ] = ACTIONS(1350), + [anon_sym_SLASH_EQ] = ACTIONS(1350), + [anon_sym_PERCENT_EQ] = ACTIONS(1350), + [anon_sym_CARET_EQ] = ACTIONS(1350), + [anon_sym_AMP_EQ] = ACTIONS(1350), + [anon_sym_PIPE_EQ] = ACTIONS(1350), + [anon_sym_LT_LT_EQ] = ACTIONS(1350), + [anon_sym_GT_GT_EQ] = ACTIONS(1350), + [anon_sym_EQ] = ACTIONS(1352), + [anon_sym_EQ_EQ] = ACTIONS(1350), + [anon_sym_BANG_EQ] = ACTIONS(1350), + [anon_sym_GT] = ACTIONS(1352), + [anon_sym_LT] = ACTIONS(1352), + [anon_sym_GT_EQ] = ACTIONS(1350), + [anon_sym_LT_EQ] = ACTIONS(1350), + [anon_sym__] = ACTIONS(1352), + [anon_sym_DOT] = ACTIONS(1352), + [anon_sym_DOT_DOT] = ACTIONS(1352), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1350), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1350), + [anon_sym_COMMA] = ACTIONS(1350), + [anon_sym_COLON_COLON] = ACTIONS(1350), + [anon_sym_POUND] = ACTIONS(1350), + [anon_sym_as] = ACTIONS(1352), + [anon_sym_const] = ACTIONS(1352), + [anon_sym_default] = ACTIONS(1352), + [anon_sym_union] = ACTIONS(1352), + [anon_sym_ref] = ACTIONS(1352), + [sym_mutable_specifier] = ACTIONS(1352), + [sym_integer_literal] = ACTIONS(1350), + [aux_sym_string_literal_token1] = ACTIONS(1350), + [sym_char_literal] = ACTIONS(1350), + [anon_sym_true] = ACTIONS(1352), + [anon_sym_false] = ACTIONS(1352), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1352), + [sym_super] = ACTIONS(1352), + [sym_crate] = ACTIONS(1352), + [sym_metavariable] = ACTIONS(1350), + [sym__raw_string_literal_start] = ACTIONS(1350), + [sym_float_literal] = ACTIONS(1350), + }, [470] = { [sym_line_comment] = STATE(470), [sym_block_comment] = STATE(470), - [sym_identifier] = ACTIONS(1372), - [anon_sym_LPAREN] = ACTIONS(1370), - [anon_sym_LBRACK] = ACTIONS(1370), - [anon_sym_RBRACE] = ACTIONS(1370), - [anon_sym_PLUS] = ACTIONS(1372), - [anon_sym_STAR] = ACTIONS(1372), - [anon_sym_QMARK] = ACTIONS(1370), - [anon_sym_u8] = ACTIONS(1372), - [anon_sym_i8] = ACTIONS(1372), - [anon_sym_u16] = ACTIONS(1372), - [anon_sym_i16] = ACTIONS(1372), - [anon_sym_u32] = ACTIONS(1372), - [anon_sym_i32] = ACTIONS(1372), - [anon_sym_u64] = ACTIONS(1372), - [anon_sym_i64] = ACTIONS(1372), - [anon_sym_u128] = ACTIONS(1372), - [anon_sym_i128] = ACTIONS(1372), - [anon_sym_isize] = ACTIONS(1372), - [anon_sym_usize] = ACTIONS(1372), - [anon_sym_f32] = ACTIONS(1372), - [anon_sym_f64] = ACTIONS(1372), - [anon_sym_bool] = ACTIONS(1372), - [anon_sym_str] = ACTIONS(1372), - [anon_sym_char] = ACTIONS(1372), - [anon_sym_DASH] = ACTIONS(1372), - [anon_sym_SLASH] = ACTIONS(1372), - [anon_sym_PERCENT] = ACTIONS(1372), - [anon_sym_CARET] = ACTIONS(1372), - [anon_sym_AMP] = ACTIONS(1372), - [anon_sym_PIPE] = ACTIONS(1372), - [anon_sym_AMP_AMP] = ACTIONS(1370), - [anon_sym_PIPE_PIPE] = ACTIONS(1370), - [anon_sym_LT_LT] = ACTIONS(1372), - [anon_sym_GT_GT] = ACTIONS(1372), - [anon_sym_PLUS_EQ] = ACTIONS(1370), - [anon_sym_DASH_EQ] = ACTIONS(1370), - [anon_sym_STAR_EQ] = ACTIONS(1370), - [anon_sym_SLASH_EQ] = ACTIONS(1370), - [anon_sym_PERCENT_EQ] = ACTIONS(1370), - [anon_sym_CARET_EQ] = ACTIONS(1370), - [anon_sym_AMP_EQ] = ACTIONS(1370), - [anon_sym_PIPE_EQ] = ACTIONS(1370), - [anon_sym_LT_LT_EQ] = ACTIONS(1370), - [anon_sym_GT_GT_EQ] = ACTIONS(1370), - [anon_sym_EQ] = ACTIONS(1372), - [anon_sym_EQ_EQ] = ACTIONS(1370), - [anon_sym_BANG_EQ] = ACTIONS(1370), - [anon_sym_GT] = ACTIONS(1372), - [anon_sym_LT] = ACTIONS(1372), - [anon_sym_GT_EQ] = ACTIONS(1370), - [anon_sym_LT_EQ] = ACTIONS(1370), - [anon_sym__] = ACTIONS(1372), - [anon_sym_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT] = ACTIONS(1372), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1370), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1370), - [anon_sym_COMMA] = ACTIONS(1370), - [anon_sym_COLON_COLON] = ACTIONS(1370), - [anon_sym_POUND] = ACTIONS(1370), - [anon_sym_as] = ACTIONS(1372), - [anon_sym_const] = ACTIONS(1372), - [anon_sym_default] = ACTIONS(1372), - [anon_sym_union] = ACTIONS(1372), - [anon_sym_ref] = ACTIONS(1372), - [sym_mutable_specifier] = ACTIONS(1372), - [sym_integer_literal] = ACTIONS(1370), - [aux_sym_string_literal_token1] = ACTIONS(1370), - [sym_char_literal] = ACTIONS(1370), - [anon_sym_true] = ACTIONS(1372), - [anon_sym_false] = ACTIONS(1372), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_crate] = ACTIONS(1372), - [sym_metavariable] = ACTIONS(1370), - [sym__raw_string_literal_start] = ACTIONS(1370), - [sym_float_literal] = ACTIONS(1370), + [sym_identifier] = ACTIONS(1392), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_LBRACK] = ACTIONS(1390), + [anon_sym_RBRACE] = ACTIONS(1390), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_STAR] = ACTIONS(1392), + [anon_sym_QMARK] = ACTIONS(1390), + [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_DASH] = ACTIONS(1392), + [anon_sym_SLASH] = ACTIONS(1392), + [anon_sym_PERCENT] = ACTIONS(1392), + [anon_sym_CARET] = ACTIONS(1392), + [anon_sym_AMP] = ACTIONS(1392), + [anon_sym_PIPE] = ACTIONS(1392), + [anon_sym_AMP_AMP] = ACTIONS(1390), + [anon_sym_PIPE_PIPE] = ACTIONS(1390), + [anon_sym_LT_LT] = ACTIONS(1392), + [anon_sym_GT_GT] = ACTIONS(1392), + [anon_sym_PLUS_EQ] = ACTIONS(1390), + [anon_sym_DASH_EQ] = ACTIONS(1390), + [anon_sym_STAR_EQ] = ACTIONS(1390), + [anon_sym_SLASH_EQ] = ACTIONS(1390), + [anon_sym_PERCENT_EQ] = ACTIONS(1390), + [anon_sym_CARET_EQ] = ACTIONS(1390), + [anon_sym_AMP_EQ] = ACTIONS(1390), + [anon_sym_PIPE_EQ] = ACTIONS(1390), + [anon_sym_LT_LT_EQ] = ACTIONS(1390), + [anon_sym_GT_GT_EQ] = ACTIONS(1390), + [anon_sym_EQ] = ACTIONS(1392), + [anon_sym_EQ_EQ] = ACTIONS(1390), + [anon_sym_BANG_EQ] = ACTIONS(1390), + [anon_sym_GT] = ACTIONS(1392), + [anon_sym_LT] = ACTIONS(1392), + [anon_sym_GT_EQ] = ACTIONS(1390), + [anon_sym_LT_EQ] = ACTIONS(1390), + [anon_sym__] = ACTIONS(1392), + [anon_sym_DOT] = ACTIONS(1392), + [anon_sym_DOT_DOT] = ACTIONS(1392), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1390), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1390), + [anon_sym_COMMA] = ACTIONS(1390), + [anon_sym_COLON_COLON] = ACTIONS(1390), + [anon_sym_POUND] = ACTIONS(1390), + [anon_sym_as] = ACTIONS(1392), + [anon_sym_const] = ACTIONS(1392), + [anon_sym_default] = ACTIONS(1392), + [anon_sym_union] = ACTIONS(1392), + [anon_sym_ref] = ACTIONS(1392), + [sym_mutable_specifier] = ACTIONS(1392), + [sym_integer_literal] = ACTIONS(1390), + [aux_sym_string_literal_token1] = ACTIONS(1390), + [sym_char_literal] = ACTIONS(1390), + [anon_sym_true] = ACTIONS(1392), + [anon_sym_false] = ACTIONS(1392), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1392), + [sym_super] = ACTIONS(1392), + [sym_crate] = ACTIONS(1392), + [sym_metavariable] = ACTIONS(1390), + [sym__raw_string_literal_start] = ACTIONS(1390), + [sym_float_literal] = ACTIONS(1390), }, [471] = { [sym_line_comment] = STATE(471), [sym_block_comment] = STATE(471), - [sym_identifier] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1430), - [anon_sym_LBRACK] = ACTIONS(1430), - [anon_sym_RBRACE] = ACTIONS(1430), - [anon_sym_PLUS] = ACTIONS(1432), - [anon_sym_STAR] = ACTIONS(1432), - [anon_sym_QMARK] = ACTIONS(1430), - [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_DASH] = ACTIONS(1432), - [anon_sym_SLASH] = ACTIONS(1432), - [anon_sym_PERCENT] = ACTIONS(1432), - [anon_sym_CARET] = ACTIONS(1432), - [anon_sym_AMP] = ACTIONS(1432), - [anon_sym_PIPE] = ACTIONS(1432), - [anon_sym_AMP_AMP] = ACTIONS(1430), - [anon_sym_PIPE_PIPE] = ACTIONS(1430), - [anon_sym_LT_LT] = ACTIONS(1432), - [anon_sym_GT_GT] = ACTIONS(1432), - [anon_sym_PLUS_EQ] = ACTIONS(1430), - [anon_sym_DASH_EQ] = ACTIONS(1430), - [anon_sym_STAR_EQ] = ACTIONS(1430), - [anon_sym_SLASH_EQ] = ACTIONS(1430), - [anon_sym_PERCENT_EQ] = ACTIONS(1430), - [anon_sym_CARET_EQ] = ACTIONS(1430), - [anon_sym_AMP_EQ] = ACTIONS(1430), - [anon_sym_PIPE_EQ] = ACTIONS(1430), - [anon_sym_LT_LT_EQ] = ACTIONS(1430), - [anon_sym_GT_GT_EQ] = ACTIONS(1430), - [anon_sym_EQ] = ACTIONS(1432), - [anon_sym_EQ_EQ] = ACTIONS(1430), - [anon_sym_BANG_EQ] = ACTIONS(1430), - [anon_sym_GT] = ACTIONS(1432), - [anon_sym_LT] = ACTIONS(1432), - [anon_sym_GT_EQ] = ACTIONS(1430), - [anon_sym_LT_EQ] = ACTIONS(1430), - [anon_sym__] = ACTIONS(1432), - [anon_sym_DOT] = ACTIONS(1432), - [anon_sym_DOT_DOT] = ACTIONS(1432), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1430), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1430), - [anon_sym_COMMA] = ACTIONS(1430), - [anon_sym_COLON_COLON] = ACTIONS(1430), - [anon_sym_POUND] = ACTIONS(1430), - [anon_sym_as] = ACTIONS(1432), - [anon_sym_const] = ACTIONS(1432), - [anon_sym_default] = ACTIONS(1432), - [anon_sym_union] = ACTIONS(1432), - [anon_sym_ref] = ACTIONS(1432), - [sym_mutable_specifier] = ACTIONS(1432), - [sym_integer_literal] = ACTIONS(1430), - [aux_sym_string_literal_token1] = ACTIONS(1430), - [sym_char_literal] = ACTIONS(1430), - [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(1430), - [sym__raw_string_literal_start] = ACTIONS(1430), - [sym_float_literal] = ACTIONS(1430), + [sym_identifier] = ACTIONS(1396), + [anon_sym_LPAREN] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1394), + [anon_sym_RBRACE] = ACTIONS(1394), + [anon_sym_PLUS] = ACTIONS(1396), + [anon_sym_STAR] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(1394), + [anon_sym_u8] = ACTIONS(1396), + [anon_sym_i8] = ACTIONS(1396), + [anon_sym_u16] = ACTIONS(1396), + [anon_sym_i16] = ACTIONS(1396), + [anon_sym_u32] = ACTIONS(1396), + [anon_sym_i32] = ACTIONS(1396), + [anon_sym_u64] = ACTIONS(1396), + [anon_sym_i64] = ACTIONS(1396), + [anon_sym_u128] = ACTIONS(1396), + [anon_sym_i128] = ACTIONS(1396), + [anon_sym_isize] = ACTIONS(1396), + [anon_sym_usize] = ACTIONS(1396), + [anon_sym_f32] = ACTIONS(1396), + [anon_sym_f64] = ACTIONS(1396), + [anon_sym_bool] = ACTIONS(1396), + [anon_sym_str] = ACTIONS(1396), + [anon_sym_char] = ACTIONS(1396), + [anon_sym_DASH] = ACTIONS(1396), + [anon_sym_SLASH] = ACTIONS(1396), + [anon_sym_PERCENT] = ACTIONS(1396), + [anon_sym_CARET] = ACTIONS(1396), + [anon_sym_AMP] = ACTIONS(1396), + [anon_sym_PIPE] = ACTIONS(1396), + [anon_sym_AMP_AMP] = ACTIONS(1394), + [anon_sym_PIPE_PIPE] = ACTIONS(1394), + [anon_sym_LT_LT] = ACTIONS(1396), + [anon_sym_GT_GT] = ACTIONS(1396), + [anon_sym_PLUS_EQ] = ACTIONS(1394), + [anon_sym_DASH_EQ] = ACTIONS(1394), + [anon_sym_STAR_EQ] = ACTIONS(1394), + [anon_sym_SLASH_EQ] = ACTIONS(1394), + [anon_sym_PERCENT_EQ] = ACTIONS(1394), + [anon_sym_CARET_EQ] = ACTIONS(1394), + [anon_sym_AMP_EQ] = ACTIONS(1394), + [anon_sym_PIPE_EQ] = ACTIONS(1394), + [anon_sym_LT_LT_EQ] = ACTIONS(1394), + [anon_sym_GT_GT_EQ] = ACTIONS(1394), + [anon_sym_EQ] = ACTIONS(1396), + [anon_sym_EQ_EQ] = ACTIONS(1394), + [anon_sym_BANG_EQ] = ACTIONS(1394), + [anon_sym_GT] = ACTIONS(1396), + [anon_sym_LT] = ACTIONS(1396), + [anon_sym_GT_EQ] = ACTIONS(1394), + [anon_sym_LT_EQ] = ACTIONS(1394), + [anon_sym__] = ACTIONS(1396), + [anon_sym_DOT] = ACTIONS(1396), + [anon_sym_DOT_DOT] = ACTIONS(1396), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1394), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1394), + [anon_sym_COMMA] = ACTIONS(1394), + [anon_sym_COLON_COLON] = ACTIONS(1394), + [anon_sym_POUND] = ACTIONS(1394), + [anon_sym_as] = ACTIONS(1396), + [anon_sym_const] = ACTIONS(1396), + [anon_sym_default] = ACTIONS(1396), + [anon_sym_union] = ACTIONS(1396), + [anon_sym_ref] = ACTIONS(1396), + [sym_mutable_specifier] = ACTIONS(1396), + [sym_integer_literal] = ACTIONS(1394), + [aux_sym_string_literal_token1] = ACTIONS(1394), + [sym_char_literal] = ACTIONS(1394), + [anon_sym_true] = ACTIONS(1396), + [anon_sym_false] = ACTIONS(1396), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1396), + [sym_super] = ACTIONS(1396), + [sym_crate] = ACTIONS(1396), + [sym_metavariable] = ACTIONS(1394), + [sym__raw_string_literal_start] = ACTIONS(1394), + [sym_float_literal] = ACTIONS(1394), }, [472] = { + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_arm] = STATE(1471), + [sym_last_match_arm] = STATE(3426), + [sym_match_pattern] = STATE(3345), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(472), [sym_block_comment] = STATE(472), - [sym_identifier] = ACTIONS(1436), - [anon_sym_LPAREN] = ACTIONS(1434), - [anon_sym_LBRACK] = ACTIONS(1434), - [anon_sym_RBRACE] = ACTIONS(1434), - [anon_sym_PLUS] = ACTIONS(1436), - [anon_sym_STAR] = ACTIONS(1436), - [anon_sym_QMARK] = ACTIONS(1434), - [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_DASH] = ACTIONS(1436), - [anon_sym_SLASH] = ACTIONS(1436), - [anon_sym_PERCENT] = ACTIONS(1436), - [anon_sym_CARET] = ACTIONS(1436), - [anon_sym_AMP] = ACTIONS(1436), - [anon_sym_PIPE] = ACTIONS(1436), - [anon_sym_AMP_AMP] = ACTIONS(1434), - [anon_sym_PIPE_PIPE] = ACTIONS(1434), - [anon_sym_LT_LT] = ACTIONS(1436), - [anon_sym_GT_GT] = ACTIONS(1436), - [anon_sym_PLUS_EQ] = ACTIONS(1434), - [anon_sym_DASH_EQ] = ACTIONS(1434), - [anon_sym_STAR_EQ] = ACTIONS(1434), - [anon_sym_SLASH_EQ] = ACTIONS(1434), - [anon_sym_PERCENT_EQ] = ACTIONS(1434), - [anon_sym_CARET_EQ] = ACTIONS(1434), - [anon_sym_AMP_EQ] = ACTIONS(1434), - [anon_sym_PIPE_EQ] = ACTIONS(1434), - [anon_sym_LT_LT_EQ] = ACTIONS(1434), - [anon_sym_GT_GT_EQ] = ACTIONS(1434), - [anon_sym_EQ] = ACTIONS(1436), - [anon_sym_EQ_EQ] = ACTIONS(1434), - [anon_sym_BANG_EQ] = ACTIONS(1434), - [anon_sym_GT] = ACTIONS(1436), - [anon_sym_LT] = ACTIONS(1436), - [anon_sym_GT_EQ] = ACTIONS(1434), - [anon_sym_LT_EQ] = ACTIONS(1434), - [anon_sym__] = ACTIONS(1436), - [anon_sym_DOT] = ACTIONS(1436), - [anon_sym_DOT_DOT] = ACTIONS(1436), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1434), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1434), - [anon_sym_COMMA] = ACTIONS(1434), - [anon_sym_COLON_COLON] = ACTIONS(1434), - [anon_sym_POUND] = ACTIONS(1434), - [anon_sym_as] = ACTIONS(1436), - [anon_sym_const] = ACTIONS(1436), - [anon_sym_default] = ACTIONS(1436), - [anon_sym_union] = ACTIONS(1436), - [anon_sym_ref] = ACTIONS(1436), - [sym_mutable_specifier] = ACTIONS(1436), - [sym_integer_literal] = ACTIONS(1434), - [aux_sym_string_literal_token1] = ACTIONS(1434), - [sym_char_literal] = ACTIONS(1434), - [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(1434), - [sym__raw_string_literal_start] = ACTIONS(1434), - [sym_float_literal] = ACTIONS(1434), - }, - [473] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_arm] = STATE(1476), - [sym_last_match_arm] = STATE(3406), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(473), - [sym_block_comment] = STATE(473), - [aux_sym_match_block_repeat1] = STATE(475), - [aux_sym_match_arm_repeat1] = STATE(757), + [aux_sym_match_block_repeat1] = STATE(476), + [aux_sym_match_arm_repeat1] = STATE(759), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -68098,122 +68037,204 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, + [473] = { + [sym_line_comment] = STATE(473), + [sym_block_comment] = STATE(473), + [sym_identifier] = ACTIONS(1376), + [anon_sym_LPAREN] = ACTIONS(1374), + [anon_sym_LBRACK] = ACTIONS(1374), + [anon_sym_RBRACE] = ACTIONS(1374), + [anon_sym_PLUS] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1376), + [anon_sym_QMARK] = ACTIONS(1374), + [anon_sym_u8] = ACTIONS(1376), + [anon_sym_i8] = ACTIONS(1376), + [anon_sym_u16] = ACTIONS(1376), + [anon_sym_i16] = ACTIONS(1376), + [anon_sym_u32] = ACTIONS(1376), + [anon_sym_i32] = ACTIONS(1376), + [anon_sym_u64] = ACTIONS(1376), + [anon_sym_i64] = ACTIONS(1376), + [anon_sym_u128] = ACTIONS(1376), + [anon_sym_i128] = ACTIONS(1376), + [anon_sym_isize] = ACTIONS(1376), + [anon_sym_usize] = ACTIONS(1376), + [anon_sym_f32] = ACTIONS(1376), + [anon_sym_f64] = ACTIONS(1376), + [anon_sym_bool] = ACTIONS(1376), + [anon_sym_str] = ACTIONS(1376), + [anon_sym_char] = ACTIONS(1376), + [anon_sym_DASH] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1376), + [anon_sym_PERCENT] = ACTIONS(1376), + [anon_sym_CARET] = ACTIONS(1376), + [anon_sym_AMP] = ACTIONS(1376), + [anon_sym_PIPE] = ACTIONS(1376), + [anon_sym_AMP_AMP] = ACTIONS(1374), + [anon_sym_PIPE_PIPE] = ACTIONS(1374), + [anon_sym_LT_LT] = ACTIONS(1376), + [anon_sym_GT_GT] = ACTIONS(1376), + [anon_sym_PLUS_EQ] = ACTIONS(1374), + [anon_sym_DASH_EQ] = ACTIONS(1374), + [anon_sym_STAR_EQ] = ACTIONS(1374), + [anon_sym_SLASH_EQ] = ACTIONS(1374), + [anon_sym_PERCENT_EQ] = ACTIONS(1374), + [anon_sym_CARET_EQ] = ACTIONS(1374), + [anon_sym_AMP_EQ] = ACTIONS(1374), + [anon_sym_PIPE_EQ] = ACTIONS(1374), + [anon_sym_LT_LT_EQ] = ACTIONS(1374), + [anon_sym_GT_GT_EQ] = ACTIONS(1374), + [anon_sym_EQ] = ACTIONS(1376), + [anon_sym_EQ_EQ] = ACTIONS(1374), + [anon_sym_BANG_EQ] = ACTIONS(1374), + [anon_sym_GT] = ACTIONS(1376), + [anon_sym_LT] = ACTIONS(1376), + [anon_sym_GT_EQ] = ACTIONS(1374), + [anon_sym_LT_EQ] = ACTIONS(1374), + [anon_sym__] = ACTIONS(1376), + [anon_sym_DOT] = ACTIONS(1376), + [anon_sym_DOT_DOT] = ACTIONS(1376), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1374), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1374), + [anon_sym_COMMA] = ACTIONS(1374), + [anon_sym_COLON_COLON] = ACTIONS(1374), + [anon_sym_POUND] = ACTIONS(1374), + [anon_sym_as] = ACTIONS(1376), + [anon_sym_const] = ACTIONS(1376), + [anon_sym_default] = ACTIONS(1376), + [anon_sym_union] = ACTIONS(1376), + [anon_sym_ref] = ACTIONS(1376), + [sym_mutable_specifier] = ACTIONS(1376), + [sym_integer_literal] = ACTIONS(1374), + [aux_sym_string_literal_token1] = ACTIONS(1374), + [sym_char_literal] = ACTIONS(1374), + [anon_sym_true] = ACTIONS(1376), + [anon_sym_false] = ACTIONS(1376), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1376), + [sym_super] = ACTIONS(1376), + [sym_crate] = ACTIONS(1376), + [sym_metavariable] = ACTIONS(1374), + [sym__raw_string_literal_start] = ACTIONS(1374), + [sym_float_literal] = ACTIONS(1374), + }, [474] = { [sym_line_comment] = STATE(474), [sym_block_comment] = STATE(474), - [sym_identifier] = ACTIONS(1368), - [anon_sym_LPAREN] = ACTIONS(1366), - [anon_sym_LBRACK] = ACTIONS(1366), - [anon_sym_RBRACE] = ACTIONS(1366), - [anon_sym_PLUS] = ACTIONS(1368), - [anon_sym_STAR] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(1366), - [anon_sym_u8] = ACTIONS(1368), - [anon_sym_i8] = ACTIONS(1368), - [anon_sym_u16] = ACTIONS(1368), - [anon_sym_i16] = ACTIONS(1368), - [anon_sym_u32] = ACTIONS(1368), - [anon_sym_i32] = ACTIONS(1368), - [anon_sym_u64] = ACTIONS(1368), - [anon_sym_i64] = ACTIONS(1368), - [anon_sym_u128] = ACTIONS(1368), - [anon_sym_i128] = ACTIONS(1368), - [anon_sym_isize] = ACTIONS(1368), - [anon_sym_usize] = ACTIONS(1368), - [anon_sym_f32] = ACTIONS(1368), - [anon_sym_f64] = ACTIONS(1368), - [anon_sym_bool] = ACTIONS(1368), - [anon_sym_str] = ACTIONS(1368), - [anon_sym_char] = ACTIONS(1368), - [anon_sym_DASH] = ACTIONS(1368), - [anon_sym_SLASH] = ACTIONS(1368), - [anon_sym_PERCENT] = ACTIONS(1368), - [anon_sym_CARET] = ACTIONS(1368), - [anon_sym_AMP] = ACTIONS(1368), - [anon_sym_PIPE] = ACTIONS(1368), - [anon_sym_AMP_AMP] = ACTIONS(1366), - [anon_sym_PIPE_PIPE] = ACTIONS(1366), - [anon_sym_LT_LT] = ACTIONS(1368), - [anon_sym_GT_GT] = ACTIONS(1368), - [anon_sym_PLUS_EQ] = ACTIONS(1366), - [anon_sym_DASH_EQ] = ACTIONS(1366), - [anon_sym_STAR_EQ] = ACTIONS(1366), - [anon_sym_SLASH_EQ] = ACTIONS(1366), - [anon_sym_PERCENT_EQ] = ACTIONS(1366), - [anon_sym_CARET_EQ] = ACTIONS(1366), - [anon_sym_AMP_EQ] = ACTIONS(1366), - [anon_sym_PIPE_EQ] = ACTIONS(1366), - [anon_sym_LT_LT_EQ] = ACTIONS(1366), - [anon_sym_GT_GT_EQ] = ACTIONS(1366), - [anon_sym_EQ] = ACTIONS(1368), - [anon_sym_EQ_EQ] = ACTIONS(1366), - [anon_sym_BANG_EQ] = ACTIONS(1366), - [anon_sym_GT] = ACTIONS(1368), - [anon_sym_LT] = ACTIONS(1368), - [anon_sym_GT_EQ] = ACTIONS(1366), - [anon_sym_LT_EQ] = ACTIONS(1366), - [anon_sym__] = ACTIONS(1368), - [anon_sym_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT] = ACTIONS(1368), - [anon_sym_DOT_DOT_DOT] = ACTIONS(1366), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1366), - [anon_sym_COMMA] = ACTIONS(1366), - [anon_sym_COLON_COLON] = ACTIONS(1366), - [anon_sym_POUND] = ACTIONS(1366), - [anon_sym_as] = ACTIONS(1368), - [anon_sym_const] = ACTIONS(1368), - [anon_sym_default] = ACTIONS(1368), - [anon_sym_union] = ACTIONS(1368), - [anon_sym_ref] = ACTIONS(1368), - [sym_mutable_specifier] = ACTIONS(1368), - [sym_integer_literal] = ACTIONS(1366), - [aux_sym_string_literal_token1] = ACTIONS(1366), - [sym_char_literal] = ACTIONS(1366), - [anon_sym_true] = ACTIONS(1368), - [anon_sym_false] = ACTIONS(1368), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1368), - [sym_super] = ACTIONS(1368), - [sym_crate] = ACTIONS(1368), - [sym_metavariable] = ACTIONS(1366), - [sym__raw_string_literal_start] = ACTIONS(1366), - [sym_float_literal] = ACTIONS(1366), + [sym_identifier] = ACTIONS(1426), + [anon_sym_LPAREN] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1424), + [anon_sym_RBRACE] = ACTIONS(1424), + [anon_sym_PLUS] = ACTIONS(1426), + [anon_sym_STAR] = ACTIONS(1426), + [anon_sym_QMARK] = ACTIONS(1424), + [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_DASH] = ACTIONS(1426), + [anon_sym_SLASH] = ACTIONS(1426), + [anon_sym_PERCENT] = ACTIONS(1426), + [anon_sym_CARET] = ACTIONS(1426), + [anon_sym_AMP] = ACTIONS(1426), + [anon_sym_PIPE] = ACTIONS(1426), + [anon_sym_AMP_AMP] = ACTIONS(1424), + [anon_sym_PIPE_PIPE] = ACTIONS(1424), + [anon_sym_LT_LT] = ACTIONS(1426), + [anon_sym_GT_GT] = ACTIONS(1426), + [anon_sym_PLUS_EQ] = ACTIONS(1424), + [anon_sym_DASH_EQ] = ACTIONS(1424), + [anon_sym_STAR_EQ] = ACTIONS(1424), + [anon_sym_SLASH_EQ] = ACTIONS(1424), + [anon_sym_PERCENT_EQ] = ACTIONS(1424), + [anon_sym_CARET_EQ] = ACTIONS(1424), + [anon_sym_AMP_EQ] = ACTIONS(1424), + [anon_sym_PIPE_EQ] = ACTIONS(1424), + [anon_sym_LT_LT_EQ] = ACTIONS(1424), + [anon_sym_GT_GT_EQ] = ACTIONS(1424), + [anon_sym_EQ] = ACTIONS(1426), + [anon_sym_EQ_EQ] = ACTIONS(1424), + [anon_sym_BANG_EQ] = ACTIONS(1424), + [anon_sym_GT] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1426), + [anon_sym_GT_EQ] = ACTIONS(1424), + [anon_sym_LT_EQ] = ACTIONS(1424), + [anon_sym__] = ACTIONS(1426), + [anon_sym_DOT] = ACTIONS(1426), + [anon_sym_DOT_DOT] = ACTIONS(1426), + [anon_sym_DOT_DOT_DOT] = ACTIONS(1424), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1424), + [anon_sym_COMMA] = ACTIONS(1424), + [anon_sym_COLON_COLON] = ACTIONS(1424), + [anon_sym_POUND] = ACTIONS(1424), + [anon_sym_as] = ACTIONS(1426), + [anon_sym_const] = ACTIONS(1426), + [anon_sym_default] = ACTIONS(1426), + [anon_sym_union] = ACTIONS(1426), + [anon_sym_ref] = ACTIONS(1426), + [sym_mutable_specifier] = ACTIONS(1426), + [sym_integer_literal] = ACTIONS(1424), + [aux_sym_string_literal_token1] = ACTIONS(1424), + [sym_char_literal] = ACTIONS(1424), + [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(1424), + [sym__raw_string_literal_start] = ACTIONS(1424), + [sym_float_literal] = ACTIONS(1424), }, [475] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_arm] = STATE(1476), - [sym_last_match_arm] = STATE(3399), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_arm] = STATE(1471), + [sym_last_match_arm] = STATE(3363), + [sym_match_pattern] = STATE(3345), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(475), [sym_block_comment] = STATE(475), - [aux_sym_match_block_repeat1] = STATE(554), - [aux_sym_match_arm_repeat1] = STATE(757), + [aux_sym_match_block_repeat1] = STATE(721), + [aux_sym_match_arm_repeat1] = STATE(759), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -68262,39 +68283,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1636), }, [476] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_arm] = STATE(1476), - [sym_last_match_arm] = STATE(3456), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_arm] = STATE(1471), + [sym_last_match_arm] = STATE(3477), + [sym_match_pattern] = STATE(3345), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(476), [sym_block_comment] = STATE(476), - [aux_sym_match_block_repeat1] = STATE(554), - [aux_sym_match_arm_repeat1] = STATE(757), + [aux_sym_match_block_repeat1] = STATE(721), + [aux_sym_match_arm_repeat1] = STATE(759), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -68343,39 +68364,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1636), }, [477] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_arm] = STATE(1476), - [sym_last_match_arm] = STATE(3362), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_arm] = STATE(1471), + [sym_last_match_arm] = STATE(3364), + [sym_match_pattern] = STATE(3345), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(477), [sym_block_comment] = STATE(477), - [aux_sym_match_block_repeat1] = STATE(554), - [aux_sym_match_arm_repeat1] = STATE(757), + [aux_sym_match_block_repeat1] = STATE(721), + [aux_sym_match_arm_repeat1] = STATE(759), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -68424,39 +68445,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1636), }, [478] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_arm] = STATE(1476), - [sym_last_match_arm] = STATE(3422), - [sym_match_pattern] = STATE(3493), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_arm] = STATE(1471), + [sym_last_match_arm] = STATE(3405), + [sym_match_pattern] = STATE(3345), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(478), [sym_block_comment] = STATE(478), - [aux_sym_match_block_repeat1] = STATE(554), - [aux_sym_match_arm_repeat1] = STATE(757), + [aux_sym_match_block_repeat1] = STATE(721), + [aux_sym_match_arm_repeat1] = STATE(759), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -72665,1928 +72686,4088 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1866), }, [531] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3599), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2139), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3323), - [sym_generic_type_with_turbofish] = STATE(3349), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3208), [sym_line_comment] = STATE(531), [sym_block_comment] = STATE(531), - [aux_sym_declaration_list_repeat1] = STATE(707), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_RBRACE] = 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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1890), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1902), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(1870), + [sym_identifier] = ACTIONS(1872), + [anon_sym_SEMI] = ACTIONS(1870), + [anon_sym_macro_rules_BANG] = ACTIONS(1870), + [anon_sym_LPAREN] = ACTIONS(1870), + [anon_sym_LBRACK] = ACTIONS(1870), + [anon_sym_LBRACE] = ACTIONS(1870), + [anon_sym_RBRACE] = ACTIONS(1870), + [anon_sym_STAR] = ACTIONS(1870), + [anon_sym_u8] = ACTIONS(1872), + [anon_sym_i8] = ACTIONS(1872), + [anon_sym_u16] = ACTIONS(1872), + [anon_sym_i16] = ACTIONS(1872), + [anon_sym_u32] = ACTIONS(1872), + [anon_sym_i32] = ACTIONS(1872), + [anon_sym_u64] = ACTIONS(1872), + [anon_sym_i64] = ACTIONS(1872), + [anon_sym_u128] = ACTIONS(1872), + [anon_sym_i128] = ACTIONS(1872), + [anon_sym_isize] = ACTIONS(1872), + [anon_sym_usize] = ACTIONS(1872), + [anon_sym_f32] = ACTIONS(1872), + [anon_sym_f64] = ACTIONS(1872), + [anon_sym_bool] = ACTIONS(1872), + [anon_sym_str] = ACTIONS(1872), + [anon_sym_char] = ACTIONS(1872), + [anon_sym_DASH] = ACTIONS(1870), + [anon_sym_BANG] = ACTIONS(1870), + [anon_sym_AMP] = ACTIONS(1870), + [anon_sym_PIPE] = ACTIONS(1870), + [anon_sym_LT] = ACTIONS(1870), + [anon_sym_DOT_DOT] = ACTIONS(1870), + [anon_sym_COLON_COLON] = ACTIONS(1870), + [anon_sym_POUND] = ACTIONS(1870), + [anon_sym_SQUOTE] = ACTIONS(1872), + [anon_sym_async] = ACTIONS(1872), + [anon_sym_break] = ACTIONS(1872), + [anon_sym_const] = ACTIONS(1872), + [anon_sym_continue] = ACTIONS(1872), + [anon_sym_default] = ACTIONS(1872), + [anon_sym_enum] = ACTIONS(1872), + [anon_sym_fn] = ACTIONS(1872), + [anon_sym_for] = ACTIONS(1872), + [anon_sym_if] = ACTIONS(1872), + [anon_sym_impl] = ACTIONS(1872), + [anon_sym_let] = ACTIONS(1872), + [anon_sym_loop] = ACTIONS(1872), + [anon_sym_match] = ACTIONS(1872), + [anon_sym_mod] = ACTIONS(1872), + [anon_sym_pub] = ACTIONS(1872), + [anon_sym_return] = ACTIONS(1872), + [anon_sym_static] = ACTIONS(1872), + [anon_sym_struct] = ACTIONS(1872), + [anon_sym_trait] = ACTIONS(1872), + [anon_sym_type] = ACTIONS(1872), + [anon_sym_union] = ACTIONS(1872), + [anon_sym_unsafe] = ACTIONS(1872), + [anon_sym_use] = ACTIONS(1872), + [anon_sym_while] = ACTIONS(1872), + [anon_sym_extern] = ACTIONS(1872), + [anon_sym_yield] = ACTIONS(1872), + [anon_sym_move] = ACTIONS(1872), + [anon_sym_try] = ACTIONS(1872), + [sym_integer_literal] = ACTIONS(1870), + [aux_sym_string_literal_token1] = ACTIONS(1870), + [sym_char_literal] = ACTIONS(1870), + [anon_sym_true] = ACTIONS(1872), + [anon_sym_false] = ACTIONS(1872), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1872), + [sym_super] = ACTIONS(1872), + [sym_crate] = ACTIONS(1872), + [sym_metavariable] = ACTIONS(1870), + [sym__raw_string_literal_start] = ACTIONS(1870), + [sym_float_literal] = ACTIONS(1870), }, [532] = { [sym_line_comment] = STATE(532), [sym_block_comment] = STATE(532), - [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_BANG] = ACTIONS(1920), - [anon_sym_AMP] = ACTIONS(1920), - [anon_sym_PIPE] = ACTIONS(1920), - [anon_sym_LT] = ACTIONS(1920), - [anon_sym_DOT_DOT] = ACTIONS(1920), - [anon_sym_COLON_COLON] = ACTIONS(1920), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1920), - [sym_float_literal] = ACTIONS(1920), + [ts_builtin_sym_end] = ACTIONS(1874), + [sym_identifier] = ACTIONS(1876), + [anon_sym_SEMI] = ACTIONS(1874), + [anon_sym_macro_rules_BANG] = ACTIONS(1874), + [anon_sym_LPAREN] = ACTIONS(1874), + [anon_sym_LBRACK] = ACTIONS(1874), + [anon_sym_LBRACE] = ACTIONS(1874), + [anon_sym_RBRACE] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1874), + [anon_sym_u8] = ACTIONS(1876), + [anon_sym_i8] = ACTIONS(1876), + [anon_sym_u16] = ACTIONS(1876), + [anon_sym_i16] = ACTIONS(1876), + [anon_sym_u32] = ACTIONS(1876), + [anon_sym_i32] = ACTIONS(1876), + [anon_sym_u64] = ACTIONS(1876), + [anon_sym_i64] = ACTIONS(1876), + [anon_sym_u128] = ACTIONS(1876), + [anon_sym_i128] = ACTIONS(1876), + [anon_sym_isize] = ACTIONS(1876), + [anon_sym_usize] = ACTIONS(1876), + [anon_sym_f32] = ACTIONS(1876), + [anon_sym_f64] = ACTIONS(1876), + [anon_sym_bool] = ACTIONS(1876), + [anon_sym_str] = ACTIONS(1876), + [anon_sym_char] = ACTIONS(1876), + [anon_sym_DASH] = ACTIONS(1874), + [anon_sym_BANG] = ACTIONS(1874), + [anon_sym_AMP] = ACTIONS(1874), + [anon_sym_PIPE] = ACTIONS(1874), + [anon_sym_LT] = ACTIONS(1874), + [anon_sym_DOT_DOT] = ACTIONS(1874), + [anon_sym_COLON_COLON] = ACTIONS(1874), + [anon_sym_POUND] = ACTIONS(1874), + [anon_sym_SQUOTE] = ACTIONS(1876), + [anon_sym_async] = ACTIONS(1876), + [anon_sym_break] = ACTIONS(1876), + [anon_sym_const] = ACTIONS(1876), + [anon_sym_continue] = ACTIONS(1876), + [anon_sym_default] = ACTIONS(1876), + [anon_sym_enum] = ACTIONS(1876), + [anon_sym_fn] = ACTIONS(1876), + [anon_sym_for] = ACTIONS(1876), + [anon_sym_if] = ACTIONS(1876), + [anon_sym_impl] = ACTIONS(1876), + [anon_sym_let] = ACTIONS(1876), + [anon_sym_loop] = ACTIONS(1876), + [anon_sym_match] = ACTIONS(1876), + [anon_sym_mod] = ACTIONS(1876), + [anon_sym_pub] = ACTIONS(1876), + [anon_sym_return] = ACTIONS(1876), + [anon_sym_static] = ACTIONS(1876), + [anon_sym_struct] = ACTIONS(1876), + [anon_sym_trait] = ACTIONS(1876), + [anon_sym_type] = ACTIONS(1876), + [anon_sym_union] = ACTIONS(1876), + [anon_sym_unsafe] = ACTIONS(1876), + [anon_sym_use] = ACTIONS(1876), + [anon_sym_while] = ACTIONS(1876), + [anon_sym_extern] = ACTIONS(1876), + [anon_sym_yield] = ACTIONS(1876), + [anon_sym_move] = ACTIONS(1876), + [anon_sym_try] = ACTIONS(1876), + [sym_integer_literal] = ACTIONS(1874), + [aux_sym_string_literal_token1] = ACTIONS(1874), + [sym_char_literal] = ACTIONS(1874), + [anon_sym_true] = ACTIONS(1876), + [anon_sym_false] = ACTIONS(1876), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1876), + [sym_super] = ACTIONS(1876), + [sym_crate] = ACTIONS(1876), + [sym_metavariable] = ACTIONS(1874), + [sym__raw_string_literal_start] = ACTIONS(1874), + [sym_float_literal] = ACTIONS(1874), }, [533] = { [sym_line_comment] = STATE(533), [sym_block_comment] = STATE(533), - [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_BANG] = ACTIONS(1924), - [anon_sym_AMP] = ACTIONS(1924), - [anon_sym_PIPE] = ACTIONS(1924), - [anon_sym_LT] = ACTIONS(1924), - [anon_sym_DOT_DOT] = ACTIONS(1924), - [anon_sym_COLON_COLON] = ACTIONS(1924), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1924), - [sym_float_literal] = ACTIONS(1924), + [ts_builtin_sym_end] = ACTIONS(1878), + [sym_identifier] = ACTIONS(1880), + [anon_sym_SEMI] = ACTIONS(1878), + [anon_sym_macro_rules_BANG] = ACTIONS(1878), + [anon_sym_LPAREN] = ACTIONS(1878), + [anon_sym_LBRACK] = ACTIONS(1878), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_RBRACE] = ACTIONS(1878), + [anon_sym_STAR] = ACTIONS(1878), + [anon_sym_u8] = ACTIONS(1880), + [anon_sym_i8] = ACTIONS(1880), + [anon_sym_u16] = ACTIONS(1880), + [anon_sym_i16] = ACTIONS(1880), + [anon_sym_u32] = ACTIONS(1880), + [anon_sym_i32] = ACTIONS(1880), + [anon_sym_u64] = ACTIONS(1880), + [anon_sym_i64] = ACTIONS(1880), + [anon_sym_u128] = ACTIONS(1880), + [anon_sym_i128] = ACTIONS(1880), + [anon_sym_isize] = ACTIONS(1880), + [anon_sym_usize] = ACTIONS(1880), + [anon_sym_f32] = ACTIONS(1880), + [anon_sym_f64] = ACTIONS(1880), + [anon_sym_bool] = ACTIONS(1880), + [anon_sym_str] = ACTIONS(1880), + [anon_sym_char] = ACTIONS(1880), + [anon_sym_DASH] = ACTIONS(1878), + [anon_sym_BANG] = ACTIONS(1878), + [anon_sym_AMP] = ACTIONS(1878), + [anon_sym_PIPE] = ACTIONS(1878), + [anon_sym_LT] = ACTIONS(1878), + [anon_sym_DOT_DOT] = ACTIONS(1878), + [anon_sym_COLON_COLON] = ACTIONS(1878), + [anon_sym_POUND] = ACTIONS(1878), + [anon_sym_SQUOTE] = ACTIONS(1880), + [anon_sym_async] = ACTIONS(1880), + [anon_sym_break] = ACTIONS(1880), + [anon_sym_const] = ACTIONS(1880), + [anon_sym_continue] = ACTIONS(1880), + [anon_sym_default] = ACTIONS(1880), + [anon_sym_enum] = ACTIONS(1880), + [anon_sym_fn] = ACTIONS(1880), + [anon_sym_for] = ACTIONS(1880), + [anon_sym_if] = ACTIONS(1880), + [anon_sym_impl] = ACTIONS(1880), + [anon_sym_let] = ACTIONS(1880), + [anon_sym_loop] = ACTIONS(1880), + [anon_sym_match] = ACTIONS(1880), + [anon_sym_mod] = ACTIONS(1880), + [anon_sym_pub] = ACTIONS(1880), + [anon_sym_return] = ACTIONS(1880), + [anon_sym_static] = ACTIONS(1880), + [anon_sym_struct] = ACTIONS(1880), + [anon_sym_trait] = ACTIONS(1880), + [anon_sym_type] = ACTIONS(1880), + [anon_sym_union] = ACTIONS(1880), + [anon_sym_unsafe] = ACTIONS(1880), + [anon_sym_use] = ACTIONS(1880), + [anon_sym_while] = ACTIONS(1880), + [anon_sym_extern] = ACTIONS(1880), + [anon_sym_yield] = ACTIONS(1880), + [anon_sym_move] = ACTIONS(1880), + [anon_sym_try] = ACTIONS(1880), + [sym_integer_literal] = ACTIONS(1878), + [aux_sym_string_literal_token1] = ACTIONS(1878), + [sym_char_literal] = ACTIONS(1878), + [anon_sym_true] = ACTIONS(1880), + [anon_sym_false] = ACTIONS(1880), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1880), + [sym_super] = ACTIONS(1880), + [sym_crate] = ACTIONS(1880), + [sym_metavariable] = ACTIONS(1878), + [sym__raw_string_literal_start] = ACTIONS(1878), + [sym_float_literal] = ACTIONS(1878), }, [534] = { [sym_line_comment] = STATE(534), [sym_block_comment] = STATE(534), - [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_BANG] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1928), - [anon_sym_DOT_DOT] = ACTIONS(1928), - [anon_sym_COLON_COLON] = ACTIONS(1928), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1928), - [sym_float_literal] = ACTIONS(1928), + [ts_builtin_sym_end] = ACTIONS(1882), + [sym_identifier] = ACTIONS(1884), + [anon_sym_SEMI] = ACTIONS(1882), + [anon_sym_macro_rules_BANG] = ACTIONS(1882), + [anon_sym_LPAREN] = ACTIONS(1882), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_LBRACE] = ACTIONS(1882), + [anon_sym_RBRACE] = ACTIONS(1882), + [anon_sym_STAR] = ACTIONS(1882), + [anon_sym_u8] = ACTIONS(1884), + [anon_sym_i8] = ACTIONS(1884), + [anon_sym_u16] = ACTIONS(1884), + [anon_sym_i16] = ACTIONS(1884), + [anon_sym_u32] = ACTIONS(1884), + [anon_sym_i32] = ACTIONS(1884), + [anon_sym_u64] = ACTIONS(1884), + [anon_sym_i64] = ACTIONS(1884), + [anon_sym_u128] = ACTIONS(1884), + [anon_sym_i128] = ACTIONS(1884), + [anon_sym_isize] = ACTIONS(1884), + [anon_sym_usize] = ACTIONS(1884), + [anon_sym_f32] = ACTIONS(1884), + [anon_sym_f64] = ACTIONS(1884), + [anon_sym_bool] = ACTIONS(1884), + [anon_sym_str] = ACTIONS(1884), + [anon_sym_char] = ACTIONS(1884), + [anon_sym_DASH] = ACTIONS(1882), + [anon_sym_BANG] = ACTIONS(1882), + [anon_sym_AMP] = ACTIONS(1882), + [anon_sym_PIPE] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1882), + [anon_sym_DOT_DOT] = ACTIONS(1882), + [anon_sym_COLON_COLON] = ACTIONS(1882), + [anon_sym_POUND] = ACTIONS(1882), + [anon_sym_SQUOTE] = ACTIONS(1884), + [anon_sym_async] = ACTIONS(1884), + [anon_sym_break] = ACTIONS(1884), + [anon_sym_const] = ACTIONS(1884), + [anon_sym_continue] = ACTIONS(1884), + [anon_sym_default] = ACTIONS(1884), + [anon_sym_enum] = ACTIONS(1884), + [anon_sym_fn] = ACTIONS(1884), + [anon_sym_for] = ACTIONS(1884), + [anon_sym_if] = ACTIONS(1884), + [anon_sym_impl] = ACTIONS(1884), + [anon_sym_let] = ACTIONS(1884), + [anon_sym_loop] = ACTIONS(1884), + [anon_sym_match] = ACTIONS(1884), + [anon_sym_mod] = ACTIONS(1884), + [anon_sym_pub] = ACTIONS(1884), + [anon_sym_return] = ACTIONS(1884), + [anon_sym_static] = ACTIONS(1884), + [anon_sym_struct] = ACTIONS(1884), + [anon_sym_trait] = ACTIONS(1884), + [anon_sym_type] = ACTIONS(1884), + [anon_sym_union] = ACTIONS(1884), + [anon_sym_unsafe] = ACTIONS(1884), + [anon_sym_use] = ACTIONS(1884), + [anon_sym_while] = ACTIONS(1884), + [anon_sym_extern] = ACTIONS(1884), + [anon_sym_yield] = ACTIONS(1884), + [anon_sym_move] = ACTIONS(1884), + [anon_sym_try] = ACTIONS(1884), + [sym_integer_literal] = ACTIONS(1882), + [aux_sym_string_literal_token1] = ACTIONS(1882), + [sym_char_literal] = ACTIONS(1882), + [anon_sym_true] = ACTIONS(1884), + [anon_sym_false] = ACTIONS(1884), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1884), + [sym_super] = ACTIONS(1884), + [sym_crate] = ACTIONS(1884), + [sym_metavariable] = ACTIONS(1882), + [sym__raw_string_literal_start] = ACTIONS(1882), + [sym_float_literal] = ACTIONS(1882), }, [535] = { [sym_line_comment] = STATE(535), [sym_block_comment] = STATE(535), - [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_BANG] = ACTIONS(1932), - [anon_sym_AMP] = ACTIONS(1932), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_LT] = ACTIONS(1932), - [anon_sym_DOT_DOT] = ACTIONS(1932), - [anon_sym_COLON_COLON] = ACTIONS(1932), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1932), - [sym_float_literal] = ACTIONS(1932), + [ts_builtin_sym_end] = ACTIONS(1886), + [sym_identifier] = ACTIONS(1888), + [anon_sym_SEMI] = ACTIONS(1886), + [anon_sym_macro_rules_BANG] = ACTIONS(1886), + [anon_sym_LPAREN] = ACTIONS(1886), + [anon_sym_LBRACK] = ACTIONS(1886), + [anon_sym_LBRACE] = ACTIONS(1886), + [anon_sym_RBRACE] = ACTIONS(1886), + [anon_sym_STAR] = ACTIONS(1886), + [anon_sym_u8] = ACTIONS(1888), + [anon_sym_i8] = ACTIONS(1888), + [anon_sym_u16] = ACTIONS(1888), + [anon_sym_i16] = ACTIONS(1888), + [anon_sym_u32] = ACTIONS(1888), + [anon_sym_i32] = ACTIONS(1888), + [anon_sym_u64] = ACTIONS(1888), + [anon_sym_i64] = ACTIONS(1888), + [anon_sym_u128] = ACTIONS(1888), + [anon_sym_i128] = ACTIONS(1888), + [anon_sym_isize] = ACTIONS(1888), + [anon_sym_usize] = ACTIONS(1888), + [anon_sym_f32] = ACTIONS(1888), + [anon_sym_f64] = ACTIONS(1888), + [anon_sym_bool] = ACTIONS(1888), + [anon_sym_str] = ACTIONS(1888), + [anon_sym_char] = ACTIONS(1888), + [anon_sym_DASH] = ACTIONS(1886), + [anon_sym_BANG] = ACTIONS(1886), + [anon_sym_AMP] = ACTIONS(1886), + [anon_sym_PIPE] = ACTIONS(1886), + [anon_sym_LT] = ACTIONS(1886), + [anon_sym_DOT_DOT] = ACTIONS(1886), + [anon_sym_COLON_COLON] = ACTIONS(1886), + [anon_sym_POUND] = ACTIONS(1886), + [anon_sym_SQUOTE] = ACTIONS(1888), + [anon_sym_async] = ACTIONS(1888), + [anon_sym_break] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1888), + [anon_sym_continue] = ACTIONS(1888), + [anon_sym_default] = ACTIONS(1888), + [anon_sym_enum] = ACTIONS(1888), + [anon_sym_fn] = ACTIONS(1888), + [anon_sym_for] = ACTIONS(1888), + [anon_sym_if] = ACTIONS(1888), + [anon_sym_impl] = ACTIONS(1888), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_loop] = ACTIONS(1888), + [anon_sym_match] = ACTIONS(1888), + [anon_sym_mod] = ACTIONS(1888), + [anon_sym_pub] = ACTIONS(1888), + [anon_sym_return] = ACTIONS(1888), + [anon_sym_static] = ACTIONS(1888), + [anon_sym_struct] = ACTIONS(1888), + [anon_sym_trait] = ACTIONS(1888), + [anon_sym_type] = ACTIONS(1888), + [anon_sym_union] = ACTIONS(1888), + [anon_sym_unsafe] = ACTIONS(1888), + [anon_sym_use] = ACTIONS(1888), + [anon_sym_while] = ACTIONS(1888), + [anon_sym_extern] = ACTIONS(1888), + [anon_sym_yield] = ACTIONS(1888), + [anon_sym_move] = ACTIONS(1888), + [anon_sym_try] = ACTIONS(1888), + [sym_integer_literal] = ACTIONS(1886), + [aux_sym_string_literal_token1] = ACTIONS(1886), + [sym_char_literal] = ACTIONS(1886), + [anon_sym_true] = ACTIONS(1888), + [anon_sym_false] = ACTIONS(1888), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1888), + [sym_super] = ACTIONS(1888), + [sym_crate] = ACTIONS(1888), + [sym_metavariable] = ACTIONS(1886), + [sym__raw_string_literal_start] = ACTIONS(1886), + [sym_float_literal] = ACTIONS(1886), }, [536] = { [sym_line_comment] = STATE(536), [sym_block_comment] = STATE(536), - [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_BANG] = ACTIONS(1936), - [anon_sym_AMP] = ACTIONS(1936), - [anon_sym_PIPE] = ACTIONS(1936), - [anon_sym_LT] = ACTIONS(1936), - [anon_sym_DOT_DOT] = ACTIONS(1936), - [anon_sym_COLON_COLON] = ACTIONS(1936), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1936), - [sym_float_literal] = ACTIONS(1936), + [ts_builtin_sym_end] = ACTIONS(1890), + [sym_identifier] = ACTIONS(1892), + [anon_sym_SEMI] = ACTIONS(1890), + [anon_sym_macro_rules_BANG] = ACTIONS(1890), + [anon_sym_LPAREN] = ACTIONS(1890), + [anon_sym_LBRACK] = ACTIONS(1890), + [anon_sym_LBRACE] = ACTIONS(1890), + [anon_sym_RBRACE] = ACTIONS(1890), + [anon_sym_STAR] = ACTIONS(1890), + [anon_sym_u8] = ACTIONS(1892), + [anon_sym_i8] = ACTIONS(1892), + [anon_sym_u16] = ACTIONS(1892), + [anon_sym_i16] = ACTIONS(1892), + [anon_sym_u32] = ACTIONS(1892), + [anon_sym_i32] = ACTIONS(1892), + [anon_sym_u64] = ACTIONS(1892), + [anon_sym_i64] = ACTIONS(1892), + [anon_sym_u128] = ACTIONS(1892), + [anon_sym_i128] = ACTIONS(1892), + [anon_sym_isize] = ACTIONS(1892), + [anon_sym_usize] = ACTIONS(1892), + [anon_sym_f32] = ACTIONS(1892), + [anon_sym_f64] = ACTIONS(1892), + [anon_sym_bool] = ACTIONS(1892), + [anon_sym_str] = ACTIONS(1892), + [anon_sym_char] = ACTIONS(1892), + [anon_sym_DASH] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(1890), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_PIPE] = ACTIONS(1890), + [anon_sym_LT] = ACTIONS(1890), + [anon_sym_DOT_DOT] = ACTIONS(1890), + [anon_sym_COLON_COLON] = ACTIONS(1890), + [anon_sym_POUND] = ACTIONS(1890), + [anon_sym_SQUOTE] = ACTIONS(1892), + [anon_sym_async] = ACTIONS(1892), + [anon_sym_break] = ACTIONS(1892), + [anon_sym_const] = ACTIONS(1892), + [anon_sym_continue] = ACTIONS(1892), + [anon_sym_default] = ACTIONS(1892), + [anon_sym_enum] = ACTIONS(1892), + [anon_sym_fn] = ACTIONS(1892), + [anon_sym_for] = ACTIONS(1892), + [anon_sym_if] = ACTIONS(1892), + [anon_sym_impl] = ACTIONS(1892), + [anon_sym_let] = ACTIONS(1892), + [anon_sym_loop] = ACTIONS(1892), + [anon_sym_match] = ACTIONS(1892), + [anon_sym_mod] = ACTIONS(1892), + [anon_sym_pub] = ACTIONS(1892), + [anon_sym_return] = ACTIONS(1892), + [anon_sym_static] = ACTIONS(1892), + [anon_sym_struct] = ACTIONS(1892), + [anon_sym_trait] = ACTIONS(1892), + [anon_sym_type] = ACTIONS(1892), + [anon_sym_union] = ACTIONS(1892), + [anon_sym_unsafe] = ACTIONS(1892), + [anon_sym_use] = ACTIONS(1892), + [anon_sym_while] = ACTIONS(1892), + [anon_sym_extern] = ACTIONS(1892), + [anon_sym_yield] = ACTIONS(1892), + [anon_sym_move] = ACTIONS(1892), + [anon_sym_try] = ACTIONS(1892), + [sym_integer_literal] = ACTIONS(1890), + [aux_sym_string_literal_token1] = ACTIONS(1890), + [sym_char_literal] = ACTIONS(1890), + [anon_sym_true] = ACTIONS(1892), + [anon_sym_false] = ACTIONS(1892), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1892), + [sym_super] = ACTIONS(1892), + [sym_crate] = ACTIONS(1892), + [sym_metavariable] = ACTIONS(1890), + [sym__raw_string_literal_start] = ACTIONS(1890), + [sym_float_literal] = ACTIONS(1890), }, [537] = { [sym_line_comment] = STATE(537), [sym_block_comment] = STATE(537), - [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_BANG] = ACTIONS(1940), - [anon_sym_AMP] = ACTIONS(1940), - [anon_sym_PIPE] = ACTIONS(1940), - [anon_sym_LT] = ACTIONS(1940), - [anon_sym_DOT_DOT] = ACTIONS(1940), - [anon_sym_COLON_COLON] = ACTIONS(1940), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1940), - [sym_float_literal] = ACTIONS(1940), + [ts_builtin_sym_end] = ACTIONS(1894), + [sym_identifier] = ACTIONS(1896), + [anon_sym_SEMI] = ACTIONS(1894), + [anon_sym_macro_rules_BANG] = ACTIONS(1894), + [anon_sym_LPAREN] = ACTIONS(1894), + [anon_sym_LBRACK] = ACTIONS(1894), + [anon_sym_LBRACE] = ACTIONS(1894), + [anon_sym_RBRACE] = ACTIONS(1894), + [anon_sym_STAR] = ACTIONS(1894), + [anon_sym_u8] = ACTIONS(1896), + [anon_sym_i8] = ACTIONS(1896), + [anon_sym_u16] = ACTIONS(1896), + [anon_sym_i16] = ACTIONS(1896), + [anon_sym_u32] = ACTIONS(1896), + [anon_sym_i32] = ACTIONS(1896), + [anon_sym_u64] = ACTIONS(1896), + [anon_sym_i64] = ACTIONS(1896), + [anon_sym_u128] = ACTIONS(1896), + [anon_sym_i128] = ACTIONS(1896), + [anon_sym_isize] = ACTIONS(1896), + [anon_sym_usize] = ACTIONS(1896), + [anon_sym_f32] = ACTIONS(1896), + [anon_sym_f64] = ACTIONS(1896), + [anon_sym_bool] = ACTIONS(1896), + [anon_sym_str] = ACTIONS(1896), + [anon_sym_char] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1894), + [anon_sym_BANG] = ACTIONS(1894), + [anon_sym_AMP] = ACTIONS(1894), + [anon_sym_PIPE] = ACTIONS(1894), + [anon_sym_LT] = ACTIONS(1894), + [anon_sym_DOT_DOT] = ACTIONS(1894), + [anon_sym_COLON_COLON] = ACTIONS(1894), + [anon_sym_POUND] = ACTIONS(1894), + [anon_sym_SQUOTE] = ACTIONS(1896), + [anon_sym_async] = ACTIONS(1896), + [anon_sym_break] = ACTIONS(1896), + [anon_sym_const] = ACTIONS(1896), + [anon_sym_continue] = ACTIONS(1896), + [anon_sym_default] = ACTIONS(1896), + [anon_sym_enum] = ACTIONS(1896), + [anon_sym_fn] = ACTIONS(1896), + [anon_sym_for] = ACTIONS(1896), + [anon_sym_if] = ACTIONS(1896), + [anon_sym_impl] = ACTIONS(1896), + [anon_sym_let] = ACTIONS(1896), + [anon_sym_loop] = ACTIONS(1896), + [anon_sym_match] = ACTIONS(1896), + [anon_sym_mod] = ACTIONS(1896), + [anon_sym_pub] = ACTIONS(1896), + [anon_sym_return] = ACTIONS(1896), + [anon_sym_static] = ACTIONS(1896), + [anon_sym_struct] = ACTIONS(1896), + [anon_sym_trait] = ACTIONS(1896), + [anon_sym_type] = ACTIONS(1896), + [anon_sym_union] = ACTIONS(1896), + [anon_sym_unsafe] = ACTIONS(1896), + [anon_sym_use] = ACTIONS(1896), + [anon_sym_while] = ACTIONS(1896), + [anon_sym_extern] = ACTIONS(1896), + [anon_sym_yield] = ACTIONS(1896), + [anon_sym_move] = ACTIONS(1896), + [anon_sym_try] = ACTIONS(1896), + [sym_integer_literal] = ACTIONS(1894), + [aux_sym_string_literal_token1] = ACTIONS(1894), + [sym_char_literal] = ACTIONS(1894), + [anon_sym_true] = ACTIONS(1896), + [anon_sym_false] = ACTIONS(1896), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1896), + [sym_super] = ACTIONS(1896), + [sym_crate] = ACTIONS(1896), + [sym_metavariable] = ACTIONS(1894), + [sym__raw_string_literal_start] = ACTIONS(1894), + [sym_float_literal] = ACTIONS(1894), }, [538] = { [sym_line_comment] = STATE(538), [sym_block_comment] = STATE(538), - [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_BANG] = ACTIONS(1944), - [anon_sym_AMP] = ACTIONS(1944), - [anon_sym_PIPE] = ACTIONS(1944), - [anon_sym_LT] = ACTIONS(1944), - [anon_sym_DOT_DOT] = ACTIONS(1944), - [anon_sym_COLON_COLON] = ACTIONS(1944), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1944), - [sym_float_literal] = ACTIONS(1944), + [ts_builtin_sym_end] = ACTIONS(1898), + [sym_identifier] = ACTIONS(1900), + [anon_sym_SEMI] = ACTIONS(1898), + [anon_sym_macro_rules_BANG] = ACTIONS(1898), + [anon_sym_LPAREN] = ACTIONS(1898), + [anon_sym_LBRACK] = ACTIONS(1898), + [anon_sym_LBRACE] = ACTIONS(1898), + [anon_sym_RBRACE] = ACTIONS(1898), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_u8] = ACTIONS(1900), + [anon_sym_i8] = ACTIONS(1900), + [anon_sym_u16] = ACTIONS(1900), + [anon_sym_i16] = ACTIONS(1900), + [anon_sym_u32] = ACTIONS(1900), + [anon_sym_i32] = ACTIONS(1900), + [anon_sym_u64] = ACTIONS(1900), + [anon_sym_i64] = ACTIONS(1900), + [anon_sym_u128] = ACTIONS(1900), + [anon_sym_i128] = ACTIONS(1900), + [anon_sym_isize] = ACTIONS(1900), + [anon_sym_usize] = ACTIONS(1900), + [anon_sym_f32] = ACTIONS(1900), + [anon_sym_f64] = ACTIONS(1900), + [anon_sym_bool] = ACTIONS(1900), + [anon_sym_str] = ACTIONS(1900), + [anon_sym_char] = ACTIONS(1900), + [anon_sym_DASH] = ACTIONS(1898), + [anon_sym_BANG] = ACTIONS(1898), + [anon_sym_AMP] = ACTIONS(1898), + [anon_sym_PIPE] = ACTIONS(1898), + [anon_sym_LT] = ACTIONS(1898), + [anon_sym_DOT_DOT] = ACTIONS(1898), + [anon_sym_COLON_COLON] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1898), + [anon_sym_SQUOTE] = ACTIONS(1900), + [anon_sym_async] = ACTIONS(1900), + [anon_sym_break] = ACTIONS(1900), + [anon_sym_const] = ACTIONS(1900), + [anon_sym_continue] = ACTIONS(1900), + [anon_sym_default] = ACTIONS(1900), + [anon_sym_enum] = ACTIONS(1900), + [anon_sym_fn] = ACTIONS(1900), + [anon_sym_for] = ACTIONS(1900), + [anon_sym_if] = ACTIONS(1900), + [anon_sym_impl] = ACTIONS(1900), + [anon_sym_let] = ACTIONS(1900), + [anon_sym_loop] = ACTIONS(1900), + [anon_sym_match] = ACTIONS(1900), + [anon_sym_mod] = ACTIONS(1900), + [anon_sym_pub] = ACTIONS(1900), + [anon_sym_return] = ACTIONS(1900), + [anon_sym_static] = ACTIONS(1900), + [anon_sym_struct] = ACTIONS(1900), + [anon_sym_trait] = ACTIONS(1900), + [anon_sym_type] = ACTIONS(1900), + [anon_sym_union] = ACTIONS(1900), + [anon_sym_unsafe] = ACTIONS(1900), + [anon_sym_use] = ACTIONS(1900), + [anon_sym_while] = ACTIONS(1900), + [anon_sym_extern] = ACTIONS(1900), + [anon_sym_yield] = ACTIONS(1900), + [anon_sym_move] = ACTIONS(1900), + [anon_sym_try] = ACTIONS(1900), + [sym_integer_literal] = ACTIONS(1898), + [aux_sym_string_literal_token1] = ACTIONS(1898), + [sym_char_literal] = ACTIONS(1898), + [anon_sym_true] = ACTIONS(1900), + [anon_sym_false] = ACTIONS(1900), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1900), + [sym_super] = ACTIONS(1900), + [sym_crate] = ACTIONS(1900), + [sym_metavariable] = ACTIONS(1898), + [sym__raw_string_literal_start] = ACTIONS(1898), + [sym_float_literal] = ACTIONS(1898), }, [539] = { [sym_line_comment] = STATE(539), [sym_block_comment] = STATE(539), - [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_BANG] = ACTIONS(1948), - [anon_sym_AMP] = ACTIONS(1948), - [anon_sym_PIPE] = ACTIONS(1948), - [anon_sym_LT] = ACTIONS(1948), - [anon_sym_DOT_DOT] = ACTIONS(1948), - [anon_sym_COLON_COLON] = ACTIONS(1948), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1948), - [sym_float_literal] = ACTIONS(1948), + [ts_builtin_sym_end] = ACTIONS(1902), + [sym_identifier] = ACTIONS(1904), + [anon_sym_SEMI] = ACTIONS(1902), + [anon_sym_macro_rules_BANG] = ACTIONS(1902), + [anon_sym_LPAREN] = ACTIONS(1902), + [anon_sym_LBRACK] = ACTIONS(1902), + [anon_sym_LBRACE] = ACTIONS(1902), + [anon_sym_RBRACE] = ACTIONS(1902), + [anon_sym_STAR] = ACTIONS(1902), + [anon_sym_u8] = ACTIONS(1904), + [anon_sym_i8] = ACTIONS(1904), + [anon_sym_u16] = ACTIONS(1904), + [anon_sym_i16] = ACTIONS(1904), + [anon_sym_u32] = ACTIONS(1904), + [anon_sym_i32] = ACTIONS(1904), + [anon_sym_u64] = ACTIONS(1904), + [anon_sym_i64] = ACTIONS(1904), + [anon_sym_u128] = ACTIONS(1904), + [anon_sym_i128] = ACTIONS(1904), + [anon_sym_isize] = ACTIONS(1904), + [anon_sym_usize] = ACTIONS(1904), + [anon_sym_f32] = ACTIONS(1904), + [anon_sym_f64] = ACTIONS(1904), + [anon_sym_bool] = ACTIONS(1904), + [anon_sym_str] = ACTIONS(1904), + [anon_sym_char] = ACTIONS(1904), + [anon_sym_DASH] = ACTIONS(1902), + [anon_sym_BANG] = ACTIONS(1902), + [anon_sym_AMP] = ACTIONS(1902), + [anon_sym_PIPE] = ACTIONS(1902), + [anon_sym_LT] = ACTIONS(1902), + [anon_sym_DOT_DOT] = ACTIONS(1902), + [anon_sym_COLON_COLON] = ACTIONS(1902), + [anon_sym_POUND] = ACTIONS(1902), + [anon_sym_SQUOTE] = ACTIONS(1904), + [anon_sym_async] = ACTIONS(1904), + [anon_sym_break] = ACTIONS(1904), + [anon_sym_const] = ACTIONS(1904), + [anon_sym_continue] = ACTIONS(1904), + [anon_sym_default] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1904), + [anon_sym_fn] = ACTIONS(1904), + [anon_sym_for] = ACTIONS(1904), + [anon_sym_if] = ACTIONS(1904), + [anon_sym_impl] = ACTIONS(1904), + [anon_sym_let] = ACTIONS(1904), + [anon_sym_loop] = ACTIONS(1904), + [anon_sym_match] = ACTIONS(1904), + [anon_sym_mod] = ACTIONS(1904), + [anon_sym_pub] = ACTIONS(1904), + [anon_sym_return] = ACTIONS(1904), + [anon_sym_static] = ACTIONS(1904), + [anon_sym_struct] = ACTIONS(1904), + [anon_sym_trait] = ACTIONS(1904), + [anon_sym_type] = ACTIONS(1904), + [anon_sym_union] = ACTIONS(1904), + [anon_sym_unsafe] = ACTIONS(1904), + [anon_sym_use] = ACTIONS(1904), + [anon_sym_while] = ACTIONS(1904), + [anon_sym_extern] = ACTIONS(1904), + [anon_sym_yield] = ACTIONS(1904), + [anon_sym_move] = ACTIONS(1904), + [anon_sym_try] = ACTIONS(1904), + [sym_integer_literal] = ACTIONS(1902), + [aux_sym_string_literal_token1] = ACTIONS(1902), + [sym_char_literal] = ACTIONS(1902), + [anon_sym_true] = ACTIONS(1904), + [anon_sym_false] = ACTIONS(1904), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1904), + [sym_super] = ACTIONS(1904), + [sym_crate] = ACTIONS(1904), + [sym_metavariable] = ACTIONS(1902), + [sym__raw_string_literal_start] = ACTIONS(1902), + [sym_float_literal] = ACTIONS(1902), }, [540] = { [sym_line_comment] = STATE(540), [sym_block_comment] = STATE(540), - [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_BANG] = ACTIONS(1952), - [anon_sym_AMP] = ACTIONS(1952), - [anon_sym_PIPE] = ACTIONS(1952), - [anon_sym_LT] = ACTIONS(1952), - [anon_sym_DOT_DOT] = ACTIONS(1952), - [anon_sym_COLON_COLON] = ACTIONS(1952), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1952), - [sym_float_literal] = ACTIONS(1952), + [ts_builtin_sym_end] = ACTIONS(1906), + [sym_identifier] = ACTIONS(1908), + [anon_sym_SEMI] = ACTIONS(1906), + [anon_sym_macro_rules_BANG] = ACTIONS(1906), + [anon_sym_LPAREN] = ACTIONS(1906), + [anon_sym_LBRACK] = ACTIONS(1906), + [anon_sym_LBRACE] = ACTIONS(1906), + [anon_sym_RBRACE] = ACTIONS(1906), + [anon_sym_STAR] = ACTIONS(1906), + [anon_sym_u8] = ACTIONS(1908), + [anon_sym_i8] = ACTIONS(1908), + [anon_sym_u16] = ACTIONS(1908), + [anon_sym_i16] = ACTIONS(1908), + [anon_sym_u32] = ACTIONS(1908), + [anon_sym_i32] = ACTIONS(1908), + [anon_sym_u64] = ACTIONS(1908), + [anon_sym_i64] = ACTIONS(1908), + [anon_sym_u128] = ACTIONS(1908), + [anon_sym_i128] = ACTIONS(1908), + [anon_sym_isize] = ACTIONS(1908), + [anon_sym_usize] = ACTIONS(1908), + [anon_sym_f32] = ACTIONS(1908), + [anon_sym_f64] = ACTIONS(1908), + [anon_sym_bool] = ACTIONS(1908), + [anon_sym_str] = ACTIONS(1908), + [anon_sym_char] = ACTIONS(1908), + [anon_sym_DASH] = ACTIONS(1906), + [anon_sym_BANG] = ACTIONS(1906), + [anon_sym_AMP] = ACTIONS(1906), + [anon_sym_PIPE] = ACTIONS(1906), + [anon_sym_LT] = ACTIONS(1906), + [anon_sym_DOT_DOT] = ACTIONS(1906), + [anon_sym_COLON_COLON] = ACTIONS(1906), + [anon_sym_POUND] = ACTIONS(1906), + [anon_sym_SQUOTE] = ACTIONS(1908), + [anon_sym_async] = ACTIONS(1908), + [anon_sym_break] = ACTIONS(1908), + [anon_sym_const] = ACTIONS(1908), + [anon_sym_continue] = ACTIONS(1908), + [anon_sym_default] = ACTIONS(1908), + [anon_sym_enum] = ACTIONS(1908), + [anon_sym_fn] = ACTIONS(1908), + [anon_sym_for] = ACTIONS(1908), + [anon_sym_if] = ACTIONS(1908), + [anon_sym_impl] = ACTIONS(1908), + [anon_sym_let] = ACTIONS(1908), + [anon_sym_loop] = ACTIONS(1908), + [anon_sym_match] = ACTIONS(1908), + [anon_sym_mod] = ACTIONS(1908), + [anon_sym_pub] = ACTIONS(1908), + [anon_sym_return] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(1908), + [anon_sym_struct] = ACTIONS(1908), + [anon_sym_trait] = ACTIONS(1908), + [anon_sym_type] = ACTIONS(1908), + [anon_sym_union] = ACTIONS(1908), + [anon_sym_unsafe] = ACTIONS(1908), + [anon_sym_use] = ACTIONS(1908), + [anon_sym_while] = ACTIONS(1908), + [anon_sym_extern] = ACTIONS(1908), + [anon_sym_yield] = ACTIONS(1908), + [anon_sym_move] = ACTIONS(1908), + [anon_sym_try] = ACTIONS(1908), + [sym_integer_literal] = ACTIONS(1906), + [aux_sym_string_literal_token1] = ACTIONS(1906), + [sym_char_literal] = ACTIONS(1906), + [anon_sym_true] = ACTIONS(1908), + [anon_sym_false] = ACTIONS(1908), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1908), + [sym_super] = ACTIONS(1908), + [sym_crate] = ACTIONS(1908), + [sym_metavariable] = ACTIONS(1906), + [sym__raw_string_literal_start] = ACTIONS(1906), + [sym_float_literal] = ACTIONS(1906), }, [541] = { [sym_line_comment] = STATE(541), [sym_block_comment] = STATE(541), - [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_BANG] = ACTIONS(1956), - [anon_sym_AMP] = ACTIONS(1956), - [anon_sym_PIPE] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_DOT_DOT] = ACTIONS(1956), - [anon_sym_COLON_COLON] = ACTIONS(1956), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1956), - [sym_float_literal] = ACTIONS(1956), + [ts_builtin_sym_end] = ACTIONS(1910), + [sym_identifier] = ACTIONS(1912), + [anon_sym_SEMI] = ACTIONS(1910), + [anon_sym_macro_rules_BANG] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1910), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_LBRACE] = ACTIONS(1910), + [anon_sym_RBRACE] = ACTIONS(1910), + [anon_sym_STAR] = ACTIONS(1910), + [anon_sym_u8] = ACTIONS(1912), + [anon_sym_i8] = ACTIONS(1912), + [anon_sym_u16] = ACTIONS(1912), + [anon_sym_i16] = ACTIONS(1912), + [anon_sym_u32] = ACTIONS(1912), + [anon_sym_i32] = ACTIONS(1912), + [anon_sym_u64] = ACTIONS(1912), + [anon_sym_i64] = ACTIONS(1912), + [anon_sym_u128] = ACTIONS(1912), + [anon_sym_i128] = ACTIONS(1912), + [anon_sym_isize] = ACTIONS(1912), + [anon_sym_usize] = ACTIONS(1912), + [anon_sym_f32] = ACTIONS(1912), + [anon_sym_f64] = ACTIONS(1912), + [anon_sym_bool] = ACTIONS(1912), + [anon_sym_str] = ACTIONS(1912), + [anon_sym_char] = ACTIONS(1912), + [anon_sym_DASH] = ACTIONS(1910), + [anon_sym_BANG] = ACTIONS(1910), + [anon_sym_AMP] = ACTIONS(1910), + [anon_sym_PIPE] = ACTIONS(1910), + [anon_sym_LT] = ACTIONS(1910), + [anon_sym_DOT_DOT] = ACTIONS(1910), + [anon_sym_COLON_COLON] = ACTIONS(1910), + [anon_sym_POUND] = ACTIONS(1910), + [anon_sym_SQUOTE] = ACTIONS(1912), + [anon_sym_async] = ACTIONS(1912), + [anon_sym_break] = ACTIONS(1912), + [anon_sym_const] = ACTIONS(1912), + [anon_sym_continue] = ACTIONS(1912), + [anon_sym_default] = ACTIONS(1912), + [anon_sym_enum] = ACTIONS(1912), + [anon_sym_fn] = ACTIONS(1912), + [anon_sym_for] = ACTIONS(1912), + [anon_sym_if] = ACTIONS(1912), + [anon_sym_impl] = ACTIONS(1912), + [anon_sym_let] = ACTIONS(1912), + [anon_sym_loop] = ACTIONS(1912), + [anon_sym_match] = ACTIONS(1912), + [anon_sym_mod] = ACTIONS(1912), + [anon_sym_pub] = ACTIONS(1912), + [anon_sym_return] = ACTIONS(1912), + [anon_sym_static] = ACTIONS(1912), + [anon_sym_struct] = ACTIONS(1912), + [anon_sym_trait] = ACTIONS(1912), + [anon_sym_type] = ACTIONS(1912), + [anon_sym_union] = ACTIONS(1912), + [anon_sym_unsafe] = ACTIONS(1912), + [anon_sym_use] = ACTIONS(1912), + [anon_sym_while] = ACTIONS(1912), + [anon_sym_extern] = ACTIONS(1912), + [anon_sym_yield] = ACTIONS(1912), + [anon_sym_move] = ACTIONS(1912), + [anon_sym_try] = ACTIONS(1912), + [sym_integer_literal] = ACTIONS(1910), + [aux_sym_string_literal_token1] = ACTIONS(1910), + [sym_char_literal] = ACTIONS(1910), + [anon_sym_true] = ACTIONS(1912), + [anon_sym_false] = ACTIONS(1912), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1912), + [sym_super] = ACTIONS(1912), + [sym_crate] = ACTIONS(1912), + [sym_metavariable] = ACTIONS(1910), + [sym__raw_string_literal_start] = ACTIONS(1910), + [sym_float_literal] = ACTIONS(1910), }, [542] = { [sym_line_comment] = STATE(542), [sym_block_comment] = STATE(542), - [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_BANG] = ACTIONS(1960), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_PIPE] = ACTIONS(1960), - [anon_sym_LT] = ACTIONS(1960), - [anon_sym_DOT_DOT] = ACTIONS(1960), - [anon_sym_COLON_COLON] = ACTIONS(1960), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1960), - [sym_float_literal] = ACTIONS(1960), + [ts_builtin_sym_end] = ACTIONS(1914), + [sym_identifier] = ACTIONS(1916), + [anon_sym_SEMI] = ACTIONS(1914), + [anon_sym_macro_rules_BANG] = ACTIONS(1914), + [anon_sym_LPAREN] = ACTIONS(1914), + [anon_sym_LBRACK] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(1914), + [anon_sym_RBRACE] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1914), + [anon_sym_u8] = ACTIONS(1916), + [anon_sym_i8] = ACTIONS(1916), + [anon_sym_u16] = ACTIONS(1916), + [anon_sym_i16] = ACTIONS(1916), + [anon_sym_u32] = ACTIONS(1916), + [anon_sym_i32] = ACTIONS(1916), + [anon_sym_u64] = ACTIONS(1916), + [anon_sym_i64] = ACTIONS(1916), + [anon_sym_u128] = ACTIONS(1916), + [anon_sym_i128] = ACTIONS(1916), + [anon_sym_isize] = ACTIONS(1916), + [anon_sym_usize] = ACTIONS(1916), + [anon_sym_f32] = ACTIONS(1916), + [anon_sym_f64] = ACTIONS(1916), + [anon_sym_bool] = ACTIONS(1916), + [anon_sym_str] = ACTIONS(1916), + [anon_sym_char] = ACTIONS(1916), + [anon_sym_DASH] = ACTIONS(1914), + [anon_sym_BANG] = ACTIONS(1914), + [anon_sym_AMP] = ACTIONS(1914), + [anon_sym_PIPE] = ACTIONS(1914), + [anon_sym_LT] = ACTIONS(1914), + [anon_sym_DOT_DOT] = ACTIONS(1914), + [anon_sym_COLON_COLON] = ACTIONS(1914), + [anon_sym_POUND] = ACTIONS(1914), + [anon_sym_SQUOTE] = ACTIONS(1916), + [anon_sym_async] = ACTIONS(1916), + [anon_sym_break] = ACTIONS(1916), + [anon_sym_const] = ACTIONS(1916), + [anon_sym_continue] = ACTIONS(1916), + [anon_sym_default] = ACTIONS(1916), + [anon_sym_enum] = ACTIONS(1916), + [anon_sym_fn] = ACTIONS(1916), + [anon_sym_for] = ACTIONS(1916), + [anon_sym_if] = ACTIONS(1916), + [anon_sym_impl] = ACTIONS(1916), + [anon_sym_let] = ACTIONS(1916), + [anon_sym_loop] = ACTIONS(1916), + [anon_sym_match] = ACTIONS(1916), + [anon_sym_mod] = ACTIONS(1916), + [anon_sym_pub] = ACTIONS(1916), + [anon_sym_return] = ACTIONS(1916), + [anon_sym_static] = ACTIONS(1916), + [anon_sym_struct] = ACTIONS(1916), + [anon_sym_trait] = ACTIONS(1916), + [anon_sym_type] = ACTIONS(1916), + [anon_sym_union] = ACTIONS(1916), + [anon_sym_unsafe] = ACTIONS(1916), + [anon_sym_use] = ACTIONS(1916), + [anon_sym_while] = ACTIONS(1916), + [anon_sym_extern] = ACTIONS(1916), + [anon_sym_yield] = ACTIONS(1916), + [anon_sym_move] = ACTIONS(1916), + [anon_sym_try] = ACTIONS(1916), + [sym_integer_literal] = ACTIONS(1914), + [aux_sym_string_literal_token1] = ACTIONS(1914), + [sym_char_literal] = ACTIONS(1914), + [anon_sym_true] = ACTIONS(1916), + [anon_sym_false] = ACTIONS(1916), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1916), + [sym_super] = ACTIONS(1916), + [sym_crate] = ACTIONS(1916), + [sym_metavariable] = ACTIONS(1914), + [sym__raw_string_literal_start] = ACTIONS(1914), + [sym_float_literal] = ACTIONS(1914), }, [543] = { [sym_line_comment] = STATE(543), [sym_block_comment] = STATE(543), - [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_BANG] = ACTIONS(1964), - [anon_sym_AMP] = ACTIONS(1964), - [anon_sym_PIPE] = ACTIONS(1964), - [anon_sym_LT] = ACTIONS(1964), - [anon_sym_DOT_DOT] = ACTIONS(1964), - [anon_sym_COLON_COLON] = ACTIONS(1964), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1964), - [sym_float_literal] = ACTIONS(1964), + [ts_builtin_sym_end] = ACTIONS(1918), + [sym_identifier] = ACTIONS(1920), + [anon_sym_SEMI] = ACTIONS(1918), + [anon_sym_macro_rules_BANG] = ACTIONS(1918), + [anon_sym_LPAREN] = ACTIONS(1918), + [anon_sym_LBRACK] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1918), + [anon_sym_STAR] = ACTIONS(1918), + [anon_sym_u8] = ACTIONS(1920), + [anon_sym_i8] = ACTIONS(1920), + [anon_sym_u16] = ACTIONS(1920), + [anon_sym_i16] = ACTIONS(1920), + [anon_sym_u32] = ACTIONS(1920), + [anon_sym_i32] = ACTIONS(1920), + [anon_sym_u64] = ACTIONS(1920), + [anon_sym_i64] = ACTIONS(1920), + [anon_sym_u128] = ACTIONS(1920), + [anon_sym_i128] = ACTIONS(1920), + [anon_sym_isize] = ACTIONS(1920), + [anon_sym_usize] = ACTIONS(1920), + [anon_sym_f32] = ACTIONS(1920), + [anon_sym_f64] = ACTIONS(1920), + [anon_sym_bool] = ACTIONS(1920), + [anon_sym_str] = ACTIONS(1920), + [anon_sym_char] = ACTIONS(1920), + [anon_sym_DASH] = ACTIONS(1918), + [anon_sym_BANG] = ACTIONS(1918), + [anon_sym_AMP] = ACTIONS(1918), + [anon_sym_PIPE] = ACTIONS(1918), + [anon_sym_LT] = ACTIONS(1918), + [anon_sym_DOT_DOT] = ACTIONS(1918), + [anon_sym_COLON_COLON] = ACTIONS(1918), + [anon_sym_POUND] = ACTIONS(1918), + [anon_sym_SQUOTE] = ACTIONS(1920), + [anon_sym_async] = ACTIONS(1920), + [anon_sym_break] = ACTIONS(1920), + [anon_sym_const] = ACTIONS(1920), + [anon_sym_continue] = ACTIONS(1920), + [anon_sym_default] = ACTIONS(1920), + [anon_sym_enum] = ACTIONS(1920), + [anon_sym_fn] = ACTIONS(1920), + [anon_sym_for] = ACTIONS(1920), + [anon_sym_if] = ACTIONS(1920), + [anon_sym_impl] = ACTIONS(1920), + [anon_sym_let] = ACTIONS(1920), + [anon_sym_loop] = ACTIONS(1920), + [anon_sym_match] = ACTIONS(1920), + [anon_sym_mod] = ACTIONS(1920), + [anon_sym_pub] = ACTIONS(1920), + [anon_sym_return] = ACTIONS(1920), + [anon_sym_static] = ACTIONS(1920), + [anon_sym_struct] = ACTIONS(1920), + [anon_sym_trait] = ACTIONS(1920), + [anon_sym_type] = ACTIONS(1920), + [anon_sym_union] = ACTIONS(1920), + [anon_sym_unsafe] = ACTIONS(1920), + [anon_sym_use] = ACTIONS(1920), + [anon_sym_while] = ACTIONS(1920), + [anon_sym_extern] = ACTIONS(1920), + [anon_sym_yield] = ACTIONS(1920), + [anon_sym_move] = ACTIONS(1920), + [anon_sym_try] = ACTIONS(1920), + [sym_integer_literal] = ACTIONS(1918), + [aux_sym_string_literal_token1] = ACTIONS(1918), + [sym_char_literal] = ACTIONS(1918), + [anon_sym_true] = ACTIONS(1920), + [anon_sym_false] = ACTIONS(1920), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1920), + [sym_super] = ACTIONS(1920), + [sym_crate] = ACTIONS(1920), + [sym_metavariable] = ACTIONS(1918), + [sym__raw_string_literal_start] = ACTIONS(1918), + [sym_float_literal] = ACTIONS(1918), }, [544] = { [sym_line_comment] = STATE(544), [sym_block_comment] = STATE(544), - [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_BANG] = ACTIONS(1968), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_PIPE] = ACTIONS(1968), - [anon_sym_LT] = ACTIONS(1968), - [anon_sym_DOT_DOT] = ACTIONS(1968), - [anon_sym_COLON_COLON] = ACTIONS(1968), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1968), - [sym_float_literal] = ACTIONS(1968), + [ts_builtin_sym_end] = ACTIONS(1922), + [sym_identifier] = ACTIONS(1924), + [anon_sym_SEMI] = ACTIONS(1922), + [anon_sym_macro_rules_BANG] = ACTIONS(1922), + [anon_sym_LPAREN] = ACTIONS(1922), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_LBRACE] = ACTIONS(1922), + [anon_sym_RBRACE] = ACTIONS(1922), + [anon_sym_STAR] = ACTIONS(1922), + [anon_sym_u8] = ACTIONS(1924), + [anon_sym_i8] = ACTIONS(1924), + [anon_sym_u16] = ACTIONS(1924), + [anon_sym_i16] = ACTIONS(1924), + [anon_sym_u32] = ACTIONS(1924), + [anon_sym_i32] = ACTIONS(1924), + [anon_sym_u64] = ACTIONS(1924), + [anon_sym_i64] = ACTIONS(1924), + [anon_sym_u128] = ACTIONS(1924), + [anon_sym_i128] = ACTIONS(1924), + [anon_sym_isize] = ACTIONS(1924), + [anon_sym_usize] = ACTIONS(1924), + [anon_sym_f32] = ACTIONS(1924), + [anon_sym_f64] = ACTIONS(1924), + [anon_sym_bool] = ACTIONS(1924), + [anon_sym_str] = ACTIONS(1924), + [anon_sym_char] = ACTIONS(1924), + [anon_sym_DASH] = ACTIONS(1922), + [anon_sym_BANG] = ACTIONS(1922), + [anon_sym_AMP] = ACTIONS(1922), + [anon_sym_PIPE] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1922), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_COLON_COLON] = ACTIONS(1922), + [anon_sym_POUND] = ACTIONS(1922), + [anon_sym_SQUOTE] = ACTIONS(1924), + [anon_sym_async] = ACTIONS(1924), + [anon_sym_break] = ACTIONS(1924), + [anon_sym_const] = ACTIONS(1924), + [anon_sym_continue] = ACTIONS(1924), + [anon_sym_default] = ACTIONS(1924), + [anon_sym_enum] = ACTIONS(1924), + [anon_sym_fn] = ACTIONS(1924), + [anon_sym_for] = ACTIONS(1924), + [anon_sym_if] = ACTIONS(1924), + [anon_sym_impl] = ACTIONS(1924), + [anon_sym_let] = ACTIONS(1924), + [anon_sym_loop] = ACTIONS(1924), + [anon_sym_match] = ACTIONS(1924), + [anon_sym_mod] = ACTIONS(1924), + [anon_sym_pub] = ACTIONS(1924), + [anon_sym_return] = ACTIONS(1924), + [anon_sym_static] = ACTIONS(1924), + [anon_sym_struct] = ACTIONS(1924), + [anon_sym_trait] = ACTIONS(1924), + [anon_sym_type] = ACTIONS(1924), + [anon_sym_union] = ACTIONS(1924), + [anon_sym_unsafe] = ACTIONS(1924), + [anon_sym_use] = ACTIONS(1924), + [anon_sym_while] = ACTIONS(1924), + [anon_sym_extern] = ACTIONS(1924), + [anon_sym_yield] = ACTIONS(1924), + [anon_sym_move] = ACTIONS(1924), + [anon_sym_try] = ACTIONS(1924), + [sym_integer_literal] = ACTIONS(1922), + [aux_sym_string_literal_token1] = ACTIONS(1922), + [sym_char_literal] = ACTIONS(1922), + [anon_sym_true] = ACTIONS(1924), + [anon_sym_false] = ACTIONS(1924), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1924), + [sym_super] = ACTIONS(1924), + [sym_crate] = ACTIONS(1924), + [sym_metavariable] = ACTIONS(1922), + [sym__raw_string_literal_start] = ACTIONS(1922), + [sym_float_literal] = ACTIONS(1922), }, [545] = { [sym_line_comment] = STATE(545), [sym_block_comment] = STATE(545), - [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_BANG] = ACTIONS(1972), - [anon_sym_AMP] = ACTIONS(1972), - [anon_sym_PIPE] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_DOT_DOT] = ACTIONS(1972), - [anon_sym_COLON_COLON] = ACTIONS(1972), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1972), - [sym_float_literal] = ACTIONS(1972), + [ts_builtin_sym_end] = ACTIONS(1926), + [sym_identifier] = ACTIONS(1928), + [anon_sym_SEMI] = ACTIONS(1926), + [anon_sym_macro_rules_BANG] = ACTIONS(1926), + [anon_sym_LPAREN] = ACTIONS(1926), + [anon_sym_LBRACK] = ACTIONS(1926), + [anon_sym_LBRACE] = ACTIONS(1926), + [anon_sym_RBRACE] = ACTIONS(1926), + [anon_sym_STAR] = ACTIONS(1926), + [anon_sym_u8] = ACTIONS(1928), + [anon_sym_i8] = ACTIONS(1928), + [anon_sym_u16] = ACTIONS(1928), + [anon_sym_i16] = ACTIONS(1928), + [anon_sym_u32] = ACTIONS(1928), + [anon_sym_i32] = ACTIONS(1928), + [anon_sym_u64] = ACTIONS(1928), + [anon_sym_i64] = ACTIONS(1928), + [anon_sym_u128] = ACTIONS(1928), + [anon_sym_i128] = ACTIONS(1928), + [anon_sym_isize] = ACTIONS(1928), + [anon_sym_usize] = ACTIONS(1928), + [anon_sym_f32] = ACTIONS(1928), + [anon_sym_f64] = ACTIONS(1928), + [anon_sym_bool] = ACTIONS(1928), + [anon_sym_str] = ACTIONS(1928), + [anon_sym_char] = ACTIONS(1928), + [anon_sym_DASH] = ACTIONS(1926), + [anon_sym_BANG] = ACTIONS(1926), + [anon_sym_AMP] = ACTIONS(1926), + [anon_sym_PIPE] = ACTIONS(1926), + [anon_sym_LT] = ACTIONS(1926), + [anon_sym_DOT_DOT] = ACTIONS(1926), + [anon_sym_COLON_COLON] = ACTIONS(1926), + [anon_sym_POUND] = ACTIONS(1926), + [anon_sym_SQUOTE] = ACTIONS(1928), + [anon_sym_async] = ACTIONS(1928), + [anon_sym_break] = ACTIONS(1928), + [anon_sym_const] = ACTIONS(1928), + [anon_sym_continue] = ACTIONS(1928), + [anon_sym_default] = ACTIONS(1928), + [anon_sym_enum] = ACTIONS(1928), + [anon_sym_fn] = ACTIONS(1928), + [anon_sym_for] = ACTIONS(1928), + [anon_sym_if] = ACTIONS(1928), + [anon_sym_impl] = ACTIONS(1928), + [anon_sym_let] = ACTIONS(1928), + [anon_sym_loop] = ACTIONS(1928), + [anon_sym_match] = ACTIONS(1928), + [anon_sym_mod] = ACTIONS(1928), + [anon_sym_pub] = ACTIONS(1928), + [anon_sym_return] = ACTIONS(1928), + [anon_sym_static] = ACTIONS(1928), + [anon_sym_struct] = ACTIONS(1928), + [anon_sym_trait] = ACTIONS(1928), + [anon_sym_type] = ACTIONS(1928), + [anon_sym_union] = ACTIONS(1928), + [anon_sym_unsafe] = ACTIONS(1928), + [anon_sym_use] = ACTIONS(1928), + [anon_sym_while] = ACTIONS(1928), + [anon_sym_extern] = ACTIONS(1928), + [anon_sym_yield] = ACTIONS(1928), + [anon_sym_move] = ACTIONS(1928), + [anon_sym_try] = ACTIONS(1928), + [sym_integer_literal] = ACTIONS(1926), + [aux_sym_string_literal_token1] = ACTIONS(1926), + [sym_char_literal] = ACTIONS(1926), + [anon_sym_true] = ACTIONS(1928), + [anon_sym_false] = ACTIONS(1928), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1928), + [sym_super] = ACTIONS(1928), + [sym_crate] = ACTIONS(1928), + [sym_metavariable] = ACTIONS(1926), + [sym__raw_string_literal_start] = ACTIONS(1926), + [sym_float_literal] = ACTIONS(1926), }, [546] = { [sym_line_comment] = STATE(546), [sym_block_comment] = STATE(546), - [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_BANG] = ACTIONS(1976), - [anon_sym_AMP] = ACTIONS(1976), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_LT] = ACTIONS(1976), - [anon_sym_DOT_DOT] = ACTIONS(1976), - [anon_sym_COLON_COLON] = ACTIONS(1976), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1976), - [sym_float_literal] = ACTIONS(1976), + [ts_builtin_sym_end] = ACTIONS(1930), + [sym_identifier] = ACTIONS(1932), + [anon_sym_SEMI] = ACTIONS(1930), + [anon_sym_macro_rules_BANG] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1930), + [anon_sym_RBRACE] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_u8] = ACTIONS(1932), + [anon_sym_i8] = ACTIONS(1932), + [anon_sym_u16] = ACTIONS(1932), + [anon_sym_i16] = ACTIONS(1932), + [anon_sym_u32] = ACTIONS(1932), + [anon_sym_i32] = ACTIONS(1932), + [anon_sym_u64] = ACTIONS(1932), + [anon_sym_i64] = ACTIONS(1932), + [anon_sym_u128] = ACTIONS(1932), + [anon_sym_i128] = ACTIONS(1932), + [anon_sym_isize] = ACTIONS(1932), + [anon_sym_usize] = ACTIONS(1932), + [anon_sym_f32] = ACTIONS(1932), + [anon_sym_f64] = ACTIONS(1932), + [anon_sym_bool] = ACTIONS(1932), + [anon_sym_str] = ACTIONS(1932), + [anon_sym_char] = ACTIONS(1932), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_DOT_DOT] = ACTIONS(1930), + [anon_sym_COLON_COLON] = ACTIONS(1930), + [anon_sym_POUND] = ACTIONS(1930), + [anon_sym_SQUOTE] = ACTIONS(1932), + [anon_sym_async] = ACTIONS(1932), + [anon_sym_break] = ACTIONS(1932), + [anon_sym_const] = ACTIONS(1932), + [anon_sym_continue] = ACTIONS(1932), + [anon_sym_default] = ACTIONS(1932), + [anon_sym_enum] = ACTIONS(1932), + [anon_sym_fn] = ACTIONS(1932), + [anon_sym_for] = ACTIONS(1932), + [anon_sym_if] = ACTIONS(1932), + [anon_sym_impl] = ACTIONS(1932), + [anon_sym_let] = ACTIONS(1932), + [anon_sym_loop] = ACTIONS(1932), + [anon_sym_match] = ACTIONS(1932), + [anon_sym_mod] = ACTIONS(1932), + [anon_sym_pub] = ACTIONS(1932), + [anon_sym_return] = ACTIONS(1932), + [anon_sym_static] = ACTIONS(1932), + [anon_sym_struct] = ACTIONS(1932), + [anon_sym_trait] = ACTIONS(1932), + [anon_sym_type] = ACTIONS(1932), + [anon_sym_union] = ACTIONS(1932), + [anon_sym_unsafe] = ACTIONS(1932), + [anon_sym_use] = ACTIONS(1932), + [anon_sym_while] = ACTIONS(1932), + [anon_sym_extern] = ACTIONS(1932), + [anon_sym_yield] = ACTIONS(1932), + [anon_sym_move] = ACTIONS(1932), + [anon_sym_try] = ACTIONS(1932), + [sym_integer_literal] = ACTIONS(1930), + [aux_sym_string_literal_token1] = ACTIONS(1930), + [sym_char_literal] = ACTIONS(1930), + [anon_sym_true] = ACTIONS(1932), + [anon_sym_false] = ACTIONS(1932), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1932), + [sym_super] = ACTIONS(1932), + [sym_crate] = ACTIONS(1932), + [sym_metavariable] = ACTIONS(1930), + [sym__raw_string_literal_start] = ACTIONS(1930), + [sym_float_literal] = ACTIONS(1930), }, [547] = { [sym_line_comment] = STATE(547), [sym_block_comment] = STATE(547), - [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_BANG] = ACTIONS(1980), - [anon_sym_AMP] = ACTIONS(1980), - [anon_sym_PIPE] = ACTIONS(1980), - [anon_sym_LT] = ACTIONS(1980), - [anon_sym_DOT_DOT] = ACTIONS(1980), - [anon_sym_COLON_COLON] = ACTIONS(1980), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1980), - [sym_float_literal] = ACTIONS(1980), + [ts_builtin_sym_end] = ACTIONS(1934), + [sym_identifier] = ACTIONS(1936), + [anon_sym_SEMI] = ACTIONS(1934), + [anon_sym_macro_rules_BANG] = ACTIONS(1934), + [anon_sym_LPAREN] = ACTIONS(1934), + [anon_sym_LBRACK] = ACTIONS(1934), + [anon_sym_LBRACE] = ACTIONS(1934), + [anon_sym_RBRACE] = ACTIONS(1934), + [anon_sym_STAR] = ACTIONS(1934), + [anon_sym_u8] = ACTIONS(1936), + [anon_sym_i8] = ACTIONS(1936), + [anon_sym_u16] = ACTIONS(1936), + [anon_sym_i16] = ACTIONS(1936), + [anon_sym_u32] = ACTIONS(1936), + [anon_sym_i32] = ACTIONS(1936), + [anon_sym_u64] = ACTIONS(1936), + [anon_sym_i64] = ACTIONS(1936), + [anon_sym_u128] = ACTIONS(1936), + [anon_sym_i128] = ACTIONS(1936), + [anon_sym_isize] = ACTIONS(1936), + [anon_sym_usize] = ACTIONS(1936), + [anon_sym_f32] = ACTIONS(1936), + [anon_sym_f64] = ACTIONS(1936), + [anon_sym_bool] = ACTIONS(1936), + [anon_sym_str] = ACTIONS(1936), + [anon_sym_char] = ACTIONS(1936), + [anon_sym_DASH] = ACTIONS(1934), + [anon_sym_BANG] = ACTIONS(1934), + [anon_sym_AMP] = ACTIONS(1934), + [anon_sym_PIPE] = ACTIONS(1934), + [anon_sym_LT] = ACTIONS(1934), + [anon_sym_DOT_DOT] = ACTIONS(1934), + [anon_sym_COLON_COLON] = ACTIONS(1934), + [anon_sym_POUND] = ACTIONS(1934), + [anon_sym_SQUOTE] = ACTIONS(1936), + [anon_sym_async] = ACTIONS(1936), + [anon_sym_break] = ACTIONS(1936), + [anon_sym_const] = ACTIONS(1936), + [anon_sym_continue] = ACTIONS(1936), + [anon_sym_default] = ACTIONS(1936), + [anon_sym_enum] = ACTIONS(1936), + [anon_sym_fn] = ACTIONS(1936), + [anon_sym_for] = ACTIONS(1936), + [anon_sym_if] = ACTIONS(1936), + [anon_sym_impl] = ACTIONS(1936), + [anon_sym_let] = ACTIONS(1936), + [anon_sym_loop] = ACTIONS(1936), + [anon_sym_match] = ACTIONS(1936), + [anon_sym_mod] = ACTIONS(1936), + [anon_sym_pub] = ACTIONS(1936), + [anon_sym_return] = ACTIONS(1936), + [anon_sym_static] = ACTIONS(1936), + [anon_sym_struct] = ACTIONS(1936), + [anon_sym_trait] = ACTIONS(1936), + [anon_sym_type] = ACTIONS(1936), + [anon_sym_union] = ACTIONS(1936), + [anon_sym_unsafe] = ACTIONS(1936), + [anon_sym_use] = ACTIONS(1936), + [anon_sym_while] = ACTIONS(1936), + [anon_sym_extern] = ACTIONS(1936), + [anon_sym_yield] = ACTIONS(1936), + [anon_sym_move] = ACTIONS(1936), + [anon_sym_try] = ACTIONS(1936), + [sym_integer_literal] = ACTIONS(1934), + [aux_sym_string_literal_token1] = ACTIONS(1934), + [sym_char_literal] = ACTIONS(1934), + [anon_sym_true] = ACTIONS(1936), + [anon_sym_false] = ACTIONS(1936), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1936), + [sym_super] = ACTIONS(1936), + [sym_crate] = ACTIONS(1936), + [sym_metavariable] = ACTIONS(1934), + [sym__raw_string_literal_start] = ACTIONS(1934), + [sym_float_literal] = ACTIONS(1934), }, [548] = { [sym_line_comment] = STATE(548), [sym_block_comment] = STATE(548), - [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_BANG] = ACTIONS(1984), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_DOT_DOT] = ACTIONS(1984), - [anon_sym_COLON_COLON] = ACTIONS(1984), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1984), - [sym_float_literal] = ACTIONS(1984), + [ts_builtin_sym_end] = ACTIONS(1938), + [sym_identifier] = ACTIONS(1940), + [anon_sym_SEMI] = ACTIONS(1938), + [anon_sym_macro_rules_BANG] = ACTIONS(1938), + [anon_sym_LPAREN] = ACTIONS(1938), + [anon_sym_LBRACK] = ACTIONS(1938), + [anon_sym_LBRACE] = ACTIONS(1938), + [anon_sym_RBRACE] = ACTIONS(1938), + [anon_sym_STAR] = ACTIONS(1938), + [anon_sym_u8] = ACTIONS(1940), + [anon_sym_i8] = ACTIONS(1940), + [anon_sym_u16] = ACTIONS(1940), + [anon_sym_i16] = ACTIONS(1940), + [anon_sym_u32] = ACTIONS(1940), + [anon_sym_i32] = ACTIONS(1940), + [anon_sym_u64] = ACTIONS(1940), + [anon_sym_i64] = ACTIONS(1940), + [anon_sym_u128] = ACTIONS(1940), + [anon_sym_i128] = ACTIONS(1940), + [anon_sym_isize] = ACTIONS(1940), + [anon_sym_usize] = ACTIONS(1940), + [anon_sym_f32] = ACTIONS(1940), + [anon_sym_f64] = ACTIONS(1940), + [anon_sym_bool] = ACTIONS(1940), + [anon_sym_str] = ACTIONS(1940), + [anon_sym_char] = ACTIONS(1940), + [anon_sym_DASH] = ACTIONS(1938), + [anon_sym_BANG] = ACTIONS(1938), + [anon_sym_AMP] = ACTIONS(1938), + [anon_sym_PIPE] = ACTIONS(1938), + [anon_sym_LT] = ACTIONS(1938), + [anon_sym_DOT_DOT] = ACTIONS(1938), + [anon_sym_COLON_COLON] = ACTIONS(1938), + [anon_sym_POUND] = ACTIONS(1938), + [anon_sym_SQUOTE] = ACTIONS(1940), + [anon_sym_async] = ACTIONS(1940), + [anon_sym_break] = ACTIONS(1940), + [anon_sym_const] = ACTIONS(1940), + [anon_sym_continue] = ACTIONS(1940), + [anon_sym_default] = ACTIONS(1940), + [anon_sym_enum] = ACTIONS(1940), + [anon_sym_fn] = ACTIONS(1940), + [anon_sym_for] = ACTIONS(1940), + [anon_sym_if] = ACTIONS(1940), + [anon_sym_impl] = ACTIONS(1940), + [anon_sym_let] = ACTIONS(1940), + [anon_sym_loop] = ACTIONS(1940), + [anon_sym_match] = ACTIONS(1940), + [anon_sym_mod] = ACTIONS(1940), + [anon_sym_pub] = ACTIONS(1940), + [anon_sym_return] = ACTIONS(1940), + [anon_sym_static] = ACTIONS(1940), + [anon_sym_struct] = ACTIONS(1940), + [anon_sym_trait] = ACTIONS(1940), + [anon_sym_type] = ACTIONS(1940), + [anon_sym_union] = ACTIONS(1940), + [anon_sym_unsafe] = ACTIONS(1940), + [anon_sym_use] = ACTIONS(1940), + [anon_sym_while] = ACTIONS(1940), + [anon_sym_extern] = ACTIONS(1940), + [anon_sym_yield] = ACTIONS(1940), + [anon_sym_move] = ACTIONS(1940), + [anon_sym_try] = ACTIONS(1940), + [sym_integer_literal] = ACTIONS(1938), + [aux_sym_string_literal_token1] = ACTIONS(1938), + [sym_char_literal] = ACTIONS(1938), + [anon_sym_true] = ACTIONS(1940), + [anon_sym_false] = ACTIONS(1940), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1940), + [sym_super] = ACTIONS(1940), + [sym_crate] = ACTIONS(1940), + [sym_metavariable] = ACTIONS(1938), + [sym__raw_string_literal_start] = ACTIONS(1938), + [sym_float_literal] = ACTIONS(1938), }, [549] = { [sym_line_comment] = STATE(549), [sym_block_comment] = STATE(549), - [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_BANG] = ACTIONS(1988), - [anon_sym_AMP] = ACTIONS(1988), - [anon_sym_PIPE] = ACTIONS(1988), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_DOT_DOT] = ACTIONS(1988), - [anon_sym_COLON_COLON] = ACTIONS(1988), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1988), - [sym_float_literal] = ACTIONS(1988), + [ts_builtin_sym_end] = ACTIONS(1942), + [sym_identifier] = ACTIONS(1944), + [anon_sym_SEMI] = ACTIONS(1942), + [anon_sym_macro_rules_BANG] = ACTIONS(1942), + [anon_sym_LPAREN] = ACTIONS(1942), + [anon_sym_LBRACK] = ACTIONS(1942), + [anon_sym_LBRACE] = ACTIONS(1942), + [anon_sym_RBRACE] = ACTIONS(1942), + [anon_sym_STAR] = ACTIONS(1942), + [anon_sym_u8] = ACTIONS(1944), + [anon_sym_i8] = ACTIONS(1944), + [anon_sym_u16] = ACTIONS(1944), + [anon_sym_i16] = ACTIONS(1944), + [anon_sym_u32] = ACTIONS(1944), + [anon_sym_i32] = ACTIONS(1944), + [anon_sym_u64] = ACTIONS(1944), + [anon_sym_i64] = ACTIONS(1944), + [anon_sym_u128] = ACTIONS(1944), + [anon_sym_i128] = ACTIONS(1944), + [anon_sym_isize] = ACTIONS(1944), + [anon_sym_usize] = ACTIONS(1944), + [anon_sym_f32] = ACTIONS(1944), + [anon_sym_f64] = ACTIONS(1944), + [anon_sym_bool] = ACTIONS(1944), + [anon_sym_str] = ACTIONS(1944), + [anon_sym_char] = ACTIONS(1944), + [anon_sym_DASH] = ACTIONS(1942), + [anon_sym_BANG] = ACTIONS(1942), + [anon_sym_AMP] = ACTIONS(1942), + [anon_sym_PIPE] = ACTIONS(1942), + [anon_sym_LT] = ACTIONS(1942), + [anon_sym_DOT_DOT] = ACTIONS(1942), + [anon_sym_COLON_COLON] = ACTIONS(1942), + [anon_sym_POUND] = ACTIONS(1942), + [anon_sym_SQUOTE] = ACTIONS(1944), + [anon_sym_async] = ACTIONS(1944), + [anon_sym_break] = ACTIONS(1944), + [anon_sym_const] = ACTIONS(1944), + [anon_sym_continue] = ACTIONS(1944), + [anon_sym_default] = ACTIONS(1944), + [anon_sym_enum] = ACTIONS(1944), + [anon_sym_fn] = ACTIONS(1944), + [anon_sym_for] = ACTIONS(1944), + [anon_sym_if] = ACTIONS(1944), + [anon_sym_impl] = ACTIONS(1944), + [anon_sym_let] = ACTIONS(1944), + [anon_sym_loop] = ACTIONS(1944), + [anon_sym_match] = ACTIONS(1944), + [anon_sym_mod] = ACTIONS(1944), + [anon_sym_pub] = ACTIONS(1944), + [anon_sym_return] = ACTIONS(1944), + [anon_sym_static] = ACTIONS(1944), + [anon_sym_struct] = ACTIONS(1944), + [anon_sym_trait] = ACTIONS(1944), + [anon_sym_type] = ACTIONS(1944), + [anon_sym_union] = ACTIONS(1944), + [anon_sym_unsafe] = ACTIONS(1944), + [anon_sym_use] = ACTIONS(1944), + [anon_sym_while] = ACTIONS(1944), + [anon_sym_extern] = ACTIONS(1944), + [anon_sym_yield] = ACTIONS(1944), + [anon_sym_move] = ACTIONS(1944), + [anon_sym_try] = ACTIONS(1944), + [sym_integer_literal] = ACTIONS(1942), + [aux_sym_string_literal_token1] = ACTIONS(1942), + [sym_char_literal] = ACTIONS(1942), + [anon_sym_true] = ACTIONS(1944), + [anon_sym_false] = ACTIONS(1944), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1944), + [sym_super] = ACTIONS(1944), + [sym_crate] = ACTIONS(1944), + [sym_metavariable] = ACTIONS(1942), + [sym__raw_string_literal_start] = ACTIONS(1942), + [sym_float_literal] = ACTIONS(1942), }, [550] = { [sym_line_comment] = STATE(550), [sym_block_comment] = STATE(550), - [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_BANG] = ACTIONS(1992), - [anon_sym_AMP] = ACTIONS(1992), - [anon_sym_PIPE] = ACTIONS(1992), - [anon_sym_LT] = ACTIONS(1992), - [anon_sym_DOT_DOT] = ACTIONS(1992), - [anon_sym_COLON_COLON] = ACTIONS(1992), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1992), - [sym_float_literal] = ACTIONS(1992), + [ts_builtin_sym_end] = ACTIONS(1946), + [sym_identifier] = ACTIONS(1948), + [anon_sym_SEMI] = ACTIONS(1946), + [anon_sym_macro_rules_BANG] = ACTIONS(1946), + [anon_sym_LPAREN] = ACTIONS(1946), + [anon_sym_LBRACK] = ACTIONS(1946), + [anon_sym_LBRACE] = ACTIONS(1946), + [anon_sym_RBRACE] = ACTIONS(1946), + [anon_sym_STAR] = ACTIONS(1946), + [anon_sym_u8] = ACTIONS(1948), + [anon_sym_i8] = ACTIONS(1948), + [anon_sym_u16] = ACTIONS(1948), + [anon_sym_i16] = ACTIONS(1948), + [anon_sym_u32] = ACTIONS(1948), + [anon_sym_i32] = ACTIONS(1948), + [anon_sym_u64] = ACTIONS(1948), + [anon_sym_i64] = ACTIONS(1948), + [anon_sym_u128] = ACTIONS(1948), + [anon_sym_i128] = ACTIONS(1948), + [anon_sym_isize] = ACTIONS(1948), + [anon_sym_usize] = ACTIONS(1948), + [anon_sym_f32] = ACTIONS(1948), + [anon_sym_f64] = ACTIONS(1948), + [anon_sym_bool] = ACTIONS(1948), + [anon_sym_str] = ACTIONS(1948), + [anon_sym_char] = ACTIONS(1948), + [anon_sym_DASH] = ACTIONS(1946), + [anon_sym_BANG] = ACTIONS(1946), + [anon_sym_AMP] = ACTIONS(1946), + [anon_sym_PIPE] = ACTIONS(1946), + [anon_sym_LT] = ACTIONS(1946), + [anon_sym_DOT_DOT] = ACTIONS(1946), + [anon_sym_COLON_COLON] = ACTIONS(1946), + [anon_sym_POUND] = ACTIONS(1946), + [anon_sym_SQUOTE] = ACTIONS(1948), + [anon_sym_async] = ACTIONS(1948), + [anon_sym_break] = ACTIONS(1948), + [anon_sym_const] = ACTIONS(1948), + [anon_sym_continue] = ACTIONS(1948), + [anon_sym_default] = ACTIONS(1948), + [anon_sym_enum] = ACTIONS(1948), + [anon_sym_fn] = ACTIONS(1948), + [anon_sym_for] = ACTIONS(1948), + [anon_sym_if] = ACTIONS(1948), + [anon_sym_impl] = ACTIONS(1948), + [anon_sym_let] = ACTIONS(1948), + [anon_sym_loop] = ACTIONS(1948), + [anon_sym_match] = ACTIONS(1948), + [anon_sym_mod] = ACTIONS(1948), + [anon_sym_pub] = ACTIONS(1948), + [anon_sym_return] = ACTIONS(1948), + [anon_sym_static] = ACTIONS(1948), + [anon_sym_struct] = ACTIONS(1948), + [anon_sym_trait] = ACTIONS(1948), + [anon_sym_type] = ACTIONS(1948), + [anon_sym_union] = ACTIONS(1948), + [anon_sym_unsafe] = ACTIONS(1948), + [anon_sym_use] = ACTIONS(1948), + [anon_sym_while] = ACTIONS(1948), + [anon_sym_extern] = ACTIONS(1948), + [anon_sym_yield] = ACTIONS(1948), + [anon_sym_move] = ACTIONS(1948), + [anon_sym_try] = ACTIONS(1948), + [sym_integer_literal] = ACTIONS(1946), + [aux_sym_string_literal_token1] = ACTIONS(1946), + [sym_char_literal] = ACTIONS(1946), + [anon_sym_true] = ACTIONS(1948), + [anon_sym_false] = ACTIONS(1948), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1948), + [sym_super] = ACTIONS(1948), + [sym_crate] = ACTIONS(1948), + [sym_metavariable] = ACTIONS(1946), + [sym__raw_string_literal_start] = ACTIONS(1946), + [sym_float_literal] = ACTIONS(1946), }, [551] = { [sym_line_comment] = STATE(551), [sym_block_comment] = STATE(551), - [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_BANG] = ACTIONS(1996), - [anon_sym_AMP] = ACTIONS(1996), - [anon_sym_PIPE] = ACTIONS(1996), - [anon_sym_LT] = ACTIONS(1996), - [anon_sym_DOT_DOT] = ACTIONS(1996), - [anon_sym_COLON_COLON] = ACTIONS(1996), - [anon_sym_POUND] = 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_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_start] = ACTIONS(1996), - [sym_float_literal] = ACTIONS(1996), + [ts_builtin_sym_end] = ACTIONS(1950), + [sym_identifier] = ACTIONS(1952), + [anon_sym_SEMI] = ACTIONS(1950), + [anon_sym_macro_rules_BANG] = ACTIONS(1950), + [anon_sym_LPAREN] = ACTIONS(1950), + [anon_sym_LBRACK] = ACTIONS(1950), + [anon_sym_LBRACE] = ACTIONS(1950), + [anon_sym_RBRACE] = ACTIONS(1950), + [anon_sym_STAR] = ACTIONS(1950), + [anon_sym_u8] = ACTIONS(1952), + [anon_sym_i8] = ACTIONS(1952), + [anon_sym_u16] = ACTIONS(1952), + [anon_sym_i16] = ACTIONS(1952), + [anon_sym_u32] = ACTIONS(1952), + [anon_sym_i32] = ACTIONS(1952), + [anon_sym_u64] = ACTIONS(1952), + [anon_sym_i64] = ACTIONS(1952), + [anon_sym_u128] = ACTIONS(1952), + [anon_sym_i128] = ACTIONS(1952), + [anon_sym_isize] = ACTIONS(1952), + [anon_sym_usize] = ACTIONS(1952), + [anon_sym_f32] = ACTIONS(1952), + [anon_sym_f64] = ACTIONS(1952), + [anon_sym_bool] = ACTIONS(1952), + [anon_sym_str] = ACTIONS(1952), + [anon_sym_char] = ACTIONS(1952), + [anon_sym_DASH] = ACTIONS(1950), + [anon_sym_BANG] = ACTIONS(1950), + [anon_sym_AMP] = ACTIONS(1950), + [anon_sym_PIPE] = ACTIONS(1950), + [anon_sym_LT] = ACTIONS(1950), + [anon_sym_DOT_DOT] = ACTIONS(1950), + [anon_sym_COLON_COLON] = ACTIONS(1950), + [anon_sym_POUND] = ACTIONS(1950), + [anon_sym_SQUOTE] = ACTIONS(1952), + [anon_sym_async] = ACTIONS(1952), + [anon_sym_break] = ACTIONS(1952), + [anon_sym_const] = ACTIONS(1952), + [anon_sym_continue] = ACTIONS(1952), + [anon_sym_default] = ACTIONS(1952), + [anon_sym_enum] = ACTIONS(1952), + [anon_sym_fn] = ACTIONS(1952), + [anon_sym_for] = ACTIONS(1952), + [anon_sym_if] = ACTIONS(1952), + [anon_sym_impl] = ACTIONS(1952), + [anon_sym_let] = ACTIONS(1952), + [anon_sym_loop] = ACTIONS(1952), + [anon_sym_match] = ACTIONS(1952), + [anon_sym_mod] = ACTIONS(1952), + [anon_sym_pub] = ACTIONS(1952), + [anon_sym_return] = ACTIONS(1952), + [anon_sym_static] = ACTIONS(1952), + [anon_sym_struct] = ACTIONS(1952), + [anon_sym_trait] = ACTIONS(1952), + [anon_sym_type] = ACTIONS(1952), + [anon_sym_union] = ACTIONS(1952), + [anon_sym_unsafe] = ACTIONS(1952), + [anon_sym_use] = ACTIONS(1952), + [anon_sym_while] = ACTIONS(1952), + [anon_sym_extern] = ACTIONS(1952), + [anon_sym_yield] = ACTIONS(1952), + [anon_sym_move] = ACTIONS(1952), + [anon_sym_try] = ACTIONS(1952), + [sym_integer_literal] = ACTIONS(1950), + [aux_sym_string_literal_token1] = ACTIONS(1950), + [sym_char_literal] = ACTIONS(1950), + [anon_sym_true] = ACTIONS(1952), + [anon_sym_false] = ACTIONS(1952), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1952), + [sym_super] = ACTIONS(1952), + [sym_crate] = ACTIONS(1952), + [sym_metavariable] = ACTIONS(1950), + [sym__raw_string_literal_start] = ACTIONS(1950), + [sym_float_literal] = ACTIONS(1950), }, [552] = { [sym_line_comment] = STATE(552), [sym_block_comment] = STATE(552), - [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_BANG] = ACTIONS(2000), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_PIPE] = ACTIONS(2000), - [anon_sym_LT] = ACTIONS(2000), - [anon_sym_DOT_DOT] = ACTIONS(2000), - [anon_sym_COLON_COLON] = ACTIONS(2000), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2000), - [sym_float_literal] = ACTIONS(2000), + [ts_builtin_sym_end] = ACTIONS(1954), + [sym_identifier] = ACTIONS(1956), + [anon_sym_SEMI] = ACTIONS(1954), + [anon_sym_macro_rules_BANG] = ACTIONS(1954), + [anon_sym_LPAREN] = ACTIONS(1954), + [anon_sym_LBRACK] = ACTIONS(1954), + [anon_sym_LBRACE] = ACTIONS(1954), + [anon_sym_RBRACE] = ACTIONS(1954), + [anon_sym_STAR] = ACTIONS(1954), + [anon_sym_u8] = ACTIONS(1956), + [anon_sym_i8] = ACTIONS(1956), + [anon_sym_u16] = ACTIONS(1956), + [anon_sym_i16] = ACTIONS(1956), + [anon_sym_u32] = ACTIONS(1956), + [anon_sym_i32] = ACTIONS(1956), + [anon_sym_u64] = ACTIONS(1956), + [anon_sym_i64] = ACTIONS(1956), + [anon_sym_u128] = ACTIONS(1956), + [anon_sym_i128] = ACTIONS(1956), + [anon_sym_isize] = ACTIONS(1956), + [anon_sym_usize] = ACTIONS(1956), + [anon_sym_f32] = ACTIONS(1956), + [anon_sym_f64] = ACTIONS(1956), + [anon_sym_bool] = ACTIONS(1956), + [anon_sym_str] = ACTIONS(1956), + [anon_sym_char] = ACTIONS(1956), + [anon_sym_DASH] = ACTIONS(1954), + [anon_sym_BANG] = ACTIONS(1954), + [anon_sym_AMP] = ACTIONS(1954), + [anon_sym_PIPE] = ACTIONS(1954), + [anon_sym_LT] = ACTIONS(1954), + [anon_sym_DOT_DOT] = ACTIONS(1954), + [anon_sym_COLON_COLON] = ACTIONS(1954), + [anon_sym_POUND] = ACTIONS(1954), + [anon_sym_SQUOTE] = ACTIONS(1956), + [anon_sym_async] = ACTIONS(1956), + [anon_sym_break] = ACTIONS(1956), + [anon_sym_const] = ACTIONS(1956), + [anon_sym_continue] = ACTIONS(1956), + [anon_sym_default] = ACTIONS(1956), + [anon_sym_enum] = ACTIONS(1956), + [anon_sym_fn] = ACTIONS(1956), + [anon_sym_for] = ACTIONS(1956), + [anon_sym_if] = ACTIONS(1956), + [anon_sym_impl] = ACTIONS(1956), + [anon_sym_let] = ACTIONS(1956), + [anon_sym_loop] = ACTIONS(1956), + [anon_sym_match] = ACTIONS(1956), + [anon_sym_mod] = ACTIONS(1956), + [anon_sym_pub] = ACTIONS(1956), + [anon_sym_return] = ACTIONS(1956), + [anon_sym_static] = ACTIONS(1956), + [anon_sym_struct] = ACTIONS(1956), + [anon_sym_trait] = ACTIONS(1956), + [anon_sym_type] = ACTIONS(1956), + [anon_sym_union] = ACTIONS(1956), + [anon_sym_unsafe] = ACTIONS(1956), + [anon_sym_use] = ACTIONS(1956), + [anon_sym_while] = ACTIONS(1956), + [anon_sym_extern] = ACTIONS(1956), + [anon_sym_yield] = ACTIONS(1956), + [anon_sym_move] = ACTIONS(1956), + [anon_sym_try] = ACTIONS(1956), + [sym_integer_literal] = ACTIONS(1954), + [aux_sym_string_literal_token1] = ACTIONS(1954), + [sym_char_literal] = ACTIONS(1954), + [anon_sym_true] = ACTIONS(1956), + [anon_sym_false] = ACTIONS(1956), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1956), + [sym_super] = ACTIONS(1956), + [sym_crate] = ACTIONS(1956), + [sym_metavariable] = ACTIONS(1954), + [sym__raw_string_literal_start] = ACTIONS(1954), + [sym_float_literal] = ACTIONS(1954), }, [553] = { [sym_line_comment] = STATE(553), [sym_block_comment] = STATE(553), - [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_BANG] = ACTIONS(2004), - [anon_sym_AMP] = ACTIONS(2004), - [anon_sym_PIPE] = ACTIONS(2004), - [anon_sym_LT] = ACTIONS(2004), - [anon_sym_DOT_DOT] = ACTIONS(2004), - [anon_sym_COLON_COLON] = ACTIONS(2004), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2004), - [sym_float_literal] = ACTIONS(2004), + [ts_builtin_sym_end] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1960), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_macro_rules_BANG] = ACTIONS(1958), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_STAR] = ACTIONS(1958), + [anon_sym_u8] = ACTIONS(1960), + [anon_sym_i8] = ACTIONS(1960), + [anon_sym_u16] = ACTIONS(1960), + [anon_sym_i16] = ACTIONS(1960), + [anon_sym_u32] = ACTIONS(1960), + [anon_sym_i32] = ACTIONS(1960), + [anon_sym_u64] = ACTIONS(1960), + [anon_sym_i64] = ACTIONS(1960), + [anon_sym_u128] = ACTIONS(1960), + [anon_sym_i128] = ACTIONS(1960), + [anon_sym_isize] = ACTIONS(1960), + [anon_sym_usize] = ACTIONS(1960), + [anon_sym_f32] = ACTIONS(1960), + [anon_sym_f64] = ACTIONS(1960), + [anon_sym_bool] = ACTIONS(1960), + [anon_sym_str] = ACTIONS(1960), + [anon_sym_char] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1958), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_AMP] = ACTIONS(1958), + [anon_sym_PIPE] = ACTIONS(1958), + [anon_sym_LT] = ACTIONS(1958), + [anon_sym_DOT_DOT] = ACTIONS(1958), + [anon_sym_COLON_COLON] = ACTIONS(1958), + [anon_sym_POUND] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1960), + [anon_sym_async] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(1960), + [anon_sym_fn] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_impl] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_loop] = ACTIONS(1960), + [anon_sym_match] = ACTIONS(1960), + [anon_sym_mod] = ACTIONS(1960), + [anon_sym_pub] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_struct] = ACTIONS(1960), + [anon_sym_trait] = ACTIONS(1960), + [anon_sym_type] = ACTIONS(1960), + [anon_sym_union] = ACTIONS(1960), + [anon_sym_unsafe] = ACTIONS(1960), + [anon_sym_use] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_extern] = ACTIONS(1960), + [anon_sym_yield] = ACTIONS(1960), + [anon_sym_move] = ACTIONS(1960), + [anon_sym_try] = ACTIONS(1960), + [sym_integer_literal] = ACTIONS(1958), + [aux_sym_string_literal_token1] = ACTIONS(1958), + [sym_char_literal] = ACTIONS(1958), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1960), + [sym_super] = ACTIONS(1960), + [sym_crate] = ACTIONS(1960), + [sym_metavariable] = ACTIONS(1958), + [sym__raw_string_literal_start] = ACTIONS(1958), + [sym_float_literal] = ACTIONS(1958), }, [554] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_arm] = STATE(1476), - [sym_match_pattern] = STATE(3342), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), [sym_line_comment] = STATE(554), [sym_block_comment] = STATE(554), - [aux_sym_match_block_repeat1] = STATE(554), - [aux_sym_match_arm_repeat1] = STATE(759), + [ts_builtin_sym_end] = ACTIONS(1962), + [sym_identifier] = ACTIONS(1964), + [anon_sym_SEMI] = ACTIONS(1962), + [anon_sym_macro_rules_BANG] = ACTIONS(1962), + [anon_sym_LPAREN] = ACTIONS(1962), + [anon_sym_LBRACK] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_RBRACE] = ACTIONS(1962), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_u8] = ACTIONS(1964), + [anon_sym_i8] = ACTIONS(1964), + [anon_sym_u16] = ACTIONS(1964), + [anon_sym_i16] = ACTIONS(1964), + [anon_sym_u32] = ACTIONS(1964), + [anon_sym_i32] = ACTIONS(1964), + [anon_sym_u64] = ACTIONS(1964), + [anon_sym_i64] = ACTIONS(1964), + [anon_sym_u128] = ACTIONS(1964), + [anon_sym_i128] = ACTIONS(1964), + [anon_sym_isize] = ACTIONS(1964), + [anon_sym_usize] = ACTIONS(1964), + [anon_sym_f32] = ACTIONS(1964), + [anon_sym_f64] = ACTIONS(1964), + [anon_sym_bool] = ACTIONS(1964), + [anon_sym_str] = ACTIONS(1964), + [anon_sym_char] = ACTIONS(1964), + [anon_sym_DASH] = ACTIONS(1962), + [anon_sym_BANG] = ACTIONS(1962), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_LT] = ACTIONS(1962), + [anon_sym_DOT_DOT] = ACTIONS(1962), + [anon_sym_COLON_COLON] = ACTIONS(1962), + [anon_sym_POUND] = ACTIONS(1962), + [anon_sym_SQUOTE] = ACTIONS(1964), + [anon_sym_async] = ACTIONS(1964), + [anon_sym_break] = ACTIONS(1964), + [anon_sym_const] = ACTIONS(1964), + [anon_sym_continue] = ACTIONS(1964), + [anon_sym_default] = ACTIONS(1964), + [anon_sym_enum] = ACTIONS(1964), + [anon_sym_fn] = ACTIONS(1964), + [anon_sym_for] = ACTIONS(1964), + [anon_sym_if] = ACTIONS(1964), + [anon_sym_impl] = ACTIONS(1964), + [anon_sym_let] = ACTIONS(1964), + [anon_sym_loop] = ACTIONS(1964), + [anon_sym_match] = ACTIONS(1964), + [anon_sym_mod] = ACTIONS(1964), + [anon_sym_pub] = ACTIONS(1964), + [anon_sym_return] = ACTIONS(1964), + [anon_sym_static] = ACTIONS(1964), + [anon_sym_struct] = ACTIONS(1964), + [anon_sym_trait] = ACTIONS(1964), + [anon_sym_type] = ACTIONS(1964), + [anon_sym_union] = ACTIONS(1964), + [anon_sym_unsafe] = ACTIONS(1964), + [anon_sym_use] = ACTIONS(1964), + [anon_sym_while] = ACTIONS(1964), + [anon_sym_extern] = ACTIONS(1964), + [anon_sym_yield] = ACTIONS(1964), + [anon_sym_move] = ACTIONS(1964), + [anon_sym_try] = ACTIONS(1964), + [sym_integer_literal] = ACTIONS(1962), + [aux_sym_string_literal_token1] = ACTIONS(1962), + [sym_char_literal] = ACTIONS(1962), + [anon_sym_true] = ACTIONS(1964), + [anon_sym_false] = ACTIONS(1964), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1964), + [sym_super] = ACTIONS(1964), + [sym_crate] = ACTIONS(1964), + [sym_metavariable] = ACTIONS(1962), + [sym__raw_string_literal_start] = ACTIONS(1962), + [sym_float_literal] = ACTIONS(1962), + }, + [555] = { + [sym_line_comment] = STATE(555), + [sym_block_comment] = STATE(555), + [ts_builtin_sym_end] = ACTIONS(1966), + [sym_identifier] = ACTIONS(1968), + [anon_sym_SEMI] = ACTIONS(1966), + [anon_sym_macro_rules_BANG] = ACTIONS(1966), + [anon_sym_LPAREN] = ACTIONS(1966), + [anon_sym_LBRACK] = ACTIONS(1966), + [anon_sym_LBRACE] = ACTIONS(1966), + [anon_sym_RBRACE] = ACTIONS(1966), + [anon_sym_STAR] = ACTIONS(1966), + [anon_sym_u8] = ACTIONS(1968), + [anon_sym_i8] = ACTIONS(1968), + [anon_sym_u16] = ACTIONS(1968), + [anon_sym_i16] = ACTIONS(1968), + [anon_sym_u32] = ACTIONS(1968), + [anon_sym_i32] = ACTIONS(1968), + [anon_sym_u64] = ACTIONS(1968), + [anon_sym_i64] = ACTIONS(1968), + [anon_sym_u128] = ACTIONS(1968), + [anon_sym_i128] = ACTIONS(1968), + [anon_sym_isize] = ACTIONS(1968), + [anon_sym_usize] = ACTIONS(1968), + [anon_sym_f32] = ACTIONS(1968), + [anon_sym_f64] = ACTIONS(1968), + [anon_sym_bool] = ACTIONS(1968), + [anon_sym_str] = ACTIONS(1968), + [anon_sym_char] = ACTIONS(1968), + [anon_sym_DASH] = ACTIONS(1966), + [anon_sym_BANG] = ACTIONS(1966), + [anon_sym_AMP] = ACTIONS(1966), + [anon_sym_PIPE] = ACTIONS(1966), + [anon_sym_LT] = ACTIONS(1966), + [anon_sym_DOT_DOT] = ACTIONS(1966), + [anon_sym_COLON_COLON] = ACTIONS(1966), + [anon_sym_POUND] = ACTIONS(1966), + [anon_sym_SQUOTE] = ACTIONS(1968), + [anon_sym_async] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_default] = ACTIONS(1968), + [anon_sym_enum] = ACTIONS(1968), + [anon_sym_fn] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_impl] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_mod] = ACTIONS(1968), + [anon_sym_pub] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1968), + [anon_sym_struct] = ACTIONS(1968), + [anon_sym_trait] = ACTIONS(1968), + [anon_sym_type] = ACTIONS(1968), + [anon_sym_union] = ACTIONS(1968), + [anon_sym_unsafe] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_yield] = ACTIONS(1968), + [anon_sym_move] = ACTIONS(1968), + [anon_sym_try] = ACTIONS(1968), + [sym_integer_literal] = ACTIONS(1966), + [aux_sym_string_literal_token1] = ACTIONS(1966), + [sym_char_literal] = ACTIONS(1966), + [anon_sym_true] = ACTIONS(1968), + [anon_sym_false] = ACTIONS(1968), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1968), + [sym_super] = ACTIONS(1968), + [sym_crate] = ACTIONS(1968), + [sym_metavariable] = ACTIONS(1966), + [sym__raw_string_literal_start] = ACTIONS(1966), + [sym_float_literal] = ACTIONS(1966), + }, + [556] = { + [sym_line_comment] = STATE(556), + [sym_block_comment] = STATE(556), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym_identifier] = ACTIONS(1972), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_macro_rules_BANG] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1970), + [anon_sym_u8] = ACTIONS(1972), + [anon_sym_i8] = ACTIONS(1972), + [anon_sym_u16] = ACTIONS(1972), + [anon_sym_i16] = ACTIONS(1972), + [anon_sym_u32] = ACTIONS(1972), + [anon_sym_i32] = ACTIONS(1972), + [anon_sym_u64] = ACTIONS(1972), + [anon_sym_i64] = ACTIONS(1972), + [anon_sym_u128] = ACTIONS(1972), + [anon_sym_i128] = ACTIONS(1972), + [anon_sym_isize] = ACTIONS(1972), + [anon_sym_usize] = ACTIONS(1972), + [anon_sym_f32] = ACTIONS(1972), + [anon_sym_f64] = ACTIONS(1972), + [anon_sym_bool] = ACTIONS(1972), + [anon_sym_str] = ACTIONS(1972), + [anon_sym_char] = ACTIONS(1972), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_AMP] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1970), + [anon_sym_COLON_COLON] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(1970), + [anon_sym_SQUOTE] = ACTIONS(1972), + [anon_sym_async] = ACTIONS(1972), + [anon_sym_break] = ACTIONS(1972), + [anon_sym_const] = ACTIONS(1972), + [anon_sym_continue] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1972), + [anon_sym_enum] = ACTIONS(1972), + [anon_sym_fn] = ACTIONS(1972), + [anon_sym_for] = ACTIONS(1972), + [anon_sym_if] = ACTIONS(1972), + [anon_sym_impl] = ACTIONS(1972), + [anon_sym_let] = ACTIONS(1972), + [anon_sym_loop] = ACTIONS(1972), + [anon_sym_match] = ACTIONS(1972), + [anon_sym_mod] = ACTIONS(1972), + [anon_sym_pub] = ACTIONS(1972), + [anon_sym_return] = ACTIONS(1972), + [anon_sym_static] = ACTIONS(1972), + [anon_sym_struct] = ACTIONS(1972), + [anon_sym_trait] = ACTIONS(1972), + [anon_sym_type] = ACTIONS(1972), + [anon_sym_union] = ACTIONS(1972), + [anon_sym_unsafe] = ACTIONS(1972), + [anon_sym_use] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1972), + [anon_sym_extern] = ACTIONS(1972), + [anon_sym_yield] = ACTIONS(1972), + [anon_sym_move] = ACTIONS(1972), + [anon_sym_try] = ACTIONS(1972), + [sym_integer_literal] = ACTIONS(1970), + [aux_sym_string_literal_token1] = ACTIONS(1970), + [sym_char_literal] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1972), + [anon_sym_false] = ACTIONS(1972), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1972), + [sym_super] = ACTIONS(1972), + [sym_crate] = ACTIONS(1972), + [sym_metavariable] = ACTIONS(1970), + [sym__raw_string_literal_start] = ACTIONS(1970), + [sym_float_literal] = ACTIONS(1970), + }, + [557] = { + [sym_line_comment] = STATE(557), + [sym_block_comment] = STATE(557), + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_macro_rules_BANG] = ACTIONS(1974), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_LBRACE] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_STAR] = ACTIONS(1974), + [anon_sym_u8] = ACTIONS(1976), + [anon_sym_i8] = ACTIONS(1976), + [anon_sym_u16] = ACTIONS(1976), + [anon_sym_i16] = ACTIONS(1976), + [anon_sym_u32] = ACTIONS(1976), + [anon_sym_i32] = ACTIONS(1976), + [anon_sym_u64] = ACTIONS(1976), + [anon_sym_i64] = ACTIONS(1976), + [anon_sym_u128] = ACTIONS(1976), + [anon_sym_i128] = ACTIONS(1976), + [anon_sym_isize] = ACTIONS(1976), + [anon_sym_usize] = ACTIONS(1976), + [anon_sym_f32] = ACTIONS(1976), + [anon_sym_f64] = ACTIONS(1976), + [anon_sym_bool] = ACTIONS(1976), + [anon_sym_str] = ACTIONS(1976), + [anon_sym_char] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_DOT_DOT] = ACTIONS(1974), + [anon_sym_COLON_COLON] = ACTIONS(1974), + [anon_sym_POUND] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [anon_sym_fn] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_impl] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_loop] = ACTIONS(1976), + [anon_sym_match] = ACTIONS(1976), + [anon_sym_mod] = ACTIONS(1976), + [anon_sym_pub] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_struct] = ACTIONS(1976), + [anon_sym_trait] = ACTIONS(1976), + [anon_sym_type] = ACTIONS(1976), + [anon_sym_union] = ACTIONS(1976), + [anon_sym_unsafe] = ACTIONS(1976), + [anon_sym_use] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym_yield] = ACTIONS(1976), + [anon_sym_move] = ACTIONS(1976), + [anon_sym_try] = ACTIONS(1976), + [sym_integer_literal] = ACTIONS(1974), + [aux_sym_string_literal_token1] = ACTIONS(1974), + [sym_char_literal] = ACTIONS(1974), + [anon_sym_true] = ACTIONS(1976), + [anon_sym_false] = ACTIONS(1976), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_crate] = ACTIONS(1976), + [sym_metavariable] = ACTIONS(1974), + [sym__raw_string_literal_start] = ACTIONS(1974), + [sym_float_literal] = ACTIONS(1974), + }, + [558] = { + [sym_line_comment] = STATE(558), + [sym_block_comment] = STATE(558), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_macro_rules_BANG] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_STAR] = ACTIONS(1978), + [anon_sym_u8] = ACTIONS(1980), + [anon_sym_i8] = ACTIONS(1980), + [anon_sym_u16] = ACTIONS(1980), + [anon_sym_i16] = ACTIONS(1980), + [anon_sym_u32] = ACTIONS(1980), + [anon_sym_i32] = ACTIONS(1980), + [anon_sym_u64] = ACTIONS(1980), + [anon_sym_i64] = ACTIONS(1980), + [anon_sym_u128] = ACTIONS(1980), + [anon_sym_i128] = ACTIONS(1980), + [anon_sym_isize] = ACTIONS(1980), + [anon_sym_usize] = ACTIONS(1980), + [anon_sym_f32] = ACTIONS(1980), + [anon_sym_f64] = ACTIONS(1980), + [anon_sym_bool] = ACTIONS(1980), + [anon_sym_str] = ACTIONS(1980), + [anon_sym_char] = ACTIONS(1980), + [anon_sym_DASH] = ACTIONS(1978), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_AMP] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1978), + [anon_sym_COLON_COLON] = ACTIONS(1978), + [anon_sym_POUND] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1980), + [anon_sym_async] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_fn] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_impl] = ACTIONS(1980), + [anon_sym_let] = ACTIONS(1980), + [anon_sym_loop] = ACTIONS(1980), + [anon_sym_match] = ACTIONS(1980), + [anon_sym_mod] = ACTIONS(1980), + [anon_sym_pub] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_struct] = ACTIONS(1980), + [anon_sym_trait] = ACTIONS(1980), + [anon_sym_type] = ACTIONS(1980), + [anon_sym_union] = ACTIONS(1980), + [anon_sym_unsafe] = ACTIONS(1980), + [anon_sym_use] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_extern] = ACTIONS(1980), + [anon_sym_yield] = ACTIONS(1980), + [anon_sym_move] = ACTIONS(1980), + [anon_sym_try] = ACTIONS(1980), + [sym_integer_literal] = ACTIONS(1978), + [aux_sym_string_literal_token1] = ACTIONS(1978), + [sym_char_literal] = ACTIONS(1978), + [anon_sym_true] = ACTIONS(1980), + [anon_sym_false] = ACTIONS(1980), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_crate] = ACTIONS(1980), + [sym_metavariable] = ACTIONS(1978), + [sym__raw_string_literal_start] = ACTIONS(1978), + [sym_float_literal] = ACTIONS(1978), + }, + [559] = { + [sym_line_comment] = STATE(559), + [sym_block_comment] = STATE(559), + [ts_builtin_sym_end] = ACTIONS(1982), + [sym_identifier] = ACTIONS(1984), + [anon_sym_SEMI] = ACTIONS(1982), + [anon_sym_macro_rules_BANG] = ACTIONS(1982), + [anon_sym_LPAREN] = ACTIONS(1982), + [anon_sym_LBRACK] = ACTIONS(1982), + [anon_sym_LBRACE] = ACTIONS(1982), + [anon_sym_RBRACE] = ACTIONS(1982), + [anon_sym_STAR] = ACTIONS(1982), + [anon_sym_u8] = ACTIONS(1984), + [anon_sym_i8] = ACTIONS(1984), + [anon_sym_u16] = ACTIONS(1984), + [anon_sym_i16] = ACTIONS(1984), + [anon_sym_u32] = ACTIONS(1984), + [anon_sym_i32] = ACTIONS(1984), + [anon_sym_u64] = ACTIONS(1984), + [anon_sym_i64] = ACTIONS(1984), + [anon_sym_u128] = ACTIONS(1984), + [anon_sym_i128] = ACTIONS(1984), + [anon_sym_isize] = ACTIONS(1984), + [anon_sym_usize] = ACTIONS(1984), + [anon_sym_f32] = ACTIONS(1984), + [anon_sym_f64] = ACTIONS(1984), + [anon_sym_bool] = ACTIONS(1984), + [anon_sym_str] = ACTIONS(1984), + [anon_sym_char] = ACTIONS(1984), + [anon_sym_DASH] = ACTIONS(1982), + [anon_sym_BANG] = ACTIONS(1982), + [anon_sym_AMP] = ACTIONS(1982), + [anon_sym_PIPE] = ACTIONS(1982), + [anon_sym_LT] = ACTIONS(1982), + [anon_sym_DOT_DOT] = ACTIONS(1982), + [anon_sym_COLON_COLON] = ACTIONS(1982), + [anon_sym_POUND] = ACTIONS(1982), + [anon_sym_SQUOTE] = ACTIONS(1984), + [anon_sym_async] = ACTIONS(1984), + [anon_sym_break] = ACTIONS(1984), + [anon_sym_const] = ACTIONS(1984), + [anon_sym_continue] = ACTIONS(1984), + [anon_sym_default] = ACTIONS(1984), + [anon_sym_enum] = ACTIONS(1984), + [anon_sym_fn] = ACTIONS(1984), + [anon_sym_for] = ACTIONS(1984), + [anon_sym_if] = ACTIONS(1984), + [anon_sym_impl] = ACTIONS(1984), + [anon_sym_let] = ACTIONS(1984), + [anon_sym_loop] = ACTIONS(1984), + [anon_sym_match] = ACTIONS(1984), + [anon_sym_mod] = ACTIONS(1984), + [anon_sym_pub] = ACTIONS(1984), + [anon_sym_return] = ACTIONS(1984), + [anon_sym_static] = ACTIONS(1984), + [anon_sym_struct] = ACTIONS(1984), + [anon_sym_trait] = ACTIONS(1984), + [anon_sym_type] = ACTIONS(1984), + [anon_sym_union] = ACTIONS(1984), + [anon_sym_unsafe] = ACTIONS(1984), + [anon_sym_use] = ACTIONS(1984), + [anon_sym_while] = ACTIONS(1984), + [anon_sym_extern] = ACTIONS(1984), + [anon_sym_yield] = ACTIONS(1984), + [anon_sym_move] = ACTIONS(1984), + [anon_sym_try] = ACTIONS(1984), + [sym_integer_literal] = ACTIONS(1982), + [aux_sym_string_literal_token1] = ACTIONS(1982), + [sym_char_literal] = ACTIONS(1982), + [anon_sym_true] = ACTIONS(1984), + [anon_sym_false] = ACTIONS(1984), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1984), + [sym_super] = ACTIONS(1984), + [sym_crate] = ACTIONS(1984), + [sym_metavariable] = ACTIONS(1982), + [sym__raw_string_literal_start] = ACTIONS(1982), + [sym_float_literal] = ACTIONS(1982), + }, + [560] = { + [sym_line_comment] = STATE(560), + [sym_block_comment] = STATE(560), + [ts_builtin_sym_end] = ACTIONS(1986), + [sym_identifier] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1986), + [anon_sym_macro_rules_BANG] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_LBRACK] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_STAR] = ACTIONS(1986), + [anon_sym_u8] = ACTIONS(1988), + [anon_sym_i8] = ACTIONS(1988), + [anon_sym_u16] = ACTIONS(1988), + [anon_sym_i16] = ACTIONS(1988), + [anon_sym_u32] = ACTIONS(1988), + [anon_sym_i32] = ACTIONS(1988), + [anon_sym_u64] = ACTIONS(1988), + [anon_sym_i64] = ACTIONS(1988), + [anon_sym_u128] = ACTIONS(1988), + [anon_sym_i128] = ACTIONS(1988), + [anon_sym_isize] = ACTIONS(1988), + [anon_sym_usize] = ACTIONS(1988), + [anon_sym_f32] = ACTIONS(1988), + [anon_sym_f64] = ACTIONS(1988), + [anon_sym_bool] = ACTIONS(1988), + [anon_sym_str] = ACTIONS(1988), + [anon_sym_char] = ACTIONS(1988), + [anon_sym_DASH] = ACTIONS(1986), + [anon_sym_BANG] = ACTIONS(1986), + [anon_sym_AMP] = ACTIONS(1986), + [anon_sym_PIPE] = ACTIONS(1986), + [anon_sym_LT] = ACTIONS(1986), + [anon_sym_DOT_DOT] = ACTIONS(1986), + [anon_sym_COLON_COLON] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(1986), + [anon_sym_SQUOTE] = ACTIONS(1988), + [anon_sym_async] = ACTIONS(1988), + [anon_sym_break] = ACTIONS(1988), + [anon_sym_const] = ACTIONS(1988), + [anon_sym_continue] = ACTIONS(1988), + [anon_sym_default] = ACTIONS(1988), + [anon_sym_enum] = ACTIONS(1988), + [anon_sym_fn] = ACTIONS(1988), + [anon_sym_for] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_impl] = ACTIONS(1988), + [anon_sym_let] = ACTIONS(1988), + [anon_sym_loop] = ACTIONS(1988), + [anon_sym_match] = ACTIONS(1988), + [anon_sym_mod] = ACTIONS(1988), + [anon_sym_pub] = ACTIONS(1988), + [anon_sym_return] = ACTIONS(1988), + [anon_sym_static] = ACTIONS(1988), + [anon_sym_struct] = ACTIONS(1988), + [anon_sym_trait] = ACTIONS(1988), + [anon_sym_type] = ACTIONS(1988), + [anon_sym_union] = ACTIONS(1988), + [anon_sym_unsafe] = ACTIONS(1988), + [anon_sym_use] = ACTIONS(1988), + [anon_sym_while] = ACTIONS(1988), + [anon_sym_extern] = ACTIONS(1988), + [anon_sym_yield] = ACTIONS(1988), + [anon_sym_move] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1988), + [sym_integer_literal] = ACTIONS(1986), + [aux_sym_string_literal_token1] = ACTIONS(1986), + [sym_char_literal] = ACTIONS(1986), + [anon_sym_true] = ACTIONS(1988), + [anon_sym_false] = ACTIONS(1988), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1988), + [sym_super] = ACTIONS(1988), + [sym_crate] = ACTIONS(1988), + [sym_metavariable] = ACTIONS(1986), + [sym__raw_string_literal_start] = ACTIONS(1986), + [sym_float_literal] = ACTIONS(1986), + }, + [561] = { + [sym_line_comment] = STATE(561), + [sym_block_comment] = STATE(561), + [ts_builtin_sym_end] = ACTIONS(1990), + [sym_identifier] = ACTIONS(1992), + [anon_sym_SEMI] = ACTIONS(1990), + [anon_sym_macro_rules_BANG] = ACTIONS(1990), + [anon_sym_LPAREN] = ACTIONS(1990), + [anon_sym_LBRACK] = ACTIONS(1990), + [anon_sym_LBRACE] = ACTIONS(1990), + [anon_sym_RBRACE] = ACTIONS(1990), + [anon_sym_STAR] = ACTIONS(1990), + [anon_sym_u8] = ACTIONS(1992), + [anon_sym_i8] = ACTIONS(1992), + [anon_sym_u16] = ACTIONS(1992), + [anon_sym_i16] = ACTIONS(1992), + [anon_sym_u32] = ACTIONS(1992), + [anon_sym_i32] = ACTIONS(1992), + [anon_sym_u64] = ACTIONS(1992), + [anon_sym_i64] = ACTIONS(1992), + [anon_sym_u128] = ACTIONS(1992), + [anon_sym_i128] = ACTIONS(1992), + [anon_sym_isize] = ACTIONS(1992), + [anon_sym_usize] = ACTIONS(1992), + [anon_sym_f32] = ACTIONS(1992), + [anon_sym_f64] = ACTIONS(1992), + [anon_sym_bool] = ACTIONS(1992), + [anon_sym_str] = ACTIONS(1992), + [anon_sym_char] = ACTIONS(1992), + [anon_sym_DASH] = ACTIONS(1990), + [anon_sym_BANG] = ACTIONS(1990), + [anon_sym_AMP] = ACTIONS(1990), + [anon_sym_PIPE] = ACTIONS(1990), + [anon_sym_LT] = ACTIONS(1990), + [anon_sym_DOT_DOT] = ACTIONS(1990), + [anon_sym_COLON_COLON] = ACTIONS(1990), + [anon_sym_POUND] = ACTIONS(1990), + [anon_sym_SQUOTE] = ACTIONS(1992), + [anon_sym_async] = ACTIONS(1992), + [anon_sym_break] = ACTIONS(1992), + [anon_sym_const] = ACTIONS(1992), + [anon_sym_continue] = ACTIONS(1992), + [anon_sym_default] = ACTIONS(1992), + [anon_sym_enum] = ACTIONS(1992), + [anon_sym_fn] = ACTIONS(1992), + [anon_sym_for] = ACTIONS(1992), + [anon_sym_if] = ACTIONS(1992), + [anon_sym_impl] = ACTIONS(1992), + [anon_sym_let] = ACTIONS(1992), + [anon_sym_loop] = ACTIONS(1992), + [anon_sym_match] = ACTIONS(1992), + [anon_sym_mod] = ACTIONS(1992), + [anon_sym_pub] = ACTIONS(1992), + [anon_sym_return] = ACTIONS(1992), + [anon_sym_static] = ACTIONS(1992), + [anon_sym_struct] = ACTIONS(1992), + [anon_sym_trait] = ACTIONS(1992), + [anon_sym_type] = ACTIONS(1992), + [anon_sym_union] = ACTIONS(1992), + [anon_sym_unsafe] = ACTIONS(1992), + [anon_sym_use] = ACTIONS(1992), + [anon_sym_while] = ACTIONS(1992), + [anon_sym_extern] = ACTIONS(1992), + [anon_sym_yield] = ACTIONS(1992), + [anon_sym_move] = ACTIONS(1992), + [anon_sym_try] = ACTIONS(1992), + [sym_integer_literal] = ACTIONS(1990), + [aux_sym_string_literal_token1] = ACTIONS(1990), + [sym_char_literal] = ACTIONS(1990), + [anon_sym_true] = ACTIONS(1992), + [anon_sym_false] = ACTIONS(1992), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1992), + [sym_super] = ACTIONS(1992), + [sym_crate] = ACTIONS(1992), + [sym_metavariable] = ACTIONS(1990), + [sym__raw_string_literal_start] = ACTIONS(1990), + [sym_float_literal] = ACTIONS(1990), + }, + [562] = { + [sym_line_comment] = STATE(562), + [sym_block_comment] = STATE(562), + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_macro_rules_BANG] = ACTIONS(1994), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_STAR] = ACTIONS(1994), + [anon_sym_u8] = ACTIONS(1996), + [anon_sym_i8] = ACTIONS(1996), + [anon_sym_u16] = ACTIONS(1996), + [anon_sym_i16] = ACTIONS(1996), + [anon_sym_u32] = ACTIONS(1996), + [anon_sym_i32] = ACTIONS(1996), + [anon_sym_u64] = ACTIONS(1996), + [anon_sym_i64] = ACTIONS(1996), + [anon_sym_u128] = ACTIONS(1996), + [anon_sym_i128] = ACTIONS(1996), + [anon_sym_isize] = ACTIONS(1996), + [anon_sym_usize] = ACTIONS(1996), + [anon_sym_f32] = ACTIONS(1996), + [anon_sym_f64] = ACTIONS(1996), + [anon_sym_bool] = ACTIONS(1996), + [anon_sym_str] = ACTIONS(1996), + [anon_sym_char] = ACTIONS(1996), + [anon_sym_DASH] = ACTIONS(1994), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_AMP] = ACTIONS(1994), + [anon_sym_PIPE] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_DOT_DOT] = ACTIONS(1994), + [anon_sym_COLON_COLON] = ACTIONS(1994), + [anon_sym_POUND] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1996), + [anon_sym_async] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [anon_sym_fn] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_impl] = ACTIONS(1996), + [anon_sym_let] = ACTIONS(1996), + [anon_sym_loop] = ACTIONS(1996), + [anon_sym_match] = ACTIONS(1996), + [anon_sym_mod] = ACTIONS(1996), + [anon_sym_pub] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_struct] = ACTIONS(1996), + [anon_sym_trait] = ACTIONS(1996), + [anon_sym_type] = ACTIONS(1996), + [anon_sym_union] = ACTIONS(1996), + [anon_sym_unsafe] = ACTIONS(1996), + [anon_sym_use] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_extern] = ACTIONS(1996), + [anon_sym_yield] = ACTIONS(1996), + [anon_sym_move] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [sym_integer_literal] = ACTIONS(1994), + [aux_sym_string_literal_token1] = ACTIONS(1994), + [sym_char_literal] = ACTIONS(1994), + [anon_sym_true] = ACTIONS(1996), + [anon_sym_false] = ACTIONS(1996), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_crate] = ACTIONS(1996), + [sym_metavariable] = ACTIONS(1994), + [sym__raw_string_literal_start] = ACTIONS(1994), + [sym_float_literal] = ACTIONS(1994), + }, + [563] = { + [sym_line_comment] = STATE(563), + [sym_block_comment] = STATE(563), + [ts_builtin_sym_end] = ACTIONS(1998), + [sym_identifier] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(1998), + [anon_sym_macro_rules_BANG] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_LBRACK] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_u8] = ACTIONS(2000), + [anon_sym_i8] = ACTIONS(2000), + [anon_sym_u16] = ACTIONS(2000), + [anon_sym_i16] = ACTIONS(2000), + [anon_sym_u32] = ACTIONS(2000), + [anon_sym_i32] = ACTIONS(2000), + [anon_sym_u64] = ACTIONS(2000), + [anon_sym_i64] = ACTIONS(2000), + [anon_sym_u128] = ACTIONS(2000), + [anon_sym_i128] = ACTIONS(2000), + [anon_sym_isize] = ACTIONS(2000), + [anon_sym_usize] = ACTIONS(2000), + [anon_sym_f32] = ACTIONS(2000), + [anon_sym_f64] = ACTIONS(2000), + [anon_sym_bool] = ACTIONS(2000), + [anon_sym_str] = ACTIONS(2000), + [anon_sym_char] = ACTIONS(2000), + [anon_sym_DASH] = ACTIONS(1998), + [anon_sym_BANG] = ACTIONS(1998), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_LT] = ACTIONS(1998), + [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_COLON_COLON] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(1998), + [anon_sym_SQUOTE] = ACTIONS(2000), + [anon_sym_async] = ACTIONS(2000), + [anon_sym_break] = ACTIONS(2000), + [anon_sym_const] = ACTIONS(2000), + [anon_sym_continue] = ACTIONS(2000), + [anon_sym_default] = ACTIONS(2000), + [anon_sym_enum] = ACTIONS(2000), + [anon_sym_fn] = ACTIONS(2000), + [anon_sym_for] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_impl] = ACTIONS(2000), + [anon_sym_let] = ACTIONS(2000), + [anon_sym_loop] = ACTIONS(2000), + [anon_sym_match] = ACTIONS(2000), + [anon_sym_mod] = ACTIONS(2000), + [anon_sym_pub] = ACTIONS(2000), + [anon_sym_return] = ACTIONS(2000), + [anon_sym_static] = ACTIONS(2000), + [anon_sym_struct] = ACTIONS(2000), + [anon_sym_trait] = ACTIONS(2000), + [anon_sym_type] = ACTIONS(2000), + [anon_sym_union] = ACTIONS(2000), + [anon_sym_unsafe] = ACTIONS(2000), + [anon_sym_use] = ACTIONS(2000), + [anon_sym_while] = ACTIONS(2000), + [anon_sym_extern] = ACTIONS(2000), + [anon_sym_yield] = ACTIONS(2000), + [anon_sym_move] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(2000), + [sym_integer_literal] = ACTIONS(1998), + [aux_sym_string_literal_token1] = ACTIONS(1998), + [sym_char_literal] = ACTIONS(1998), + [anon_sym_true] = ACTIONS(2000), + [anon_sym_false] = ACTIONS(2000), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2000), + [sym_super] = ACTIONS(2000), + [sym_crate] = ACTIONS(2000), + [sym_metavariable] = ACTIONS(1998), + [sym__raw_string_literal_start] = ACTIONS(1998), + [sym_float_literal] = ACTIONS(1998), + }, + [564] = { + [sym_line_comment] = STATE(564), + [sym_block_comment] = STATE(564), + [ts_builtin_sym_end] = ACTIONS(2002), + [sym_identifier] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_macro_rules_BANG] = ACTIONS(2002), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_STAR] = ACTIONS(2002), + [anon_sym_u8] = ACTIONS(2004), + [anon_sym_i8] = ACTIONS(2004), + [anon_sym_u16] = ACTIONS(2004), + [anon_sym_i16] = ACTIONS(2004), + [anon_sym_u32] = ACTIONS(2004), + [anon_sym_i32] = ACTIONS(2004), + [anon_sym_u64] = ACTIONS(2004), + [anon_sym_i64] = ACTIONS(2004), + [anon_sym_u128] = ACTIONS(2004), + [anon_sym_i128] = ACTIONS(2004), + [anon_sym_isize] = ACTIONS(2004), + [anon_sym_usize] = ACTIONS(2004), + [anon_sym_f32] = ACTIONS(2004), + [anon_sym_f64] = ACTIONS(2004), + [anon_sym_bool] = ACTIONS(2004), + [anon_sym_str] = ACTIONS(2004), + [anon_sym_char] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2002), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_DOT_DOT] = ACTIONS(2002), + [anon_sym_COLON_COLON] = ACTIONS(2002), + [anon_sym_POUND] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2004), + [anon_sym_async] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [anon_sym_fn] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_impl] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_mod] = ACTIONS(2004), + [anon_sym_pub] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_struct] = ACTIONS(2004), + [anon_sym_trait] = ACTIONS(2004), + [anon_sym_type] = ACTIONS(2004), + [anon_sym_union] = ACTIONS(2004), + [anon_sym_unsafe] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_yield] = ACTIONS(2004), + [anon_sym_move] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [sym_integer_literal] = ACTIONS(2002), + [aux_sym_string_literal_token1] = ACTIONS(2002), + [sym_char_literal] = ACTIONS(2002), + [anon_sym_true] = ACTIONS(2004), + [anon_sym_false] = ACTIONS(2004), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_crate] = ACTIONS(2004), + [sym_metavariable] = ACTIONS(2002), + [sym__raw_string_literal_start] = ACTIONS(2002), + [sym_float_literal] = ACTIONS(2002), + }, + [565] = { + [sym_line_comment] = STATE(565), + [sym_block_comment] = STATE(565), + [ts_builtin_sym_end] = ACTIONS(2006), [sym_identifier] = ACTIONS(2008), - [anon_sym_LPAREN] = ACTIONS(2011), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_macro_rules_BANG] = ACTIONS(2006), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_STAR] = ACTIONS(2006), + [anon_sym_u8] = ACTIONS(2008), + [anon_sym_i8] = ACTIONS(2008), + [anon_sym_u16] = ACTIONS(2008), + [anon_sym_i16] = ACTIONS(2008), + [anon_sym_u32] = ACTIONS(2008), + [anon_sym_i32] = ACTIONS(2008), + [anon_sym_u64] = ACTIONS(2008), + [anon_sym_i64] = ACTIONS(2008), + [anon_sym_u128] = ACTIONS(2008), + [anon_sym_i128] = ACTIONS(2008), + [anon_sym_isize] = ACTIONS(2008), + [anon_sym_usize] = ACTIONS(2008), + [anon_sym_f32] = ACTIONS(2008), + [anon_sym_f64] = ACTIONS(2008), + [anon_sym_bool] = ACTIONS(2008), + [anon_sym_str] = ACTIONS(2008), + [anon_sym_char] = ACTIONS(2008), + [anon_sym_DASH] = ACTIONS(2006), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2006), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_DOT_DOT] = ACTIONS(2006), + [anon_sym_COLON_COLON] = ACTIONS(2006), + [anon_sym_POUND] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2008), + [anon_sym_async] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [anon_sym_fn] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_impl] = ACTIONS(2008), + [anon_sym_let] = ACTIONS(2008), + [anon_sym_loop] = ACTIONS(2008), + [anon_sym_match] = ACTIONS(2008), + [anon_sym_mod] = ACTIONS(2008), + [anon_sym_pub] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_struct] = ACTIONS(2008), + [anon_sym_trait] = ACTIONS(2008), + [anon_sym_type] = ACTIONS(2008), + [anon_sym_union] = ACTIONS(2008), + [anon_sym_unsafe] = ACTIONS(2008), + [anon_sym_use] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym_yield] = ACTIONS(2008), + [anon_sym_move] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2008), + [sym_integer_literal] = ACTIONS(2006), + [aux_sym_string_literal_token1] = ACTIONS(2006), + [sym_char_literal] = ACTIONS(2006), + [anon_sym_true] = ACTIONS(2008), + [anon_sym_false] = ACTIONS(2008), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2008), + [sym_super] = ACTIONS(2008), + [sym_crate] = ACTIONS(2008), + [sym_metavariable] = ACTIONS(2006), + [sym__raw_string_literal_start] = ACTIONS(2006), + [sym_float_literal] = ACTIONS(2006), + }, + [566] = { + [sym_line_comment] = STATE(566), + [sym_block_comment] = STATE(566), + [ts_builtin_sym_end] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_macro_rules_BANG] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_STAR] = ACTIONS(2010), + [anon_sym_u8] = ACTIONS(2012), + [anon_sym_i8] = ACTIONS(2012), + [anon_sym_u16] = ACTIONS(2012), + [anon_sym_i16] = ACTIONS(2012), + [anon_sym_u32] = ACTIONS(2012), + [anon_sym_i32] = ACTIONS(2012), + [anon_sym_u64] = ACTIONS(2012), + [anon_sym_i64] = ACTIONS(2012), + [anon_sym_u128] = ACTIONS(2012), + [anon_sym_i128] = ACTIONS(2012), + [anon_sym_isize] = ACTIONS(2012), + [anon_sym_usize] = ACTIONS(2012), + [anon_sym_f32] = ACTIONS(2012), + [anon_sym_f64] = ACTIONS(2012), + [anon_sym_bool] = ACTIONS(2012), + [anon_sym_str] = ACTIONS(2012), + [anon_sym_char] = ACTIONS(2012), + [anon_sym_DASH] = ACTIONS(2010), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_AMP] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_LT] = ACTIONS(2010), + [anon_sym_DOT_DOT] = ACTIONS(2010), + [anon_sym_COLON_COLON] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2012), + [anon_sym_async] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [anon_sym_fn] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_impl] = ACTIONS(2012), + [anon_sym_let] = ACTIONS(2012), + [anon_sym_loop] = ACTIONS(2012), + [anon_sym_match] = ACTIONS(2012), + [anon_sym_mod] = ACTIONS(2012), + [anon_sym_pub] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_struct] = ACTIONS(2012), + [anon_sym_trait] = ACTIONS(2012), + [anon_sym_type] = ACTIONS(2012), + [anon_sym_union] = ACTIONS(2012), + [anon_sym_unsafe] = ACTIONS(2012), + [anon_sym_use] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym_yield] = ACTIONS(2012), + [anon_sym_move] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [sym_integer_literal] = ACTIONS(2010), + [aux_sym_string_literal_token1] = ACTIONS(2010), + [sym_char_literal] = ACTIONS(2010), + [anon_sym_true] = ACTIONS(2012), + [anon_sym_false] = ACTIONS(2012), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_crate] = ACTIONS(2012), + [sym_metavariable] = ACTIONS(2010), + [sym__raw_string_literal_start] = ACTIONS(2010), + [sym_float_literal] = ACTIONS(2010), + }, + [567] = { + [sym_line_comment] = STATE(567), + [sym_block_comment] = STATE(567), + [ts_builtin_sym_end] = ACTIONS(2014), + [sym_identifier] = ACTIONS(2016), + [anon_sym_SEMI] = ACTIONS(2014), + [anon_sym_macro_rules_BANG] = ACTIONS(2014), + [anon_sym_LPAREN] = ACTIONS(2014), [anon_sym_LBRACK] = ACTIONS(2014), - [anon_sym_u8] = ACTIONS(2017), - [anon_sym_i8] = ACTIONS(2017), - [anon_sym_u16] = ACTIONS(2017), - [anon_sym_i16] = ACTIONS(2017), - [anon_sym_u32] = ACTIONS(2017), - [anon_sym_i32] = ACTIONS(2017), - [anon_sym_u64] = ACTIONS(2017), - [anon_sym_i64] = ACTIONS(2017), - [anon_sym_u128] = ACTIONS(2017), - [anon_sym_i128] = ACTIONS(2017), - [anon_sym_isize] = ACTIONS(2017), - [anon_sym_usize] = ACTIONS(2017), - [anon_sym_f32] = ACTIONS(2017), - [anon_sym_f64] = ACTIONS(2017), - [anon_sym_bool] = ACTIONS(2017), - [anon_sym_str] = ACTIONS(2017), - [anon_sym_char] = ACTIONS(2017), - [anon_sym_DASH] = ACTIONS(2020), - [anon_sym_AMP] = ACTIONS(2023), + [anon_sym_LBRACE] = ACTIONS(2014), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_u8] = ACTIONS(2016), + [anon_sym_i8] = ACTIONS(2016), + [anon_sym_u16] = ACTIONS(2016), + [anon_sym_i16] = ACTIONS(2016), + [anon_sym_u32] = ACTIONS(2016), + [anon_sym_i32] = ACTIONS(2016), + [anon_sym_u64] = ACTIONS(2016), + [anon_sym_i64] = ACTIONS(2016), + [anon_sym_u128] = ACTIONS(2016), + [anon_sym_i128] = ACTIONS(2016), + [anon_sym_isize] = ACTIONS(2016), + [anon_sym_usize] = ACTIONS(2016), + [anon_sym_f32] = ACTIONS(2016), + [anon_sym_f64] = ACTIONS(2016), + [anon_sym_bool] = ACTIONS(2016), + [anon_sym_str] = ACTIONS(2016), + [anon_sym_char] = ACTIONS(2016), + [anon_sym_DASH] = ACTIONS(2014), + [anon_sym_BANG] = ACTIONS(2014), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(2014), + [anon_sym_DOT_DOT] = ACTIONS(2014), + [anon_sym_COLON_COLON] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(2014), + [anon_sym_SQUOTE] = ACTIONS(2016), + [anon_sym_async] = ACTIONS(2016), + [anon_sym_break] = ACTIONS(2016), + [anon_sym_const] = ACTIONS(2016), + [anon_sym_continue] = ACTIONS(2016), + [anon_sym_default] = ACTIONS(2016), + [anon_sym_enum] = ACTIONS(2016), + [anon_sym_fn] = ACTIONS(2016), + [anon_sym_for] = ACTIONS(2016), + [anon_sym_if] = ACTIONS(2016), + [anon_sym_impl] = ACTIONS(2016), + [anon_sym_let] = ACTIONS(2016), + [anon_sym_loop] = ACTIONS(2016), + [anon_sym_match] = ACTIONS(2016), + [anon_sym_mod] = ACTIONS(2016), + [anon_sym_pub] = ACTIONS(2016), + [anon_sym_return] = ACTIONS(2016), + [anon_sym_static] = ACTIONS(2016), + [anon_sym_struct] = ACTIONS(2016), + [anon_sym_trait] = ACTIONS(2016), + [anon_sym_type] = ACTIONS(2016), + [anon_sym_union] = ACTIONS(2016), + [anon_sym_unsafe] = ACTIONS(2016), + [anon_sym_use] = ACTIONS(2016), + [anon_sym_while] = ACTIONS(2016), + [anon_sym_extern] = ACTIONS(2016), + [anon_sym_yield] = ACTIONS(2016), + [anon_sym_move] = ACTIONS(2016), + [anon_sym_try] = ACTIONS(2016), + [sym_integer_literal] = ACTIONS(2014), + [aux_sym_string_literal_token1] = ACTIONS(2014), + [sym_char_literal] = ACTIONS(2014), + [anon_sym_true] = ACTIONS(2016), + [anon_sym_false] = ACTIONS(2016), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2016), + [sym_super] = ACTIONS(2016), + [sym_crate] = ACTIONS(2016), + [sym_metavariable] = ACTIONS(2014), + [sym__raw_string_literal_start] = ACTIONS(2014), + [sym_float_literal] = ACTIONS(2014), + }, + [568] = { + [sym_line_comment] = STATE(568), + [sym_block_comment] = STATE(568), + [ts_builtin_sym_end] = ACTIONS(2018), + [sym_identifier] = ACTIONS(2020), + [anon_sym_SEMI] = ACTIONS(2018), + [anon_sym_macro_rules_BANG] = ACTIONS(2018), + [anon_sym_LPAREN] = ACTIONS(2018), + [anon_sym_LBRACK] = ACTIONS(2018), + [anon_sym_LBRACE] = ACTIONS(2018), + [anon_sym_RBRACE] = ACTIONS(2018), + [anon_sym_STAR] = ACTIONS(2018), + [anon_sym_u8] = ACTIONS(2020), + [anon_sym_i8] = ACTIONS(2020), + [anon_sym_u16] = ACTIONS(2020), + [anon_sym_i16] = ACTIONS(2020), + [anon_sym_u32] = ACTIONS(2020), + [anon_sym_i32] = ACTIONS(2020), + [anon_sym_u64] = ACTIONS(2020), + [anon_sym_i64] = ACTIONS(2020), + [anon_sym_u128] = ACTIONS(2020), + [anon_sym_i128] = ACTIONS(2020), + [anon_sym_isize] = ACTIONS(2020), + [anon_sym_usize] = ACTIONS(2020), + [anon_sym_f32] = ACTIONS(2020), + [anon_sym_f64] = ACTIONS(2020), + [anon_sym_bool] = ACTIONS(2020), + [anon_sym_str] = ACTIONS(2020), + [anon_sym_char] = ACTIONS(2020), + [anon_sym_DASH] = ACTIONS(2018), + [anon_sym_BANG] = ACTIONS(2018), + [anon_sym_AMP] = ACTIONS(2018), + [anon_sym_PIPE] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(2018), + [anon_sym_DOT_DOT] = ACTIONS(2018), + [anon_sym_COLON_COLON] = ACTIONS(2018), + [anon_sym_POUND] = ACTIONS(2018), + [anon_sym_SQUOTE] = ACTIONS(2020), + [anon_sym_async] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_default] = ACTIONS(2020), + [anon_sym_enum] = ACTIONS(2020), + [anon_sym_fn] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_impl] = ACTIONS(2020), + [anon_sym_let] = ACTIONS(2020), + [anon_sym_loop] = ACTIONS(2020), + [anon_sym_match] = ACTIONS(2020), + [anon_sym_mod] = ACTIONS(2020), + [anon_sym_pub] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2020), + [anon_sym_struct] = ACTIONS(2020), + [anon_sym_trait] = ACTIONS(2020), + [anon_sym_type] = ACTIONS(2020), + [anon_sym_union] = ACTIONS(2020), + [anon_sym_unsafe] = ACTIONS(2020), + [anon_sym_use] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym_yield] = ACTIONS(2020), + [anon_sym_move] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2020), + [sym_integer_literal] = ACTIONS(2018), + [aux_sym_string_literal_token1] = ACTIONS(2018), + [sym_char_literal] = ACTIONS(2018), + [anon_sym_true] = ACTIONS(2020), + [anon_sym_false] = ACTIONS(2020), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2020), + [sym_super] = ACTIONS(2020), + [sym_crate] = ACTIONS(2020), + [sym_metavariable] = ACTIONS(2018), + [sym__raw_string_literal_start] = ACTIONS(2018), + [sym_float_literal] = ACTIONS(2018), + }, + [569] = { + [sym_line_comment] = STATE(569), + [sym_block_comment] = STATE(569), + [ts_builtin_sym_end] = ACTIONS(2022), + [sym_identifier] = ACTIONS(2024), + [anon_sym_SEMI] = ACTIONS(2022), + [anon_sym_macro_rules_BANG] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2022), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_u8] = ACTIONS(2024), + [anon_sym_i8] = ACTIONS(2024), + [anon_sym_u16] = ACTIONS(2024), + [anon_sym_i16] = ACTIONS(2024), + [anon_sym_u32] = ACTIONS(2024), + [anon_sym_i32] = ACTIONS(2024), + [anon_sym_u64] = ACTIONS(2024), + [anon_sym_i64] = ACTIONS(2024), + [anon_sym_u128] = ACTIONS(2024), + [anon_sym_i128] = ACTIONS(2024), + [anon_sym_isize] = ACTIONS(2024), + [anon_sym_usize] = ACTIONS(2024), + [anon_sym_f32] = ACTIONS(2024), + [anon_sym_f64] = ACTIONS(2024), + [anon_sym_bool] = ACTIONS(2024), + [anon_sym_str] = ACTIONS(2024), + [anon_sym_char] = ACTIONS(2024), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_PIPE] = ACTIONS(2022), + [anon_sym_LT] = ACTIONS(2022), + [anon_sym_DOT_DOT] = ACTIONS(2022), + [anon_sym_COLON_COLON] = ACTIONS(2022), + [anon_sym_POUND] = ACTIONS(2022), + [anon_sym_SQUOTE] = ACTIONS(2024), + [anon_sym_async] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_default] = ACTIONS(2024), + [anon_sym_enum] = ACTIONS(2024), + [anon_sym_fn] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_impl] = ACTIONS(2024), + [anon_sym_let] = ACTIONS(2024), + [anon_sym_loop] = ACTIONS(2024), + [anon_sym_match] = ACTIONS(2024), + [anon_sym_mod] = ACTIONS(2024), + [anon_sym_pub] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2024), + [anon_sym_struct] = ACTIONS(2024), + [anon_sym_trait] = ACTIONS(2024), + [anon_sym_type] = ACTIONS(2024), + [anon_sym_union] = ACTIONS(2024), + [anon_sym_unsafe] = ACTIONS(2024), + [anon_sym_use] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym_yield] = ACTIONS(2024), + [anon_sym_move] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2024), + [sym_integer_literal] = ACTIONS(2022), + [aux_sym_string_literal_token1] = ACTIONS(2022), + [sym_char_literal] = ACTIONS(2022), + [anon_sym_true] = ACTIONS(2024), + [anon_sym_false] = ACTIONS(2024), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2024), + [sym_super] = ACTIONS(2024), + [sym_crate] = ACTIONS(2024), + [sym_metavariable] = ACTIONS(2022), + [sym__raw_string_literal_start] = ACTIONS(2022), + [sym_float_literal] = ACTIONS(2022), + }, + [570] = { + [sym_line_comment] = STATE(570), + [sym_block_comment] = STATE(570), + [ts_builtin_sym_end] = ACTIONS(2026), + [sym_identifier] = ACTIONS(2028), + [anon_sym_SEMI] = ACTIONS(2026), + [anon_sym_macro_rules_BANG] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2026), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_u8] = ACTIONS(2028), + [anon_sym_i8] = ACTIONS(2028), + [anon_sym_u16] = ACTIONS(2028), + [anon_sym_i16] = ACTIONS(2028), + [anon_sym_u32] = ACTIONS(2028), + [anon_sym_i32] = ACTIONS(2028), + [anon_sym_u64] = ACTIONS(2028), + [anon_sym_i64] = ACTIONS(2028), + [anon_sym_u128] = ACTIONS(2028), + [anon_sym_i128] = ACTIONS(2028), + [anon_sym_isize] = ACTIONS(2028), + [anon_sym_usize] = ACTIONS(2028), + [anon_sym_f32] = ACTIONS(2028), + [anon_sym_f64] = ACTIONS(2028), + [anon_sym_bool] = ACTIONS(2028), + [anon_sym_str] = ACTIONS(2028), + [anon_sym_char] = ACTIONS(2028), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_AMP] = ACTIONS(2026), [anon_sym_PIPE] = ACTIONS(2026), - [anon_sym_LT] = ACTIONS(2029), - [anon_sym__] = ACTIONS(2032), - [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_LT] = ACTIONS(2026), + [anon_sym_DOT_DOT] = ACTIONS(2026), + [anon_sym_COLON_COLON] = ACTIONS(2026), + [anon_sym_POUND] = ACTIONS(2026), + [anon_sym_SQUOTE] = ACTIONS(2028), + [anon_sym_async] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2028), + [anon_sym_enum] = ACTIONS(2028), + [anon_sym_fn] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_impl] = ACTIONS(2028), + [anon_sym_let] = ACTIONS(2028), + [anon_sym_loop] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_mod] = ACTIONS(2028), + [anon_sym_pub] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_static] = ACTIONS(2028), + [anon_sym_struct] = ACTIONS(2028), + [anon_sym_trait] = ACTIONS(2028), + [anon_sym_type] = ACTIONS(2028), + [anon_sym_union] = ACTIONS(2028), + [anon_sym_unsafe] = ACTIONS(2028), + [anon_sym_use] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym_yield] = ACTIONS(2028), + [anon_sym_move] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2028), + [sym_integer_literal] = ACTIONS(2026), + [aux_sym_string_literal_token1] = ACTIONS(2026), + [sym_char_literal] = ACTIONS(2026), + [anon_sym_true] = ACTIONS(2028), + [anon_sym_false] = ACTIONS(2028), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2028), + [sym_super] = ACTIONS(2028), + [sym_crate] = ACTIONS(2028), + [sym_metavariable] = ACTIONS(2026), + [sym__raw_string_literal_start] = ACTIONS(2026), + [sym_float_literal] = ACTIONS(2026), + }, + [571] = { + [sym_line_comment] = STATE(571), + [sym_block_comment] = STATE(571), + [ts_builtin_sym_end] = ACTIONS(2030), + [sym_identifier] = ACTIONS(2032), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_macro_rules_BANG] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_STAR] = ACTIONS(2030), + [anon_sym_u8] = ACTIONS(2032), + [anon_sym_i8] = ACTIONS(2032), + [anon_sym_u16] = ACTIONS(2032), + [anon_sym_i16] = ACTIONS(2032), + [anon_sym_u32] = ACTIONS(2032), + [anon_sym_i32] = ACTIONS(2032), + [anon_sym_u64] = ACTIONS(2032), + [anon_sym_i64] = ACTIONS(2032), + [anon_sym_u128] = ACTIONS(2032), + [anon_sym_i128] = ACTIONS(2032), + [anon_sym_isize] = ACTIONS(2032), + [anon_sym_usize] = ACTIONS(2032), + [anon_sym_f32] = ACTIONS(2032), + [anon_sym_f64] = ACTIONS(2032), + [anon_sym_bool] = ACTIONS(2032), + [anon_sym_str] = ACTIONS(2032), + [anon_sym_char] = ACTIONS(2032), + [anon_sym_DASH] = ACTIONS(2030), + [anon_sym_BANG] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_LT] = ACTIONS(2030), + [anon_sym_DOT_DOT] = ACTIONS(2030), + [anon_sym_COLON_COLON] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(2030), + [anon_sym_SQUOTE] = ACTIONS(2032), + [anon_sym_async] = ACTIONS(2032), + [anon_sym_break] = ACTIONS(2032), + [anon_sym_const] = ACTIONS(2032), + [anon_sym_continue] = ACTIONS(2032), + [anon_sym_default] = ACTIONS(2032), + [anon_sym_enum] = ACTIONS(2032), + [anon_sym_fn] = ACTIONS(2032), + [anon_sym_for] = ACTIONS(2032), + [anon_sym_if] = ACTIONS(2032), + [anon_sym_impl] = ACTIONS(2032), + [anon_sym_let] = ACTIONS(2032), + [anon_sym_loop] = ACTIONS(2032), + [anon_sym_match] = ACTIONS(2032), + [anon_sym_mod] = ACTIONS(2032), + [anon_sym_pub] = ACTIONS(2032), + [anon_sym_return] = ACTIONS(2032), + [anon_sym_static] = ACTIONS(2032), + [anon_sym_struct] = ACTIONS(2032), + [anon_sym_trait] = ACTIONS(2032), + [anon_sym_type] = ACTIONS(2032), + [anon_sym_union] = ACTIONS(2032), + [anon_sym_unsafe] = ACTIONS(2032), + [anon_sym_use] = ACTIONS(2032), + [anon_sym_while] = ACTIONS(2032), + [anon_sym_extern] = ACTIONS(2032), + [anon_sym_yield] = ACTIONS(2032), + [anon_sym_move] = ACTIONS(2032), + [anon_sym_try] = ACTIONS(2032), + [sym_integer_literal] = ACTIONS(2030), + [aux_sym_string_literal_token1] = ACTIONS(2030), + [sym_char_literal] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2032), + [anon_sym_false] = ACTIONS(2032), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2032), + [sym_super] = ACTIONS(2032), + [sym_crate] = ACTIONS(2032), + [sym_metavariable] = ACTIONS(2030), + [sym__raw_string_literal_start] = ACTIONS(2030), + [sym_float_literal] = ACTIONS(2030), + }, + [572] = { + [sym_line_comment] = STATE(572), + [sym_block_comment] = STATE(572), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_macro_rules_BANG] = ACTIONS(2034), + [anon_sym_LPAREN] = ACTIONS(2034), + [anon_sym_LBRACK] = ACTIONS(2034), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_STAR] = ACTIONS(2034), + [anon_sym_u8] = ACTIONS(2036), + [anon_sym_i8] = ACTIONS(2036), + [anon_sym_u16] = ACTIONS(2036), + [anon_sym_i16] = ACTIONS(2036), + [anon_sym_u32] = ACTIONS(2036), + [anon_sym_i32] = ACTIONS(2036), + [anon_sym_u64] = ACTIONS(2036), + [anon_sym_i64] = ACTIONS(2036), + [anon_sym_u128] = ACTIONS(2036), + [anon_sym_i128] = ACTIONS(2036), + [anon_sym_isize] = ACTIONS(2036), + [anon_sym_usize] = ACTIONS(2036), + [anon_sym_f32] = ACTIONS(2036), + [anon_sym_f64] = ACTIONS(2036), + [anon_sym_bool] = ACTIONS(2036), + [anon_sym_str] = ACTIONS(2036), + [anon_sym_char] = ACTIONS(2036), + [anon_sym_DASH] = ACTIONS(2034), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_AMP] = ACTIONS(2034), + [anon_sym_PIPE] = ACTIONS(2034), + [anon_sym_LT] = ACTIONS(2034), + [anon_sym_DOT_DOT] = ACTIONS(2034), + [anon_sym_COLON_COLON] = ACTIONS(2034), + [anon_sym_POUND] = ACTIONS(2034), + [anon_sym_SQUOTE] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [anon_sym_fn] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_impl] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_loop] = ACTIONS(2036), + [anon_sym_match] = ACTIONS(2036), + [anon_sym_mod] = ACTIONS(2036), + [anon_sym_pub] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2036), + [anon_sym_struct] = ACTIONS(2036), + [anon_sym_trait] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_union] = ACTIONS(2036), + [anon_sym_unsafe] = ACTIONS(2036), + [anon_sym_use] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_extern] = ACTIONS(2036), + [anon_sym_yield] = ACTIONS(2036), + [anon_sym_move] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2036), + [sym_integer_literal] = ACTIONS(2034), + [aux_sym_string_literal_token1] = ACTIONS(2034), + [sym_char_literal] = ACTIONS(2034), + [anon_sym_true] = ACTIONS(2036), + [anon_sym_false] = ACTIONS(2036), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2036), + [sym_super] = ACTIONS(2036), + [sym_crate] = ACTIONS(2036), + [sym_metavariable] = ACTIONS(2034), + [sym__raw_string_literal_start] = ACTIONS(2034), + [sym_float_literal] = ACTIONS(2034), + }, + [573] = { + [sym_line_comment] = STATE(573), + [sym_block_comment] = STATE(573), + [ts_builtin_sym_end] = ACTIONS(2038), + [sym_identifier] = ACTIONS(2040), + [anon_sym_SEMI] = ACTIONS(2038), + [anon_sym_macro_rules_BANG] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2038), + [anon_sym_RBRACE] = ACTIONS(2038), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_u8] = ACTIONS(2040), + [anon_sym_i8] = ACTIONS(2040), + [anon_sym_u16] = ACTIONS(2040), + [anon_sym_i16] = ACTIONS(2040), + [anon_sym_u32] = ACTIONS(2040), + [anon_sym_i32] = ACTIONS(2040), + [anon_sym_u64] = ACTIONS(2040), + [anon_sym_i64] = ACTIONS(2040), + [anon_sym_u128] = ACTIONS(2040), + [anon_sym_i128] = ACTIONS(2040), + [anon_sym_isize] = ACTIONS(2040), + [anon_sym_usize] = ACTIONS(2040), + [anon_sym_f32] = ACTIONS(2040), + [anon_sym_f64] = ACTIONS(2040), + [anon_sym_bool] = ACTIONS(2040), + [anon_sym_str] = ACTIONS(2040), + [anon_sym_char] = ACTIONS(2040), + [anon_sym_DASH] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_DOT_DOT] = ACTIONS(2038), [anon_sym_COLON_COLON] = ACTIONS(2038), - [anon_sym_POUND] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(2038), + [anon_sym_SQUOTE] = ACTIONS(2040), + [anon_sym_async] = ACTIONS(2040), + [anon_sym_break] = ACTIONS(2040), + [anon_sym_const] = ACTIONS(2040), + [anon_sym_continue] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2040), + [anon_sym_enum] = ACTIONS(2040), + [anon_sym_fn] = ACTIONS(2040), + [anon_sym_for] = ACTIONS(2040), + [anon_sym_if] = ACTIONS(2040), + [anon_sym_impl] = ACTIONS(2040), + [anon_sym_let] = ACTIONS(2040), + [anon_sym_loop] = ACTIONS(2040), + [anon_sym_match] = ACTIONS(2040), + [anon_sym_mod] = ACTIONS(2040), + [anon_sym_pub] = ACTIONS(2040), + [anon_sym_return] = ACTIONS(2040), + [anon_sym_static] = ACTIONS(2040), + [anon_sym_struct] = ACTIONS(2040), + [anon_sym_trait] = ACTIONS(2040), + [anon_sym_type] = ACTIONS(2040), + [anon_sym_union] = ACTIONS(2040), + [anon_sym_unsafe] = ACTIONS(2040), + [anon_sym_use] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2040), + [anon_sym_extern] = ACTIONS(2040), + [anon_sym_yield] = ACTIONS(2040), + [anon_sym_move] = ACTIONS(2040), + [anon_sym_try] = ACTIONS(2040), + [sym_integer_literal] = ACTIONS(2038), + [aux_sym_string_literal_token1] = ACTIONS(2038), + [sym_char_literal] = ACTIONS(2038), + [anon_sym_true] = ACTIONS(2040), + [anon_sym_false] = ACTIONS(2040), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2040), + [sym_super] = ACTIONS(2040), + [sym_crate] = ACTIONS(2040), + [sym_metavariable] = ACTIONS(2038), + [sym__raw_string_literal_start] = ACTIONS(2038), + [sym_float_literal] = ACTIONS(2038), + }, + [574] = { + [sym_line_comment] = STATE(574), + [sym_block_comment] = STATE(574), + [ts_builtin_sym_end] = ACTIONS(2042), + [sym_identifier] = ACTIONS(2044), + [anon_sym_SEMI] = ACTIONS(2042), + [anon_sym_macro_rules_BANG] = ACTIONS(2042), + [anon_sym_LPAREN] = ACTIONS(2042), + [anon_sym_LBRACK] = ACTIONS(2042), + [anon_sym_LBRACE] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2042), + [anon_sym_STAR] = ACTIONS(2042), + [anon_sym_u8] = ACTIONS(2044), + [anon_sym_i8] = ACTIONS(2044), + [anon_sym_u16] = ACTIONS(2044), + [anon_sym_i16] = ACTIONS(2044), + [anon_sym_u32] = ACTIONS(2044), + [anon_sym_i32] = ACTIONS(2044), + [anon_sym_u64] = ACTIONS(2044), + [anon_sym_i64] = ACTIONS(2044), + [anon_sym_u128] = ACTIONS(2044), + [anon_sym_i128] = ACTIONS(2044), + [anon_sym_isize] = ACTIONS(2044), + [anon_sym_usize] = ACTIONS(2044), + [anon_sym_f32] = ACTIONS(2044), + [anon_sym_f64] = ACTIONS(2044), + [anon_sym_bool] = ACTIONS(2044), + [anon_sym_str] = ACTIONS(2044), + [anon_sym_char] = ACTIONS(2044), + [anon_sym_DASH] = ACTIONS(2042), + [anon_sym_BANG] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2042), + [anon_sym_PIPE] = ACTIONS(2042), + [anon_sym_LT] = ACTIONS(2042), + [anon_sym_DOT_DOT] = ACTIONS(2042), + [anon_sym_COLON_COLON] = ACTIONS(2042), + [anon_sym_POUND] = ACTIONS(2042), + [anon_sym_SQUOTE] = ACTIONS(2044), + [anon_sym_async] = ACTIONS(2044), + [anon_sym_break] = ACTIONS(2044), [anon_sym_const] = ACTIONS(2044), - [anon_sym_default] = ACTIONS(2047), - [anon_sym_union] = ACTIONS(2047), - [anon_sym_ref] = ACTIONS(2050), - [sym_mutable_specifier] = ACTIONS(2053), - [sym_integer_literal] = ACTIONS(2056), - [aux_sym_string_literal_token1] = ACTIONS(2059), - [sym_char_literal] = ACTIONS(2056), - [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(2065), - [sym_super] = ACTIONS(2065), - [sym_crate] = ACTIONS(2065), - [sym_metavariable] = ACTIONS(2068), - [sym__raw_string_literal_start] = ACTIONS(2071), - [sym_float_literal] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2044), + [anon_sym_default] = ACTIONS(2044), + [anon_sym_enum] = ACTIONS(2044), + [anon_sym_fn] = ACTIONS(2044), + [anon_sym_for] = ACTIONS(2044), + [anon_sym_if] = ACTIONS(2044), + [anon_sym_impl] = ACTIONS(2044), + [anon_sym_let] = ACTIONS(2044), + [anon_sym_loop] = ACTIONS(2044), + [anon_sym_match] = ACTIONS(2044), + [anon_sym_mod] = ACTIONS(2044), + [anon_sym_pub] = ACTIONS(2044), + [anon_sym_return] = ACTIONS(2044), + [anon_sym_static] = ACTIONS(2044), + [anon_sym_struct] = ACTIONS(2044), + [anon_sym_trait] = ACTIONS(2044), + [anon_sym_type] = ACTIONS(2044), + [anon_sym_union] = ACTIONS(2044), + [anon_sym_unsafe] = ACTIONS(2044), + [anon_sym_use] = ACTIONS(2044), + [anon_sym_while] = ACTIONS(2044), + [anon_sym_extern] = ACTIONS(2044), + [anon_sym_yield] = ACTIONS(2044), + [anon_sym_move] = ACTIONS(2044), + [anon_sym_try] = ACTIONS(2044), + [sym_integer_literal] = ACTIONS(2042), + [aux_sym_string_literal_token1] = ACTIONS(2042), + [sym_char_literal] = ACTIONS(2042), + [anon_sym_true] = ACTIONS(2044), + [anon_sym_false] = ACTIONS(2044), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2044), + [sym_super] = ACTIONS(2044), + [sym_crate] = ACTIONS(2044), + [sym_metavariable] = ACTIONS(2042), + [sym__raw_string_literal_start] = ACTIONS(2042), + [sym_float_literal] = ACTIONS(2042), }, - [555] = { - [sym_line_comment] = STATE(555), - [sym_block_comment] = STATE(555), + [575] = { + [sym_line_comment] = STATE(575), + [sym_block_comment] = STATE(575), + [ts_builtin_sym_end] = ACTIONS(2046), + [sym_identifier] = ACTIONS(2048), + [anon_sym_SEMI] = ACTIONS(2046), + [anon_sym_macro_rules_BANG] = ACTIONS(2046), + [anon_sym_LPAREN] = ACTIONS(2046), + [anon_sym_LBRACK] = ACTIONS(2046), + [anon_sym_LBRACE] = ACTIONS(2046), + [anon_sym_RBRACE] = ACTIONS(2046), + [anon_sym_STAR] = ACTIONS(2046), + [anon_sym_u8] = ACTIONS(2048), + [anon_sym_i8] = ACTIONS(2048), + [anon_sym_u16] = ACTIONS(2048), + [anon_sym_i16] = ACTIONS(2048), + [anon_sym_u32] = ACTIONS(2048), + [anon_sym_i32] = ACTIONS(2048), + [anon_sym_u64] = ACTIONS(2048), + [anon_sym_i64] = ACTIONS(2048), + [anon_sym_u128] = ACTIONS(2048), + [anon_sym_i128] = ACTIONS(2048), + [anon_sym_isize] = ACTIONS(2048), + [anon_sym_usize] = ACTIONS(2048), + [anon_sym_f32] = ACTIONS(2048), + [anon_sym_f64] = ACTIONS(2048), + [anon_sym_bool] = ACTIONS(2048), + [anon_sym_str] = ACTIONS(2048), + [anon_sym_char] = ACTIONS(2048), + [anon_sym_DASH] = ACTIONS(2046), + [anon_sym_BANG] = ACTIONS(2046), + [anon_sym_AMP] = ACTIONS(2046), + [anon_sym_PIPE] = ACTIONS(2046), + [anon_sym_LT] = ACTIONS(2046), + [anon_sym_DOT_DOT] = ACTIONS(2046), + [anon_sym_COLON_COLON] = ACTIONS(2046), + [anon_sym_POUND] = ACTIONS(2046), + [anon_sym_SQUOTE] = ACTIONS(2048), + [anon_sym_async] = ACTIONS(2048), + [anon_sym_break] = ACTIONS(2048), + [anon_sym_const] = ACTIONS(2048), + [anon_sym_continue] = ACTIONS(2048), + [anon_sym_default] = ACTIONS(2048), + [anon_sym_enum] = ACTIONS(2048), + [anon_sym_fn] = ACTIONS(2048), + [anon_sym_for] = ACTIONS(2048), + [anon_sym_if] = ACTIONS(2048), + [anon_sym_impl] = ACTIONS(2048), + [anon_sym_let] = ACTIONS(2048), + [anon_sym_loop] = ACTIONS(2048), + [anon_sym_match] = ACTIONS(2048), + [anon_sym_mod] = ACTIONS(2048), + [anon_sym_pub] = ACTIONS(2048), + [anon_sym_return] = ACTIONS(2048), + [anon_sym_static] = ACTIONS(2048), + [anon_sym_struct] = ACTIONS(2048), + [anon_sym_trait] = ACTIONS(2048), + [anon_sym_type] = ACTIONS(2048), + [anon_sym_union] = ACTIONS(2048), + [anon_sym_unsafe] = ACTIONS(2048), + [anon_sym_use] = ACTIONS(2048), + [anon_sym_while] = ACTIONS(2048), + [anon_sym_extern] = ACTIONS(2048), + [anon_sym_yield] = ACTIONS(2048), + [anon_sym_move] = ACTIONS(2048), + [anon_sym_try] = ACTIONS(2048), + [sym_integer_literal] = ACTIONS(2046), + [aux_sym_string_literal_token1] = ACTIONS(2046), + [sym_char_literal] = ACTIONS(2046), + [anon_sym_true] = ACTIONS(2048), + [anon_sym_false] = ACTIONS(2048), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2048), + [sym_super] = ACTIONS(2048), + [sym_crate] = ACTIONS(2048), + [sym_metavariable] = ACTIONS(2046), + [sym__raw_string_literal_start] = ACTIONS(2046), + [sym_float_literal] = ACTIONS(2046), + }, + [576] = { + [sym_line_comment] = STATE(576), + [sym_block_comment] = STATE(576), + [ts_builtin_sym_end] = ACTIONS(2050), + [sym_identifier] = ACTIONS(2052), + [anon_sym_SEMI] = ACTIONS(2050), + [anon_sym_macro_rules_BANG] = ACTIONS(2050), + [anon_sym_LPAREN] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(2050), + [anon_sym_LBRACE] = ACTIONS(2050), + [anon_sym_RBRACE] = ACTIONS(2050), + [anon_sym_STAR] = ACTIONS(2050), + [anon_sym_u8] = ACTIONS(2052), + [anon_sym_i8] = ACTIONS(2052), + [anon_sym_u16] = ACTIONS(2052), + [anon_sym_i16] = ACTIONS(2052), + [anon_sym_u32] = ACTIONS(2052), + [anon_sym_i32] = ACTIONS(2052), + [anon_sym_u64] = ACTIONS(2052), + [anon_sym_i64] = ACTIONS(2052), + [anon_sym_u128] = ACTIONS(2052), + [anon_sym_i128] = ACTIONS(2052), + [anon_sym_isize] = ACTIONS(2052), + [anon_sym_usize] = ACTIONS(2052), + [anon_sym_f32] = ACTIONS(2052), + [anon_sym_f64] = ACTIONS(2052), + [anon_sym_bool] = ACTIONS(2052), + [anon_sym_str] = ACTIONS(2052), + [anon_sym_char] = ACTIONS(2052), + [anon_sym_DASH] = ACTIONS(2050), + [anon_sym_BANG] = ACTIONS(2050), + [anon_sym_AMP] = ACTIONS(2050), + [anon_sym_PIPE] = ACTIONS(2050), + [anon_sym_LT] = ACTIONS(2050), + [anon_sym_DOT_DOT] = ACTIONS(2050), + [anon_sym_COLON_COLON] = ACTIONS(2050), + [anon_sym_POUND] = ACTIONS(2050), + [anon_sym_SQUOTE] = ACTIONS(2052), + [anon_sym_async] = ACTIONS(2052), + [anon_sym_break] = ACTIONS(2052), + [anon_sym_const] = ACTIONS(2052), + [anon_sym_continue] = ACTIONS(2052), + [anon_sym_default] = ACTIONS(2052), + [anon_sym_enum] = ACTIONS(2052), + [anon_sym_fn] = ACTIONS(2052), + [anon_sym_for] = ACTIONS(2052), + [anon_sym_if] = ACTIONS(2052), + [anon_sym_impl] = ACTIONS(2052), + [anon_sym_let] = ACTIONS(2052), + [anon_sym_loop] = ACTIONS(2052), + [anon_sym_match] = ACTIONS(2052), + [anon_sym_mod] = ACTIONS(2052), + [anon_sym_pub] = ACTIONS(2052), + [anon_sym_return] = ACTIONS(2052), + [anon_sym_static] = ACTIONS(2052), + [anon_sym_struct] = ACTIONS(2052), + [anon_sym_trait] = ACTIONS(2052), + [anon_sym_type] = ACTIONS(2052), + [anon_sym_union] = ACTIONS(2052), + [anon_sym_unsafe] = ACTIONS(2052), + [anon_sym_use] = ACTIONS(2052), + [anon_sym_while] = ACTIONS(2052), + [anon_sym_extern] = ACTIONS(2052), + [anon_sym_yield] = ACTIONS(2052), + [anon_sym_move] = ACTIONS(2052), + [anon_sym_try] = ACTIONS(2052), + [sym_integer_literal] = ACTIONS(2050), + [aux_sym_string_literal_token1] = ACTIONS(2050), + [sym_char_literal] = ACTIONS(2050), + [anon_sym_true] = ACTIONS(2052), + [anon_sym_false] = ACTIONS(2052), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2052), + [sym_super] = ACTIONS(2052), + [sym_crate] = ACTIONS(2052), + [sym_metavariable] = ACTIONS(2050), + [sym__raw_string_literal_start] = ACTIONS(2050), + [sym_float_literal] = ACTIONS(2050), + }, + [577] = { + [sym_line_comment] = STATE(577), + [sym_block_comment] = STATE(577), + [ts_builtin_sym_end] = ACTIONS(2054), + [sym_identifier] = ACTIONS(2056), + [anon_sym_SEMI] = ACTIONS(2054), + [anon_sym_macro_rules_BANG] = ACTIONS(2054), + [anon_sym_LPAREN] = ACTIONS(2054), + [anon_sym_LBRACK] = ACTIONS(2054), + [anon_sym_LBRACE] = ACTIONS(2054), + [anon_sym_RBRACE] = ACTIONS(2054), + [anon_sym_STAR] = ACTIONS(2054), + [anon_sym_u8] = ACTIONS(2056), + [anon_sym_i8] = ACTIONS(2056), + [anon_sym_u16] = ACTIONS(2056), + [anon_sym_i16] = ACTIONS(2056), + [anon_sym_u32] = ACTIONS(2056), + [anon_sym_i32] = ACTIONS(2056), + [anon_sym_u64] = ACTIONS(2056), + [anon_sym_i64] = ACTIONS(2056), + [anon_sym_u128] = ACTIONS(2056), + [anon_sym_i128] = ACTIONS(2056), + [anon_sym_isize] = ACTIONS(2056), + [anon_sym_usize] = ACTIONS(2056), + [anon_sym_f32] = ACTIONS(2056), + [anon_sym_f64] = ACTIONS(2056), + [anon_sym_bool] = ACTIONS(2056), + [anon_sym_str] = ACTIONS(2056), + [anon_sym_char] = ACTIONS(2056), + [anon_sym_DASH] = ACTIONS(2054), + [anon_sym_BANG] = ACTIONS(2054), + [anon_sym_AMP] = ACTIONS(2054), + [anon_sym_PIPE] = ACTIONS(2054), + [anon_sym_LT] = ACTIONS(2054), + [anon_sym_DOT_DOT] = ACTIONS(2054), + [anon_sym_COLON_COLON] = ACTIONS(2054), + [anon_sym_POUND] = ACTIONS(2054), + [anon_sym_SQUOTE] = ACTIONS(2056), + [anon_sym_async] = ACTIONS(2056), + [anon_sym_break] = ACTIONS(2056), + [anon_sym_const] = ACTIONS(2056), + [anon_sym_continue] = ACTIONS(2056), + [anon_sym_default] = ACTIONS(2056), + [anon_sym_enum] = ACTIONS(2056), + [anon_sym_fn] = ACTIONS(2056), + [anon_sym_for] = ACTIONS(2056), + [anon_sym_if] = ACTIONS(2056), + [anon_sym_impl] = ACTIONS(2056), + [anon_sym_let] = ACTIONS(2056), + [anon_sym_loop] = ACTIONS(2056), + [anon_sym_match] = ACTIONS(2056), + [anon_sym_mod] = ACTIONS(2056), + [anon_sym_pub] = ACTIONS(2056), + [anon_sym_return] = ACTIONS(2056), + [anon_sym_static] = ACTIONS(2056), + [anon_sym_struct] = ACTIONS(2056), + [anon_sym_trait] = ACTIONS(2056), + [anon_sym_type] = ACTIONS(2056), + [anon_sym_union] = ACTIONS(2056), + [anon_sym_unsafe] = ACTIONS(2056), + [anon_sym_use] = ACTIONS(2056), + [anon_sym_while] = ACTIONS(2056), + [anon_sym_extern] = ACTIONS(2056), + [anon_sym_yield] = ACTIONS(2056), + [anon_sym_move] = ACTIONS(2056), + [anon_sym_try] = ACTIONS(2056), + [sym_integer_literal] = ACTIONS(2054), + [aux_sym_string_literal_token1] = ACTIONS(2054), + [sym_char_literal] = ACTIONS(2054), + [anon_sym_true] = ACTIONS(2056), + [anon_sym_false] = ACTIONS(2056), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2056), + [sym_super] = ACTIONS(2056), + [sym_crate] = ACTIONS(2056), + [sym_metavariable] = ACTIONS(2054), + [sym__raw_string_literal_start] = ACTIONS(2054), + [sym_float_literal] = ACTIONS(2054), + }, + [578] = { + [sym_line_comment] = STATE(578), + [sym_block_comment] = STATE(578), + [ts_builtin_sym_end] = ACTIONS(2058), + [sym_identifier] = ACTIONS(2060), + [anon_sym_SEMI] = ACTIONS(2058), + [anon_sym_macro_rules_BANG] = ACTIONS(2058), + [anon_sym_LPAREN] = ACTIONS(2058), + [anon_sym_LBRACK] = ACTIONS(2058), + [anon_sym_LBRACE] = ACTIONS(2058), + [anon_sym_RBRACE] = ACTIONS(2058), + [anon_sym_STAR] = ACTIONS(2058), + [anon_sym_u8] = ACTIONS(2060), + [anon_sym_i8] = ACTIONS(2060), + [anon_sym_u16] = ACTIONS(2060), + [anon_sym_i16] = ACTIONS(2060), + [anon_sym_u32] = ACTIONS(2060), + [anon_sym_i32] = ACTIONS(2060), + [anon_sym_u64] = ACTIONS(2060), + [anon_sym_i64] = ACTIONS(2060), + [anon_sym_u128] = ACTIONS(2060), + [anon_sym_i128] = ACTIONS(2060), + [anon_sym_isize] = ACTIONS(2060), + [anon_sym_usize] = ACTIONS(2060), + [anon_sym_f32] = ACTIONS(2060), + [anon_sym_f64] = ACTIONS(2060), + [anon_sym_bool] = ACTIONS(2060), + [anon_sym_str] = ACTIONS(2060), + [anon_sym_char] = ACTIONS(2060), + [anon_sym_DASH] = ACTIONS(2058), + [anon_sym_BANG] = ACTIONS(2058), + [anon_sym_AMP] = ACTIONS(2058), + [anon_sym_PIPE] = ACTIONS(2058), + [anon_sym_LT] = ACTIONS(2058), + [anon_sym_DOT_DOT] = ACTIONS(2058), + [anon_sym_COLON_COLON] = ACTIONS(2058), + [anon_sym_POUND] = ACTIONS(2058), + [anon_sym_SQUOTE] = ACTIONS(2060), + [anon_sym_async] = ACTIONS(2060), + [anon_sym_break] = ACTIONS(2060), + [anon_sym_const] = ACTIONS(2060), + [anon_sym_continue] = ACTIONS(2060), + [anon_sym_default] = ACTIONS(2060), + [anon_sym_enum] = ACTIONS(2060), + [anon_sym_fn] = ACTIONS(2060), + [anon_sym_for] = ACTIONS(2060), + [anon_sym_if] = ACTIONS(2060), + [anon_sym_impl] = ACTIONS(2060), + [anon_sym_let] = ACTIONS(2060), + [anon_sym_loop] = ACTIONS(2060), + [anon_sym_match] = ACTIONS(2060), + [anon_sym_mod] = ACTIONS(2060), + [anon_sym_pub] = ACTIONS(2060), + [anon_sym_return] = ACTIONS(2060), + [anon_sym_static] = ACTIONS(2060), + [anon_sym_struct] = ACTIONS(2060), + [anon_sym_trait] = ACTIONS(2060), + [anon_sym_type] = ACTIONS(2060), + [anon_sym_union] = ACTIONS(2060), + [anon_sym_unsafe] = ACTIONS(2060), + [anon_sym_use] = ACTIONS(2060), + [anon_sym_while] = ACTIONS(2060), + [anon_sym_extern] = ACTIONS(2060), + [anon_sym_yield] = ACTIONS(2060), + [anon_sym_move] = ACTIONS(2060), + [anon_sym_try] = ACTIONS(2060), + [sym_integer_literal] = ACTIONS(2058), + [aux_sym_string_literal_token1] = ACTIONS(2058), + [sym_char_literal] = ACTIONS(2058), + [anon_sym_true] = ACTIONS(2060), + [anon_sym_false] = ACTIONS(2060), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2060), + [sym_super] = ACTIONS(2060), + [sym_crate] = ACTIONS(2060), + [sym_metavariable] = ACTIONS(2058), + [sym__raw_string_literal_start] = ACTIONS(2058), + [sym_float_literal] = ACTIONS(2058), + }, + [579] = { + [sym_line_comment] = STATE(579), + [sym_block_comment] = STATE(579), + [ts_builtin_sym_end] = ACTIONS(2062), + [sym_identifier] = ACTIONS(2064), + [anon_sym_SEMI] = ACTIONS(2062), + [anon_sym_macro_rules_BANG] = ACTIONS(2062), + [anon_sym_LPAREN] = ACTIONS(2062), + [anon_sym_LBRACK] = ACTIONS(2062), + [anon_sym_LBRACE] = ACTIONS(2062), + [anon_sym_RBRACE] = ACTIONS(2062), + [anon_sym_STAR] = ACTIONS(2062), + [anon_sym_u8] = ACTIONS(2064), + [anon_sym_i8] = ACTIONS(2064), + [anon_sym_u16] = ACTIONS(2064), + [anon_sym_i16] = ACTIONS(2064), + [anon_sym_u32] = ACTIONS(2064), + [anon_sym_i32] = ACTIONS(2064), + [anon_sym_u64] = ACTIONS(2064), + [anon_sym_i64] = ACTIONS(2064), + [anon_sym_u128] = ACTIONS(2064), + [anon_sym_i128] = ACTIONS(2064), + [anon_sym_isize] = ACTIONS(2064), + [anon_sym_usize] = ACTIONS(2064), + [anon_sym_f32] = ACTIONS(2064), + [anon_sym_f64] = ACTIONS(2064), + [anon_sym_bool] = ACTIONS(2064), + [anon_sym_str] = ACTIONS(2064), + [anon_sym_char] = ACTIONS(2064), + [anon_sym_DASH] = ACTIONS(2062), + [anon_sym_BANG] = ACTIONS(2062), + [anon_sym_AMP] = ACTIONS(2062), + [anon_sym_PIPE] = ACTIONS(2062), + [anon_sym_LT] = ACTIONS(2062), + [anon_sym_DOT_DOT] = ACTIONS(2062), + [anon_sym_COLON_COLON] = ACTIONS(2062), + [anon_sym_POUND] = ACTIONS(2062), + [anon_sym_SQUOTE] = ACTIONS(2064), + [anon_sym_async] = ACTIONS(2064), + [anon_sym_break] = ACTIONS(2064), + [anon_sym_const] = ACTIONS(2064), + [anon_sym_continue] = ACTIONS(2064), + [anon_sym_default] = ACTIONS(2064), + [anon_sym_enum] = ACTIONS(2064), + [anon_sym_fn] = ACTIONS(2064), + [anon_sym_for] = ACTIONS(2064), + [anon_sym_if] = ACTIONS(2064), + [anon_sym_impl] = ACTIONS(2064), + [anon_sym_let] = ACTIONS(2064), + [anon_sym_loop] = ACTIONS(2064), + [anon_sym_match] = ACTIONS(2064), + [anon_sym_mod] = ACTIONS(2064), + [anon_sym_pub] = ACTIONS(2064), + [anon_sym_return] = ACTIONS(2064), + [anon_sym_static] = ACTIONS(2064), + [anon_sym_struct] = ACTIONS(2064), + [anon_sym_trait] = ACTIONS(2064), + [anon_sym_type] = ACTIONS(2064), + [anon_sym_union] = ACTIONS(2064), + [anon_sym_unsafe] = ACTIONS(2064), + [anon_sym_use] = ACTIONS(2064), + [anon_sym_while] = ACTIONS(2064), + [anon_sym_extern] = ACTIONS(2064), + [anon_sym_yield] = ACTIONS(2064), + [anon_sym_move] = ACTIONS(2064), + [anon_sym_try] = ACTIONS(2064), + [sym_integer_literal] = ACTIONS(2062), + [aux_sym_string_literal_token1] = ACTIONS(2062), + [sym_char_literal] = ACTIONS(2062), + [anon_sym_true] = ACTIONS(2064), + [anon_sym_false] = ACTIONS(2064), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2064), + [sym_super] = ACTIONS(2064), + [sym_crate] = ACTIONS(2064), + [sym_metavariable] = ACTIONS(2062), + [sym__raw_string_literal_start] = ACTIONS(2062), + [sym_float_literal] = ACTIONS(2062), + }, + [580] = { + [sym_line_comment] = STATE(580), + [sym_block_comment] = STATE(580), + [ts_builtin_sym_end] = ACTIONS(2066), + [sym_identifier] = ACTIONS(2068), + [anon_sym_SEMI] = ACTIONS(2066), + [anon_sym_macro_rules_BANG] = ACTIONS(2066), + [anon_sym_LPAREN] = ACTIONS(2066), + [anon_sym_LBRACK] = ACTIONS(2066), + [anon_sym_LBRACE] = ACTIONS(2066), + [anon_sym_RBRACE] = ACTIONS(2066), + [anon_sym_STAR] = ACTIONS(2066), + [anon_sym_u8] = ACTIONS(2068), + [anon_sym_i8] = ACTIONS(2068), + [anon_sym_u16] = ACTIONS(2068), + [anon_sym_i16] = ACTIONS(2068), + [anon_sym_u32] = ACTIONS(2068), + [anon_sym_i32] = ACTIONS(2068), + [anon_sym_u64] = ACTIONS(2068), + [anon_sym_i64] = ACTIONS(2068), + [anon_sym_u128] = ACTIONS(2068), + [anon_sym_i128] = ACTIONS(2068), + [anon_sym_isize] = ACTIONS(2068), + [anon_sym_usize] = ACTIONS(2068), + [anon_sym_f32] = ACTIONS(2068), + [anon_sym_f64] = ACTIONS(2068), + [anon_sym_bool] = ACTIONS(2068), + [anon_sym_str] = ACTIONS(2068), + [anon_sym_char] = ACTIONS(2068), + [anon_sym_DASH] = ACTIONS(2066), + [anon_sym_BANG] = ACTIONS(2066), + [anon_sym_AMP] = ACTIONS(2066), + [anon_sym_PIPE] = ACTIONS(2066), + [anon_sym_LT] = ACTIONS(2066), + [anon_sym_DOT_DOT] = ACTIONS(2066), + [anon_sym_COLON_COLON] = ACTIONS(2066), + [anon_sym_POUND] = ACTIONS(2066), + [anon_sym_SQUOTE] = ACTIONS(2068), + [anon_sym_async] = ACTIONS(2068), + [anon_sym_break] = ACTIONS(2068), + [anon_sym_const] = ACTIONS(2068), + [anon_sym_continue] = ACTIONS(2068), + [anon_sym_default] = ACTIONS(2068), + [anon_sym_enum] = ACTIONS(2068), + [anon_sym_fn] = ACTIONS(2068), + [anon_sym_for] = ACTIONS(2068), + [anon_sym_if] = ACTIONS(2068), + [anon_sym_impl] = ACTIONS(2068), + [anon_sym_let] = ACTIONS(2068), + [anon_sym_loop] = ACTIONS(2068), + [anon_sym_match] = ACTIONS(2068), + [anon_sym_mod] = ACTIONS(2068), + [anon_sym_pub] = ACTIONS(2068), + [anon_sym_return] = ACTIONS(2068), + [anon_sym_static] = ACTIONS(2068), + [anon_sym_struct] = ACTIONS(2068), + [anon_sym_trait] = ACTIONS(2068), + [anon_sym_type] = ACTIONS(2068), + [anon_sym_union] = ACTIONS(2068), + [anon_sym_unsafe] = ACTIONS(2068), + [anon_sym_use] = ACTIONS(2068), + [anon_sym_while] = ACTIONS(2068), + [anon_sym_extern] = ACTIONS(2068), + [anon_sym_yield] = ACTIONS(2068), + [anon_sym_move] = ACTIONS(2068), + [anon_sym_try] = ACTIONS(2068), + [sym_integer_literal] = ACTIONS(2066), + [aux_sym_string_literal_token1] = ACTIONS(2066), + [sym_char_literal] = ACTIONS(2066), + [anon_sym_true] = ACTIONS(2068), + [anon_sym_false] = ACTIONS(2068), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2068), + [sym_super] = ACTIONS(2068), + [sym_crate] = ACTIONS(2068), + [sym_metavariable] = ACTIONS(2066), + [sym__raw_string_literal_start] = ACTIONS(2066), + [sym_float_literal] = ACTIONS(2066), + }, + [581] = { + [sym_line_comment] = STATE(581), + [sym_block_comment] = STATE(581), + [ts_builtin_sym_end] = ACTIONS(2070), + [sym_identifier] = ACTIONS(2072), + [anon_sym_SEMI] = ACTIONS(2070), + [anon_sym_macro_rules_BANG] = ACTIONS(2070), + [anon_sym_LPAREN] = ACTIONS(2070), + [anon_sym_LBRACK] = ACTIONS(2070), + [anon_sym_LBRACE] = ACTIONS(2070), + [anon_sym_RBRACE] = ACTIONS(2070), + [anon_sym_STAR] = ACTIONS(2070), + [anon_sym_u8] = ACTIONS(2072), + [anon_sym_i8] = ACTIONS(2072), + [anon_sym_u16] = ACTIONS(2072), + [anon_sym_i16] = ACTIONS(2072), + [anon_sym_u32] = ACTIONS(2072), + [anon_sym_i32] = ACTIONS(2072), + [anon_sym_u64] = ACTIONS(2072), + [anon_sym_i64] = ACTIONS(2072), + [anon_sym_u128] = ACTIONS(2072), + [anon_sym_i128] = ACTIONS(2072), + [anon_sym_isize] = ACTIONS(2072), + [anon_sym_usize] = ACTIONS(2072), + [anon_sym_f32] = ACTIONS(2072), + [anon_sym_f64] = ACTIONS(2072), + [anon_sym_bool] = ACTIONS(2072), + [anon_sym_str] = ACTIONS(2072), + [anon_sym_char] = ACTIONS(2072), + [anon_sym_DASH] = ACTIONS(2070), + [anon_sym_BANG] = ACTIONS(2070), + [anon_sym_AMP] = ACTIONS(2070), + [anon_sym_PIPE] = ACTIONS(2070), + [anon_sym_LT] = ACTIONS(2070), + [anon_sym_DOT_DOT] = ACTIONS(2070), + [anon_sym_COLON_COLON] = ACTIONS(2070), + [anon_sym_POUND] = ACTIONS(2070), + [anon_sym_SQUOTE] = ACTIONS(2072), + [anon_sym_async] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_default] = ACTIONS(2072), + [anon_sym_enum] = ACTIONS(2072), + [anon_sym_fn] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_impl] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_loop] = ACTIONS(2072), + [anon_sym_match] = ACTIONS(2072), + [anon_sym_mod] = ACTIONS(2072), + [anon_sym_pub] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_static] = ACTIONS(2072), + [anon_sym_struct] = ACTIONS(2072), + [anon_sym_trait] = ACTIONS(2072), + [anon_sym_type] = ACTIONS(2072), + [anon_sym_union] = ACTIONS(2072), + [anon_sym_unsafe] = ACTIONS(2072), + [anon_sym_use] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym_yield] = ACTIONS(2072), + [anon_sym_move] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [sym_integer_literal] = ACTIONS(2070), + [aux_sym_string_literal_token1] = ACTIONS(2070), + [sym_char_literal] = ACTIONS(2070), + [anon_sym_true] = ACTIONS(2072), + [anon_sym_false] = ACTIONS(2072), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2072), + [sym_super] = ACTIONS(2072), + [sym_crate] = ACTIONS(2072), + [sym_metavariable] = ACTIONS(2070), + [sym__raw_string_literal_start] = ACTIONS(2070), + [sym_float_literal] = ACTIONS(2070), + }, + [582] = { + [sym_line_comment] = STATE(582), + [sym_block_comment] = STATE(582), [ts_builtin_sym_end] = ACTIONS(2074), [sym_identifier] = ACTIONS(2076), [anon_sym_SEMI] = ACTIONS(2074), @@ -74664,9 +76845,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2074), [sym_float_literal] = ACTIONS(2074), }, - [556] = { - [sym_line_comment] = STATE(556), - [sym_block_comment] = STATE(556), + [583] = { + [sym_line_comment] = STATE(583), + [sym_block_comment] = STATE(583), [ts_builtin_sym_end] = ACTIONS(2078), [sym_identifier] = ACTIONS(2080), [anon_sym_SEMI] = ACTIONS(2078), @@ -74744,9 +76925,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2078), [sym_float_literal] = ACTIONS(2078), }, - [557] = { - [sym_line_comment] = STATE(557), - [sym_block_comment] = STATE(557), + [584] = { + [sym_line_comment] = STATE(584), + [sym_block_comment] = STATE(584), [ts_builtin_sym_end] = ACTIONS(2082), [sym_identifier] = ACTIONS(2084), [anon_sym_SEMI] = ACTIONS(2082), @@ -74824,9 +77005,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2082), [sym_float_literal] = ACTIONS(2082), }, - [558] = { - [sym_line_comment] = STATE(558), - [sym_block_comment] = STATE(558), + [585] = { + [sym_line_comment] = STATE(585), + [sym_block_comment] = STATE(585), [ts_builtin_sym_end] = ACTIONS(2086), [sym_identifier] = ACTIONS(2088), [anon_sym_SEMI] = ACTIONS(2086), @@ -74904,9 +77085,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2086), [sym_float_literal] = ACTIONS(2086), }, - [559] = { - [sym_line_comment] = STATE(559), - [sym_block_comment] = STATE(559), + [586] = { + [sym_line_comment] = STATE(586), + [sym_block_comment] = STATE(586), [ts_builtin_sym_end] = ACTIONS(2090), [sym_identifier] = ACTIONS(2092), [anon_sym_SEMI] = ACTIONS(2090), @@ -74984,9 +77165,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2090), [sym_float_literal] = ACTIONS(2090), }, - [560] = { - [sym_line_comment] = STATE(560), - [sym_block_comment] = STATE(560), + [587] = { + [sym_line_comment] = STATE(587), + [sym_block_comment] = STATE(587), [ts_builtin_sym_end] = ACTIONS(2094), [sym_identifier] = ACTIONS(2096), [anon_sym_SEMI] = ACTIONS(2094), @@ -75064,9 +77245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2094), [sym_float_literal] = ACTIONS(2094), }, - [561] = { - [sym_line_comment] = STATE(561), - [sym_block_comment] = STATE(561), + [588] = { + [sym_line_comment] = STATE(588), + [sym_block_comment] = STATE(588), [ts_builtin_sym_end] = ACTIONS(2098), [sym_identifier] = ACTIONS(2100), [anon_sym_SEMI] = ACTIONS(2098), @@ -75144,9 +77325,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2098), [sym_float_literal] = ACTIONS(2098), }, - [562] = { - [sym_line_comment] = STATE(562), - [sym_block_comment] = STATE(562), + [589] = { + [sym_line_comment] = STATE(589), + [sym_block_comment] = STATE(589), [ts_builtin_sym_end] = ACTIONS(2102), [sym_identifier] = ACTIONS(2104), [anon_sym_SEMI] = ACTIONS(2102), @@ -75224,9 +77405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2102), [sym_float_literal] = ACTIONS(2102), }, - [563] = { - [sym_line_comment] = STATE(563), - [sym_block_comment] = STATE(563), + [590] = { + [sym_line_comment] = STATE(590), + [sym_block_comment] = STATE(590), [ts_builtin_sym_end] = ACTIONS(2106), [sym_identifier] = ACTIONS(2108), [anon_sym_SEMI] = ACTIONS(2106), @@ -75304,9 +77485,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2106), [sym_float_literal] = ACTIONS(2106), }, - [564] = { - [sym_line_comment] = STATE(564), - [sym_block_comment] = STATE(564), + [591] = { + [sym_line_comment] = STATE(591), + [sym_block_comment] = STATE(591), [ts_builtin_sym_end] = ACTIONS(2110), [sym_identifier] = ACTIONS(2112), [anon_sym_SEMI] = ACTIONS(2110), @@ -75384,9 +77565,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2110), [sym_float_literal] = ACTIONS(2110), }, - [565] = { - [sym_line_comment] = STATE(565), - [sym_block_comment] = STATE(565), + [592] = { + [sym_line_comment] = STATE(592), + [sym_block_comment] = STATE(592), [ts_builtin_sym_end] = ACTIONS(2114), [sym_identifier] = ACTIONS(2116), [anon_sym_SEMI] = ACTIONS(2114), @@ -75464,9 +77645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2114), [sym_float_literal] = ACTIONS(2114), }, - [566] = { - [sym_line_comment] = STATE(566), - [sym_block_comment] = STATE(566), + [593] = { + [sym_line_comment] = STATE(593), + [sym_block_comment] = STATE(593), [ts_builtin_sym_end] = ACTIONS(2118), [sym_identifier] = ACTIONS(2120), [anon_sym_SEMI] = ACTIONS(2118), @@ -75544,9 +77725,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2118), [sym_float_literal] = ACTIONS(2118), }, - [567] = { - [sym_line_comment] = STATE(567), - [sym_block_comment] = STATE(567), + [594] = { + [sym_line_comment] = STATE(594), + [sym_block_comment] = STATE(594), [ts_builtin_sym_end] = ACTIONS(2122), [sym_identifier] = ACTIONS(2124), [anon_sym_SEMI] = ACTIONS(2122), @@ -75624,9 +77805,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2122), [sym_float_literal] = ACTIONS(2122), }, - [568] = { - [sym_line_comment] = STATE(568), - [sym_block_comment] = STATE(568), + [595] = { + [sym_line_comment] = STATE(595), + [sym_block_comment] = STATE(595), [ts_builtin_sym_end] = ACTIONS(2126), [sym_identifier] = ACTIONS(2128), [anon_sym_SEMI] = ACTIONS(2126), @@ -75704,9 +77885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2126), [sym_float_literal] = ACTIONS(2126), }, - [569] = { - [sym_line_comment] = STATE(569), - [sym_block_comment] = STATE(569), + [596] = { + [sym_line_comment] = STATE(596), + [sym_block_comment] = STATE(596), [ts_builtin_sym_end] = ACTIONS(2130), [sym_identifier] = ACTIONS(2132), [anon_sym_SEMI] = ACTIONS(2130), @@ -75784,9 +77965,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2130), [sym_float_literal] = ACTIONS(2130), }, - [570] = { - [sym_line_comment] = STATE(570), - [sym_block_comment] = STATE(570), + [597] = { + [sym_line_comment] = STATE(597), + [sym_block_comment] = STATE(597), [ts_builtin_sym_end] = ACTIONS(2134), [sym_identifier] = ACTIONS(2136), [anon_sym_SEMI] = ACTIONS(2134), @@ -75864,9 +78045,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2134), [sym_float_literal] = ACTIONS(2134), }, - [571] = { - [sym_line_comment] = STATE(571), - [sym_block_comment] = STATE(571), + [598] = { + [sym_line_comment] = STATE(598), + [sym_block_comment] = STATE(598), [ts_builtin_sym_end] = ACTIONS(2138), [sym_identifier] = ACTIONS(2140), [anon_sym_SEMI] = ACTIONS(2138), @@ -75944,9 +78125,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2138), [sym_float_literal] = ACTIONS(2138), }, - [572] = { - [sym_line_comment] = STATE(572), - [sym_block_comment] = STATE(572), + [599] = { + [sym_line_comment] = STATE(599), + [sym_block_comment] = STATE(599), [ts_builtin_sym_end] = ACTIONS(2142), [sym_identifier] = ACTIONS(2144), [anon_sym_SEMI] = ACTIONS(2142), @@ -76024,9 +78205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2142), [sym_float_literal] = ACTIONS(2142), }, - [573] = { - [sym_line_comment] = STATE(573), - [sym_block_comment] = STATE(573), + [600] = { + [sym_line_comment] = STATE(600), + [sym_block_comment] = STATE(600), [ts_builtin_sym_end] = ACTIONS(2146), [sym_identifier] = ACTIONS(2148), [anon_sym_SEMI] = ACTIONS(2146), @@ -76104,9 +78285,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2146), [sym_float_literal] = ACTIONS(2146), }, - [574] = { - [sym_line_comment] = STATE(574), - [sym_block_comment] = STATE(574), + [601] = { + [sym_line_comment] = STATE(601), + [sym_block_comment] = STATE(601), [ts_builtin_sym_end] = ACTIONS(2150), [sym_identifier] = ACTIONS(2152), [anon_sym_SEMI] = ACTIONS(2150), @@ -76184,9 +78365,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2150), [sym_float_literal] = ACTIONS(2150), }, - [575] = { - [sym_line_comment] = STATE(575), - [sym_block_comment] = STATE(575), + [602] = { + [sym_line_comment] = STATE(602), + [sym_block_comment] = STATE(602), [ts_builtin_sym_end] = ACTIONS(2154), [sym_identifier] = ACTIONS(2156), [anon_sym_SEMI] = ACTIONS(2154), @@ -76264,89 +78445,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2154), [sym_float_literal] = ACTIONS(2154), }, - [576] = { - [sym_line_comment] = STATE(576), - [sym_block_comment] = STATE(576), - [ts_builtin_sym_end] = ACTIONS(1240), - [sym_identifier] = ACTIONS(1242), - [anon_sym_SEMI] = ACTIONS(1240), - [anon_sym_macro_rules_BANG] = ACTIONS(1240), - [anon_sym_LPAREN] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1240), - [anon_sym_LBRACE] = ACTIONS(1240), - [anon_sym_RBRACE] = ACTIONS(1240), - [anon_sym_STAR] = ACTIONS(1240), - [anon_sym_u8] = ACTIONS(1242), - [anon_sym_i8] = ACTIONS(1242), - [anon_sym_u16] = ACTIONS(1242), - [anon_sym_i16] = ACTIONS(1242), - [anon_sym_u32] = ACTIONS(1242), - [anon_sym_i32] = ACTIONS(1242), - [anon_sym_u64] = ACTIONS(1242), - [anon_sym_i64] = ACTIONS(1242), - [anon_sym_u128] = ACTIONS(1242), - [anon_sym_i128] = ACTIONS(1242), - [anon_sym_isize] = ACTIONS(1242), - [anon_sym_usize] = ACTIONS(1242), - [anon_sym_f32] = ACTIONS(1242), - [anon_sym_f64] = ACTIONS(1242), - [anon_sym_bool] = ACTIONS(1242), - [anon_sym_str] = ACTIONS(1242), - [anon_sym_char] = ACTIONS(1242), - [anon_sym_DASH] = ACTIONS(1240), - [anon_sym_BANG] = ACTIONS(1240), - [anon_sym_AMP] = ACTIONS(1240), - [anon_sym_PIPE] = ACTIONS(1240), - [anon_sym_LT] = ACTIONS(1240), - [anon_sym_DOT_DOT] = ACTIONS(1240), - [anon_sym_COLON_COLON] = ACTIONS(1240), - [anon_sym_POUND] = ACTIONS(1240), - [anon_sym_SQUOTE] = ACTIONS(1242), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_break] = ACTIONS(1242), - [anon_sym_const] = ACTIONS(1242), - [anon_sym_continue] = ACTIONS(1242), - [anon_sym_default] = ACTIONS(1242), - [anon_sym_enum] = ACTIONS(1242), - [anon_sym_fn] = ACTIONS(1242), - [anon_sym_for] = ACTIONS(1242), - [anon_sym_if] = ACTIONS(1242), - [anon_sym_impl] = ACTIONS(1242), - [anon_sym_let] = ACTIONS(1242), - [anon_sym_loop] = ACTIONS(1242), - [anon_sym_match] = ACTIONS(1242), - [anon_sym_mod] = ACTIONS(1242), - [anon_sym_pub] = ACTIONS(1242), - [anon_sym_return] = ACTIONS(1242), - [anon_sym_static] = ACTIONS(1242), - [anon_sym_struct] = ACTIONS(1242), - [anon_sym_trait] = ACTIONS(1242), - [anon_sym_type] = ACTIONS(1242), - [anon_sym_union] = ACTIONS(1242), - [anon_sym_unsafe] = ACTIONS(1242), - [anon_sym_use] = ACTIONS(1242), - [anon_sym_while] = ACTIONS(1242), - [anon_sym_extern] = ACTIONS(1242), - [anon_sym_yield] = ACTIONS(1242), - [anon_sym_move] = ACTIONS(1242), - [anon_sym_try] = ACTIONS(1242), - [sym_integer_literal] = ACTIONS(1240), - [aux_sym_string_literal_token1] = ACTIONS(1240), - [sym_char_literal] = ACTIONS(1240), - [anon_sym_true] = ACTIONS(1242), - [anon_sym_false] = ACTIONS(1242), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1242), - [sym_super] = ACTIONS(1242), - [sym_crate] = ACTIONS(1242), - [sym_metavariable] = ACTIONS(1240), - [sym__raw_string_literal_start] = ACTIONS(1240), - [sym_float_literal] = ACTIONS(1240), - }, - [577] = { - [sym_line_comment] = STATE(577), - [sym_block_comment] = STATE(577), + [603] = { + [sym_line_comment] = STATE(603), + [sym_block_comment] = STATE(603), [ts_builtin_sym_end] = ACTIONS(2158), [sym_identifier] = ACTIONS(2160), [anon_sym_SEMI] = ACTIONS(2158), @@ -76424,9 +78525,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2158), [sym_float_literal] = ACTIONS(2158), }, - [578] = { - [sym_line_comment] = STATE(578), - [sym_block_comment] = STATE(578), + [604] = { + [sym_line_comment] = STATE(604), + [sym_block_comment] = STATE(604), [ts_builtin_sym_end] = ACTIONS(2162), [sym_identifier] = ACTIONS(2164), [anon_sym_SEMI] = ACTIONS(2162), @@ -76504,9 +78605,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2162), [sym_float_literal] = ACTIONS(2162), }, - [579] = { - [sym_line_comment] = STATE(579), - [sym_block_comment] = STATE(579), + [605] = { + [sym_line_comment] = STATE(605), + [sym_block_comment] = STATE(605), [ts_builtin_sym_end] = ACTIONS(2166), [sym_identifier] = ACTIONS(2168), [anon_sym_SEMI] = ACTIONS(2166), @@ -76584,9 +78685,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2166), [sym_float_literal] = ACTIONS(2166), }, - [580] = { - [sym_line_comment] = STATE(580), - [sym_block_comment] = STATE(580), + [606] = { + [sym_line_comment] = STATE(606), + [sym_block_comment] = STATE(606), [ts_builtin_sym_end] = ACTIONS(2170), [sym_identifier] = ACTIONS(2172), [anon_sym_SEMI] = ACTIONS(2170), @@ -76664,9 +78765,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2170), [sym_float_literal] = ACTIONS(2170), }, - [581] = { - [sym_line_comment] = STATE(581), - [sym_block_comment] = STATE(581), + [607] = { + [sym_line_comment] = STATE(607), + [sym_block_comment] = STATE(607), [ts_builtin_sym_end] = ACTIONS(2174), [sym_identifier] = ACTIONS(2176), [anon_sym_SEMI] = ACTIONS(2174), @@ -76744,9 +78845,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2174), [sym_float_literal] = ACTIONS(2174), }, - [582] = { - [sym_line_comment] = STATE(582), - [sym_block_comment] = STATE(582), + [608] = { + [sym_line_comment] = STATE(608), + [sym_block_comment] = STATE(608), [ts_builtin_sym_end] = ACTIONS(2178), [sym_identifier] = ACTIONS(2180), [anon_sym_SEMI] = ACTIONS(2178), @@ -76824,9 +78925,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2178), [sym_float_literal] = ACTIONS(2178), }, - [583] = { - [sym_line_comment] = STATE(583), - [sym_block_comment] = STATE(583), + [609] = { + [sym_line_comment] = STATE(609), + [sym_block_comment] = STATE(609), [ts_builtin_sym_end] = ACTIONS(2182), [sym_identifier] = ACTIONS(2184), [anon_sym_SEMI] = ACTIONS(2182), @@ -76904,9 +79005,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2182), [sym_float_literal] = ACTIONS(2182), }, - [584] = { - [sym_line_comment] = STATE(584), - [sym_block_comment] = STATE(584), + [610] = { + [sym_line_comment] = STATE(610), + [sym_block_comment] = STATE(610), [ts_builtin_sym_end] = ACTIONS(2186), [sym_identifier] = ACTIONS(2188), [anon_sym_SEMI] = ACTIONS(2186), @@ -76984,9 +79085,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2186), [sym_float_literal] = ACTIONS(2186), }, - [585] = { - [sym_line_comment] = STATE(585), - [sym_block_comment] = STATE(585), + [611] = { + [sym_line_comment] = STATE(611), + [sym_block_comment] = STATE(611), [ts_builtin_sym_end] = ACTIONS(2190), [sym_identifier] = ACTIONS(2192), [anon_sym_SEMI] = ACTIONS(2190), @@ -77064,9 +79165,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2190), [sym_float_literal] = ACTIONS(2190), }, - [586] = { - [sym_line_comment] = STATE(586), - [sym_block_comment] = STATE(586), + [612] = { + [sym_line_comment] = STATE(612), + [sym_block_comment] = STATE(612), [ts_builtin_sym_end] = ACTIONS(2194), [sym_identifier] = ACTIONS(2196), [anon_sym_SEMI] = ACTIONS(2194), @@ -77144,9 +79245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2194), [sym_float_literal] = ACTIONS(2194), }, - [587] = { - [sym_line_comment] = STATE(587), - [sym_block_comment] = STATE(587), + [613] = { + [sym_line_comment] = STATE(613), + [sym_block_comment] = STATE(613), [ts_builtin_sym_end] = ACTIONS(2198), [sym_identifier] = ACTIONS(2200), [anon_sym_SEMI] = ACTIONS(2198), @@ -77224,9 +79325,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2198), [sym_float_literal] = ACTIONS(2198), }, - [588] = { - [sym_line_comment] = STATE(588), - [sym_block_comment] = STATE(588), + [614] = { + [sym_line_comment] = STATE(614), + [sym_block_comment] = STATE(614), [ts_builtin_sym_end] = ACTIONS(2202), [sym_identifier] = ACTIONS(2204), [anon_sym_SEMI] = ACTIONS(2202), @@ -77304,9 +79405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2202), [sym_float_literal] = ACTIONS(2202), }, - [589] = { - [sym_line_comment] = STATE(589), - [sym_block_comment] = STATE(589), + [615] = { + [sym_line_comment] = STATE(615), + [sym_block_comment] = STATE(615), [ts_builtin_sym_end] = ACTIONS(2206), [sym_identifier] = ACTIONS(2208), [anon_sym_SEMI] = ACTIONS(2206), @@ -77384,9 +79485,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2206), [sym_float_literal] = ACTIONS(2206), }, - [590] = { - [sym_line_comment] = STATE(590), - [sym_block_comment] = STATE(590), + [616] = { + [sym_line_comment] = STATE(616), + [sym_block_comment] = STATE(616), [ts_builtin_sym_end] = ACTIONS(2210), [sym_identifier] = ACTIONS(2212), [anon_sym_SEMI] = ACTIONS(2210), @@ -77464,9 +79565,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2210), [sym_float_literal] = ACTIONS(2210), }, - [591] = { - [sym_line_comment] = STATE(591), - [sym_block_comment] = STATE(591), + [617] = { + [sym_line_comment] = STATE(617), + [sym_block_comment] = STATE(617), [ts_builtin_sym_end] = ACTIONS(2214), [sym_identifier] = ACTIONS(2216), [anon_sym_SEMI] = ACTIONS(2214), @@ -77544,9 +79645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2214), [sym_float_literal] = ACTIONS(2214), }, - [592] = { - [sym_line_comment] = STATE(592), - [sym_block_comment] = STATE(592), + [618] = { + [sym_line_comment] = STATE(618), + [sym_block_comment] = STATE(618), [ts_builtin_sym_end] = ACTIONS(2218), [sym_identifier] = ACTIONS(2220), [anon_sym_SEMI] = ACTIONS(2218), @@ -77624,9 +79725,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2218), [sym_float_literal] = ACTIONS(2218), }, - [593] = { - [sym_line_comment] = STATE(593), - [sym_block_comment] = STATE(593), + [619] = { + [sym_line_comment] = STATE(619), + [sym_block_comment] = STATE(619), [ts_builtin_sym_end] = ACTIONS(2222), [sym_identifier] = ACTIONS(2224), [anon_sym_SEMI] = ACTIONS(2222), @@ -77704,9 +79805,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2222), [sym_float_literal] = ACTIONS(2222), }, - [594] = { - [sym_line_comment] = STATE(594), - [sym_block_comment] = STATE(594), + [620] = { + [sym_line_comment] = STATE(620), + [sym_block_comment] = STATE(620), [ts_builtin_sym_end] = ACTIONS(2226), [sym_identifier] = ACTIONS(2228), [anon_sym_SEMI] = ACTIONS(2226), @@ -77784,9 +79885,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2226), [sym_float_literal] = ACTIONS(2226), }, - [595] = { - [sym_line_comment] = STATE(595), - [sym_block_comment] = STATE(595), + [621] = { + [sym_line_comment] = STATE(621), + [sym_block_comment] = STATE(621), [ts_builtin_sym_end] = ACTIONS(2230), [sym_identifier] = ACTIONS(2232), [anon_sym_SEMI] = ACTIONS(2230), @@ -77864,9 +79965,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2230), [sym_float_literal] = ACTIONS(2230), }, - [596] = { - [sym_line_comment] = STATE(596), - [sym_block_comment] = STATE(596), + [622] = { + [sym_line_comment] = STATE(622), + [sym_block_comment] = STATE(622), [ts_builtin_sym_end] = ACTIONS(2234), [sym_identifier] = ACTIONS(2236), [anon_sym_SEMI] = ACTIONS(2234), @@ -77944,9 +80045,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2234), [sym_float_literal] = ACTIONS(2234), }, - [597] = { - [sym_line_comment] = STATE(597), - [sym_block_comment] = STATE(597), + [623] = { + [sym_line_comment] = STATE(623), + [sym_block_comment] = STATE(623), [ts_builtin_sym_end] = ACTIONS(2238), [sym_identifier] = ACTIONS(2240), [anon_sym_SEMI] = ACTIONS(2238), @@ -78024,9 +80125,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2238), [sym_float_literal] = ACTIONS(2238), }, - [598] = { - [sym_line_comment] = STATE(598), - [sym_block_comment] = STATE(598), + [624] = { + [sym_line_comment] = STATE(624), + [sym_block_comment] = STATE(624), [ts_builtin_sym_end] = ACTIONS(2242), [sym_identifier] = ACTIONS(2244), [anon_sym_SEMI] = ACTIONS(2242), @@ -78104,9 +80205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2242), [sym_float_literal] = ACTIONS(2242), }, - [599] = { - [sym_line_comment] = STATE(599), - [sym_block_comment] = STATE(599), + [625] = { + [sym_line_comment] = STATE(625), + [sym_block_comment] = STATE(625), [ts_builtin_sym_end] = ACTIONS(2246), [sym_identifier] = ACTIONS(2248), [anon_sym_SEMI] = ACTIONS(2246), @@ -78184,9 +80285,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2246), [sym_float_literal] = ACTIONS(2246), }, - [600] = { - [sym_line_comment] = STATE(600), - [sym_block_comment] = STATE(600), + [626] = { + [sym_line_comment] = STATE(626), + [sym_block_comment] = STATE(626), [ts_builtin_sym_end] = ACTIONS(2250), [sym_identifier] = ACTIONS(2252), [anon_sym_SEMI] = ACTIONS(2250), @@ -78264,9 +80365,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2250), [sym_float_literal] = ACTIONS(2250), }, - [601] = { - [sym_line_comment] = STATE(601), - [sym_block_comment] = STATE(601), + [627] = { + [sym_line_comment] = STATE(627), + [sym_block_comment] = STATE(627), [ts_builtin_sym_end] = ACTIONS(2254), [sym_identifier] = ACTIONS(2256), [anon_sym_SEMI] = ACTIONS(2254), @@ -78344,9 +80445,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2254), [sym_float_literal] = ACTIONS(2254), }, - [602] = { - [sym_line_comment] = STATE(602), - [sym_block_comment] = STATE(602), + [628] = { + [sym_line_comment] = STATE(628), + [sym_block_comment] = STATE(628), [ts_builtin_sym_end] = ACTIONS(2258), [sym_identifier] = ACTIONS(2260), [anon_sym_SEMI] = ACTIONS(2258), @@ -78424,9 +80525,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2258), [sym_float_literal] = ACTIONS(2258), }, - [603] = { - [sym_line_comment] = STATE(603), - [sym_block_comment] = STATE(603), + [629] = { + [sym_line_comment] = STATE(629), + [sym_block_comment] = STATE(629), [ts_builtin_sym_end] = ACTIONS(2262), [sym_identifier] = ACTIONS(2264), [anon_sym_SEMI] = ACTIONS(2262), @@ -78504,9 +80605,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2262), [sym_float_literal] = ACTIONS(2262), }, - [604] = { - [sym_line_comment] = STATE(604), - [sym_block_comment] = STATE(604), + [630] = { + [sym_line_comment] = STATE(630), + [sym_block_comment] = STATE(630), [ts_builtin_sym_end] = ACTIONS(2266), [sym_identifier] = ACTIONS(2268), [anon_sym_SEMI] = ACTIONS(2266), @@ -78584,9 +80685,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2266), [sym_float_literal] = ACTIONS(2266), }, - [605] = { - [sym_line_comment] = STATE(605), - [sym_block_comment] = STATE(605), + [631] = { + [sym_line_comment] = STATE(631), + [sym_block_comment] = STATE(631), [ts_builtin_sym_end] = ACTIONS(2270), [sym_identifier] = ACTIONS(2272), [anon_sym_SEMI] = ACTIONS(2270), @@ -78664,9 +80765,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2270), [sym_float_literal] = ACTIONS(2270), }, - [606] = { - [sym_line_comment] = STATE(606), - [sym_block_comment] = STATE(606), + [632] = { + [sym_line_comment] = STATE(632), + [sym_block_comment] = STATE(632), [ts_builtin_sym_end] = ACTIONS(2274), [sym_identifier] = ACTIONS(2276), [anon_sym_SEMI] = ACTIONS(2274), @@ -78744,9 +80845,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2274), [sym_float_literal] = ACTIONS(2274), }, - [607] = { - [sym_line_comment] = STATE(607), - [sym_block_comment] = STATE(607), + [633] = { + [sym_line_comment] = STATE(633), + [sym_block_comment] = STATE(633), [ts_builtin_sym_end] = ACTIONS(2278), [sym_identifier] = ACTIONS(2280), [anon_sym_SEMI] = ACTIONS(2278), @@ -78824,9 +80925,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2278), [sym_float_literal] = ACTIONS(2278), }, - [608] = { - [sym_line_comment] = STATE(608), - [sym_block_comment] = STATE(608), + [634] = { + [sym_line_comment] = STATE(634), + [sym_block_comment] = STATE(634), [ts_builtin_sym_end] = ACTIONS(2282), [sym_identifier] = ACTIONS(2284), [anon_sym_SEMI] = ACTIONS(2282), @@ -78904,89 +81005,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2282), [sym_float_literal] = ACTIONS(2282), }, - [609] = { - [sym_line_comment] = STATE(609), - [sym_block_comment] = STATE(609), - [ts_builtin_sym_end] = ACTIONS(1422), - [sym_identifier] = ACTIONS(1424), - [anon_sym_SEMI] = ACTIONS(1422), - [anon_sym_macro_rules_BANG] = ACTIONS(1422), - [anon_sym_LPAREN] = ACTIONS(1422), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_LBRACE] = ACTIONS(1422), - [anon_sym_RBRACE] = ACTIONS(1422), - [anon_sym_STAR] = ACTIONS(1422), - [anon_sym_u8] = ACTIONS(1424), - [anon_sym_i8] = ACTIONS(1424), - [anon_sym_u16] = ACTIONS(1424), - [anon_sym_i16] = ACTIONS(1424), - [anon_sym_u32] = ACTIONS(1424), - [anon_sym_i32] = ACTIONS(1424), - [anon_sym_u64] = ACTIONS(1424), - [anon_sym_i64] = ACTIONS(1424), - [anon_sym_u128] = ACTIONS(1424), - [anon_sym_i128] = ACTIONS(1424), - [anon_sym_isize] = ACTIONS(1424), - [anon_sym_usize] = ACTIONS(1424), - [anon_sym_f32] = ACTIONS(1424), - [anon_sym_f64] = ACTIONS(1424), - [anon_sym_bool] = ACTIONS(1424), - [anon_sym_str] = ACTIONS(1424), - [anon_sym_char] = ACTIONS(1424), - [anon_sym_DASH] = ACTIONS(1422), - [anon_sym_BANG] = ACTIONS(1422), - [anon_sym_AMP] = ACTIONS(1422), - [anon_sym_PIPE] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(1422), - [anon_sym_DOT_DOT] = ACTIONS(1422), - [anon_sym_COLON_COLON] = ACTIONS(1422), - [anon_sym_POUND] = ACTIONS(1422), - [anon_sym_SQUOTE] = ACTIONS(1424), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_break] = ACTIONS(1424), - [anon_sym_const] = ACTIONS(1424), - [anon_sym_continue] = ACTIONS(1424), - [anon_sym_default] = ACTIONS(1424), - [anon_sym_enum] = ACTIONS(1424), - [anon_sym_fn] = ACTIONS(1424), - [anon_sym_for] = ACTIONS(1424), - [anon_sym_if] = ACTIONS(1424), - [anon_sym_impl] = ACTIONS(1424), - [anon_sym_let] = ACTIONS(1424), - [anon_sym_loop] = ACTIONS(1424), - [anon_sym_match] = ACTIONS(1424), - [anon_sym_mod] = ACTIONS(1424), - [anon_sym_pub] = ACTIONS(1424), - [anon_sym_return] = ACTIONS(1424), - [anon_sym_static] = ACTIONS(1424), - [anon_sym_struct] = ACTIONS(1424), - [anon_sym_trait] = ACTIONS(1424), - [anon_sym_type] = ACTIONS(1424), - [anon_sym_union] = ACTIONS(1424), - [anon_sym_unsafe] = ACTIONS(1424), - [anon_sym_use] = ACTIONS(1424), - [anon_sym_while] = ACTIONS(1424), - [anon_sym_extern] = ACTIONS(1424), - [anon_sym_yield] = ACTIONS(1424), - [anon_sym_move] = ACTIONS(1424), - [anon_sym_try] = ACTIONS(1424), - [sym_integer_literal] = ACTIONS(1422), - [aux_sym_string_literal_token1] = ACTIONS(1422), - [sym_char_literal] = ACTIONS(1422), - [anon_sym_true] = ACTIONS(1424), - [anon_sym_false] = ACTIONS(1424), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1424), - [sym_super] = ACTIONS(1424), - [sym_crate] = ACTIONS(1424), - [sym_metavariable] = ACTIONS(1422), - [sym__raw_string_literal_start] = ACTIONS(1422), - [sym_float_literal] = ACTIONS(1422), - }, - [610] = { - [sym_line_comment] = STATE(610), - [sym_block_comment] = STATE(610), + [635] = { + [sym_line_comment] = STATE(635), + [sym_block_comment] = STATE(635), [ts_builtin_sym_end] = ACTIONS(2286), [sym_identifier] = ACTIONS(2288), [anon_sym_SEMI] = ACTIONS(2286), @@ -79064,9 +81085,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2286), [sym_float_literal] = ACTIONS(2286), }, - [611] = { - [sym_line_comment] = STATE(611), - [sym_block_comment] = STATE(611), + [636] = { + [sym_line_comment] = STATE(636), + [sym_block_comment] = STATE(636), [ts_builtin_sym_end] = ACTIONS(2290), [sym_identifier] = ACTIONS(2292), [anon_sym_SEMI] = ACTIONS(2290), @@ -79144,9 +81165,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2290), [sym_float_literal] = ACTIONS(2290), }, - [612] = { - [sym_line_comment] = STATE(612), - [sym_block_comment] = STATE(612), + [637] = { + [sym_line_comment] = STATE(637), + [sym_block_comment] = STATE(637), [ts_builtin_sym_end] = ACTIONS(2294), [sym_identifier] = ACTIONS(2296), [anon_sym_SEMI] = ACTIONS(2294), @@ -79224,9 +81245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2294), [sym_float_literal] = ACTIONS(2294), }, - [613] = { - [sym_line_comment] = STATE(613), - [sym_block_comment] = STATE(613), + [638] = { + [sym_line_comment] = STATE(638), + [sym_block_comment] = STATE(638), [ts_builtin_sym_end] = ACTIONS(2298), [sym_identifier] = ACTIONS(2300), [anon_sym_SEMI] = ACTIONS(2298), @@ -79304,9 +81325,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2298), [sym_float_literal] = ACTIONS(2298), }, - [614] = { - [sym_line_comment] = STATE(614), - [sym_block_comment] = STATE(614), + [639] = { + [sym_line_comment] = STATE(639), + [sym_block_comment] = STATE(639), [ts_builtin_sym_end] = ACTIONS(2302), [sym_identifier] = ACTIONS(2304), [anon_sym_SEMI] = ACTIONS(2302), @@ -79384,9 +81405,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2302), [sym_float_literal] = ACTIONS(2302), }, - [615] = { - [sym_line_comment] = STATE(615), - [sym_block_comment] = STATE(615), + [640] = { + [sym_line_comment] = STATE(640), + [sym_block_comment] = STATE(640), [ts_builtin_sym_end] = ACTIONS(2306), [sym_identifier] = ACTIONS(2308), [anon_sym_SEMI] = ACTIONS(2306), @@ -79464,9 +81485,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2306), [sym_float_literal] = ACTIONS(2306), }, - [616] = { - [sym_line_comment] = STATE(616), - [sym_block_comment] = STATE(616), + [641] = { + [sym_line_comment] = STATE(641), + [sym_block_comment] = STATE(641), [ts_builtin_sym_end] = ACTIONS(2310), [sym_identifier] = ACTIONS(2312), [anon_sym_SEMI] = ACTIONS(2310), @@ -79544,9 +81565,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2310), [sym_float_literal] = ACTIONS(2310), }, - [617] = { - [sym_line_comment] = STATE(617), - [sym_block_comment] = STATE(617), + [642] = { + [sym_line_comment] = STATE(642), + [sym_block_comment] = STATE(642), [ts_builtin_sym_end] = ACTIONS(2314), [sym_identifier] = ACTIONS(2316), [anon_sym_SEMI] = ACTIONS(2314), @@ -79624,9 +81645,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2314), [sym_float_literal] = ACTIONS(2314), }, - [618] = { - [sym_line_comment] = STATE(618), - [sym_block_comment] = STATE(618), + [643] = { + [sym_line_comment] = STATE(643), + [sym_block_comment] = STATE(643), [ts_builtin_sym_end] = ACTIONS(2318), [sym_identifier] = ACTIONS(2320), [anon_sym_SEMI] = ACTIONS(2318), @@ -79704,9 +81725,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2318), [sym_float_literal] = ACTIONS(2318), }, - [619] = { - [sym_line_comment] = STATE(619), - [sym_block_comment] = STATE(619), + [644] = { + [sym_line_comment] = STATE(644), + [sym_block_comment] = STATE(644), [ts_builtin_sym_end] = ACTIONS(2322), [sym_identifier] = ACTIONS(2324), [anon_sym_SEMI] = ACTIONS(2322), @@ -79784,9 +81805,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2322), [sym_float_literal] = ACTIONS(2322), }, - [620] = { - [sym_line_comment] = STATE(620), - [sym_block_comment] = STATE(620), + [645] = { + [sym_line_comment] = STATE(645), + [sym_block_comment] = STATE(645), [ts_builtin_sym_end] = ACTIONS(2326), [sym_identifier] = ACTIONS(2328), [anon_sym_SEMI] = ACTIONS(2326), @@ -79864,647 +81885,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2326), [sym_float_literal] = ACTIONS(2326), }, - [621] = { - [sym_line_comment] = STATE(621), - [sym_block_comment] = STATE(621), - [ts_builtin_sym_end] = ACTIONS(1244), - [sym_identifier] = ACTIONS(1246), - [anon_sym_SEMI] = ACTIONS(1244), - [anon_sym_macro_rules_BANG] = ACTIONS(1244), - [anon_sym_LPAREN] = ACTIONS(1244), - [anon_sym_LBRACK] = ACTIONS(1244), - [anon_sym_LBRACE] = ACTIONS(1244), - [anon_sym_RBRACE] = ACTIONS(1244), - [anon_sym_STAR] = ACTIONS(1244), - [anon_sym_u8] = ACTIONS(1246), - [anon_sym_i8] = ACTIONS(1246), - [anon_sym_u16] = ACTIONS(1246), - [anon_sym_i16] = ACTIONS(1246), - [anon_sym_u32] = ACTIONS(1246), - [anon_sym_i32] = ACTIONS(1246), - [anon_sym_u64] = ACTIONS(1246), - [anon_sym_i64] = ACTIONS(1246), - [anon_sym_u128] = ACTIONS(1246), - [anon_sym_i128] = ACTIONS(1246), - [anon_sym_isize] = ACTIONS(1246), - [anon_sym_usize] = ACTIONS(1246), - [anon_sym_f32] = ACTIONS(1246), - [anon_sym_f64] = ACTIONS(1246), - [anon_sym_bool] = ACTIONS(1246), - [anon_sym_str] = ACTIONS(1246), - [anon_sym_char] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1244), - [anon_sym_BANG] = ACTIONS(1244), - [anon_sym_AMP] = ACTIONS(1244), - [anon_sym_PIPE] = ACTIONS(1244), - [anon_sym_LT] = ACTIONS(1244), - [anon_sym_DOT_DOT] = ACTIONS(1244), - [anon_sym_COLON_COLON] = ACTIONS(1244), - [anon_sym_POUND] = ACTIONS(1244), - [anon_sym_SQUOTE] = ACTIONS(1246), - [anon_sym_async] = ACTIONS(1246), - [anon_sym_break] = ACTIONS(1246), - [anon_sym_const] = ACTIONS(1246), - [anon_sym_continue] = ACTIONS(1246), - [anon_sym_default] = ACTIONS(1246), - [anon_sym_enum] = ACTIONS(1246), - [anon_sym_fn] = ACTIONS(1246), - [anon_sym_for] = ACTIONS(1246), - [anon_sym_if] = ACTIONS(1246), - [anon_sym_impl] = ACTIONS(1246), - [anon_sym_let] = ACTIONS(1246), - [anon_sym_loop] = ACTIONS(1246), - [anon_sym_match] = ACTIONS(1246), - [anon_sym_mod] = ACTIONS(1246), - [anon_sym_pub] = ACTIONS(1246), - [anon_sym_return] = ACTIONS(1246), - [anon_sym_static] = ACTIONS(1246), - [anon_sym_struct] = ACTIONS(1246), - [anon_sym_trait] = ACTIONS(1246), - [anon_sym_type] = ACTIONS(1246), - [anon_sym_union] = ACTIONS(1246), - [anon_sym_unsafe] = ACTIONS(1246), - [anon_sym_use] = ACTIONS(1246), - [anon_sym_while] = ACTIONS(1246), - [anon_sym_extern] = ACTIONS(1246), - [anon_sym_yield] = ACTIONS(1246), - [anon_sym_move] = ACTIONS(1246), - [anon_sym_try] = ACTIONS(1246), - [sym_integer_literal] = ACTIONS(1244), - [aux_sym_string_literal_token1] = ACTIONS(1244), - [sym_char_literal] = ACTIONS(1244), - [anon_sym_true] = ACTIONS(1246), - [anon_sym_false] = ACTIONS(1246), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1246), - [sym_super] = ACTIONS(1246), - [sym_crate] = ACTIONS(1246), - [sym_metavariable] = ACTIONS(1244), - [sym__raw_string_literal_start] = ACTIONS(1244), - [sym_float_literal] = ACTIONS(1244), - }, - [622] = { - [sym_line_comment] = STATE(622), - [sym_block_comment] = STATE(622), - [ts_builtin_sym_end] = ACTIONS(2330), - [sym_identifier] = ACTIONS(2332), - [anon_sym_SEMI] = ACTIONS(2330), - [anon_sym_macro_rules_BANG] = ACTIONS(2330), - [anon_sym_LPAREN] = ACTIONS(2330), - [anon_sym_LBRACK] = ACTIONS(2330), - [anon_sym_LBRACE] = ACTIONS(2330), - [anon_sym_RBRACE] = ACTIONS(2330), - [anon_sym_STAR] = ACTIONS(2330), - [anon_sym_u8] = ACTIONS(2332), - [anon_sym_i8] = ACTIONS(2332), - [anon_sym_u16] = ACTIONS(2332), - [anon_sym_i16] = ACTIONS(2332), - [anon_sym_u32] = ACTIONS(2332), - [anon_sym_i32] = ACTIONS(2332), - [anon_sym_u64] = ACTIONS(2332), - [anon_sym_i64] = ACTIONS(2332), - [anon_sym_u128] = ACTIONS(2332), - [anon_sym_i128] = ACTIONS(2332), - [anon_sym_isize] = ACTIONS(2332), - [anon_sym_usize] = ACTIONS(2332), - [anon_sym_f32] = ACTIONS(2332), - [anon_sym_f64] = ACTIONS(2332), - [anon_sym_bool] = ACTIONS(2332), - [anon_sym_str] = ACTIONS(2332), - [anon_sym_char] = ACTIONS(2332), - [anon_sym_DASH] = ACTIONS(2330), - [anon_sym_BANG] = ACTIONS(2330), - [anon_sym_AMP] = ACTIONS(2330), - [anon_sym_PIPE] = ACTIONS(2330), - [anon_sym_LT] = ACTIONS(2330), - [anon_sym_DOT_DOT] = ACTIONS(2330), - [anon_sym_COLON_COLON] = ACTIONS(2330), - [anon_sym_POUND] = ACTIONS(2330), - [anon_sym_SQUOTE] = ACTIONS(2332), - [anon_sym_async] = ACTIONS(2332), - [anon_sym_break] = ACTIONS(2332), - [anon_sym_const] = ACTIONS(2332), - [anon_sym_continue] = ACTIONS(2332), - [anon_sym_default] = ACTIONS(2332), - [anon_sym_enum] = ACTIONS(2332), - [anon_sym_fn] = ACTIONS(2332), - [anon_sym_for] = ACTIONS(2332), - [anon_sym_if] = ACTIONS(2332), - [anon_sym_impl] = ACTIONS(2332), - [anon_sym_let] = ACTIONS(2332), - [anon_sym_loop] = ACTIONS(2332), - [anon_sym_match] = ACTIONS(2332), - [anon_sym_mod] = ACTIONS(2332), - [anon_sym_pub] = ACTIONS(2332), - [anon_sym_return] = ACTIONS(2332), - [anon_sym_static] = ACTIONS(2332), - [anon_sym_struct] = ACTIONS(2332), - [anon_sym_trait] = ACTIONS(2332), - [anon_sym_type] = ACTIONS(2332), - [anon_sym_union] = ACTIONS(2332), - [anon_sym_unsafe] = ACTIONS(2332), - [anon_sym_use] = ACTIONS(2332), - [anon_sym_while] = ACTIONS(2332), - [anon_sym_extern] = ACTIONS(2332), - [anon_sym_yield] = ACTIONS(2332), - [anon_sym_move] = ACTIONS(2332), - [anon_sym_try] = ACTIONS(2332), - [sym_integer_literal] = ACTIONS(2330), - [aux_sym_string_literal_token1] = ACTIONS(2330), - [sym_char_literal] = ACTIONS(2330), - [anon_sym_true] = ACTIONS(2332), - [anon_sym_false] = ACTIONS(2332), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2332), - [sym_super] = ACTIONS(2332), - [sym_crate] = ACTIONS(2332), - [sym_metavariable] = ACTIONS(2330), - [sym__raw_string_literal_start] = ACTIONS(2330), - [sym_float_literal] = ACTIONS(2330), - }, - [623] = { - [sym_line_comment] = STATE(623), - [sym_block_comment] = STATE(623), - [ts_builtin_sym_end] = ACTIONS(2334), - [sym_identifier] = ACTIONS(2336), - [anon_sym_SEMI] = ACTIONS(2334), - [anon_sym_macro_rules_BANG] = ACTIONS(2334), - [anon_sym_LPAREN] = ACTIONS(2334), - [anon_sym_LBRACK] = ACTIONS(2334), - [anon_sym_LBRACE] = ACTIONS(2334), - [anon_sym_RBRACE] = ACTIONS(2334), - [anon_sym_STAR] = ACTIONS(2334), - [anon_sym_u8] = ACTIONS(2336), - [anon_sym_i8] = ACTIONS(2336), - [anon_sym_u16] = ACTIONS(2336), - [anon_sym_i16] = ACTIONS(2336), - [anon_sym_u32] = ACTIONS(2336), - [anon_sym_i32] = ACTIONS(2336), - [anon_sym_u64] = ACTIONS(2336), - [anon_sym_i64] = ACTIONS(2336), - [anon_sym_u128] = ACTIONS(2336), - [anon_sym_i128] = ACTIONS(2336), - [anon_sym_isize] = ACTIONS(2336), - [anon_sym_usize] = ACTIONS(2336), - [anon_sym_f32] = ACTIONS(2336), - [anon_sym_f64] = ACTIONS(2336), - [anon_sym_bool] = ACTIONS(2336), - [anon_sym_str] = ACTIONS(2336), - [anon_sym_char] = ACTIONS(2336), - [anon_sym_DASH] = ACTIONS(2334), - [anon_sym_BANG] = ACTIONS(2334), - [anon_sym_AMP] = ACTIONS(2334), - [anon_sym_PIPE] = ACTIONS(2334), - [anon_sym_LT] = ACTIONS(2334), - [anon_sym_DOT_DOT] = ACTIONS(2334), - [anon_sym_COLON_COLON] = ACTIONS(2334), - [anon_sym_POUND] = ACTIONS(2334), - [anon_sym_SQUOTE] = ACTIONS(2336), - [anon_sym_async] = ACTIONS(2336), - [anon_sym_break] = ACTIONS(2336), - [anon_sym_const] = ACTIONS(2336), - [anon_sym_continue] = ACTIONS(2336), - [anon_sym_default] = ACTIONS(2336), - [anon_sym_enum] = ACTIONS(2336), - [anon_sym_fn] = ACTIONS(2336), - [anon_sym_for] = ACTIONS(2336), - [anon_sym_if] = ACTIONS(2336), - [anon_sym_impl] = ACTIONS(2336), - [anon_sym_let] = ACTIONS(2336), - [anon_sym_loop] = ACTIONS(2336), - [anon_sym_match] = ACTIONS(2336), - [anon_sym_mod] = ACTIONS(2336), - [anon_sym_pub] = ACTIONS(2336), - [anon_sym_return] = ACTIONS(2336), - [anon_sym_static] = ACTIONS(2336), - [anon_sym_struct] = ACTIONS(2336), - [anon_sym_trait] = ACTIONS(2336), - [anon_sym_type] = ACTIONS(2336), - [anon_sym_union] = ACTIONS(2336), - [anon_sym_unsafe] = ACTIONS(2336), - [anon_sym_use] = ACTIONS(2336), - [anon_sym_while] = ACTIONS(2336), - [anon_sym_extern] = ACTIONS(2336), - [anon_sym_yield] = ACTIONS(2336), - [anon_sym_move] = ACTIONS(2336), - [anon_sym_try] = ACTIONS(2336), - [sym_integer_literal] = ACTIONS(2334), - [aux_sym_string_literal_token1] = ACTIONS(2334), - [sym_char_literal] = ACTIONS(2334), - [anon_sym_true] = ACTIONS(2336), - [anon_sym_false] = ACTIONS(2336), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2336), - [sym_super] = ACTIONS(2336), - [sym_crate] = ACTIONS(2336), - [sym_metavariable] = ACTIONS(2334), - [sym__raw_string_literal_start] = ACTIONS(2334), - [sym_float_literal] = ACTIONS(2334), - }, - [624] = { - [sym_line_comment] = STATE(624), - [sym_block_comment] = STATE(624), - [ts_builtin_sym_end] = ACTIONS(2338), - [sym_identifier] = ACTIONS(2340), - [anon_sym_SEMI] = ACTIONS(2338), - [anon_sym_macro_rules_BANG] = ACTIONS(2338), - [anon_sym_LPAREN] = ACTIONS(2338), - [anon_sym_LBRACK] = ACTIONS(2338), - [anon_sym_LBRACE] = ACTIONS(2338), - [anon_sym_RBRACE] = ACTIONS(2338), - [anon_sym_STAR] = ACTIONS(2338), - [anon_sym_u8] = ACTIONS(2340), - [anon_sym_i8] = ACTIONS(2340), - [anon_sym_u16] = ACTIONS(2340), - [anon_sym_i16] = ACTIONS(2340), - [anon_sym_u32] = ACTIONS(2340), - [anon_sym_i32] = ACTIONS(2340), - [anon_sym_u64] = ACTIONS(2340), - [anon_sym_i64] = ACTIONS(2340), - [anon_sym_u128] = ACTIONS(2340), - [anon_sym_i128] = ACTIONS(2340), - [anon_sym_isize] = ACTIONS(2340), - [anon_sym_usize] = ACTIONS(2340), - [anon_sym_f32] = ACTIONS(2340), - [anon_sym_f64] = ACTIONS(2340), - [anon_sym_bool] = ACTIONS(2340), - [anon_sym_str] = ACTIONS(2340), - [anon_sym_char] = ACTIONS(2340), - [anon_sym_DASH] = ACTIONS(2338), - [anon_sym_BANG] = ACTIONS(2338), - [anon_sym_AMP] = ACTIONS(2338), - [anon_sym_PIPE] = ACTIONS(2338), - [anon_sym_LT] = ACTIONS(2338), - [anon_sym_DOT_DOT] = ACTIONS(2338), - [anon_sym_COLON_COLON] = ACTIONS(2338), - [anon_sym_POUND] = ACTIONS(2338), - [anon_sym_SQUOTE] = ACTIONS(2340), - [anon_sym_async] = ACTIONS(2340), - [anon_sym_break] = ACTIONS(2340), - [anon_sym_const] = ACTIONS(2340), - [anon_sym_continue] = ACTIONS(2340), - [anon_sym_default] = ACTIONS(2340), - [anon_sym_enum] = ACTIONS(2340), - [anon_sym_fn] = ACTIONS(2340), - [anon_sym_for] = ACTIONS(2340), - [anon_sym_if] = ACTIONS(2340), - [anon_sym_impl] = ACTIONS(2340), - [anon_sym_let] = ACTIONS(2340), - [anon_sym_loop] = ACTIONS(2340), - [anon_sym_match] = ACTIONS(2340), - [anon_sym_mod] = ACTIONS(2340), - [anon_sym_pub] = ACTIONS(2340), - [anon_sym_return] = ACTIONS(2340), - [anon_sym_static] = ACTIONS(2340), - [anon_sym_struct] = ACTIONS(2340), - [anon_sym_trait] = ACTIONS(2340), - [anon_sym_type] = ACTIONS(2340), - [anon_sym_union] = ACTIONS(2340), - [anon_sym_unsafe] = ACTIONS(2340), - [anon_sym_use] = ACTIONS(2340), - [anon_sym_while] = ACTIONS(2340), - [anon_sym_extern] = ACTIONS(2340), - [anon_sym_yield] = ACTIONS(2340), - [anon_sym_move] = ACTIONS(2340), - [anon_sym_try] = ACTIONS(2340), - [sym_integer_literal] = ACTIONS(2338), - [aux_sym_string_literal_token1] = ACTIONS(2338), - [sym_char_literal] = ACTIONS(2338), - [anon_sym_true] = ACTIONS(2340), - [anon_sym_false] = ACTIONS(2340), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2340), - [sym_super] = ACTIONS(2340), - [sym_crate] = ACTIONS(2340), - [sym_metavariable] = ACTIONS(2338), - [sym__raw_string_literal_start] = ACTIONS(2338), - [sym_float_literal] = ACTIONS(2338), - }, - [625] = { - [sym_line_comment] = STATE(625), - [sym_block_comment] = STATE(625), - [ts_builtin_sym_end] = ACTIONS(2342), - [sym_identifier] = ACTIONS(2344), - [anon_sym_SEMI] = ACTIONS(2342), - [anon_sym_macro_rules_BANG] = ACTIONS(2342), - [anon_sym_LPAREN] = ACTIONS(2342), - [anon_sym_LBRACK] = ACTIONS(2342), - [anon_sym_LBRACE] = ACTIONS(2342), - [anon_sym_RBRACE] = ACTIONS(2342), - [anon_sym_STAR] = ACTIONS(2342), - [anon_sym_u8] = ACTIONS(2344), - [anon_sym_i8] = ACTIONS(2344), - [anon_sym_u16] = ACTIONS(2344), - [anon_sym_i16] = ACTIONS(2344), - [anon_sym_u32] = ACTIONS(2344), - [anon_sym_i32] = ACTIONS(2344), - [anon_sym_u64] = ACTIONS(2344), - [anon_sym_i64] = ACTIONS(2344), - [anon_sym_u128] = ACTIONS(2344), - [anon_sym_i128] = ACTIONS(2344), - [anon_sym_isize] = ACTIONS(2344), - [anon_sym_usize] = ACTIONS(2344), - [anon_sym_f32] = ACTIONS(2344), - [anon_sym_f64] = ACTIONS(2344), - [anon_sym_bool] = ACTIONS(2344), - [anon_sym_str] = ACTIONS(2344), - [anon_sym_char] = ACTIONS(2344), - [anon_sym_DASH] = ACTIONS(2342), - [anon_sym_BANG] = ACTIONS(2342), - [anon_sym_AMP] = ACTIONS(2342), - [anon_sym_PIPE] = ACTIONS(2342), - [anon_sym_LT] = ACTIONS(2342), - [anon_sym_DOT_DOT] = ACTIONS(2342), - [anon_sym_COLON_COLON] = ACTIONS(2342), - [anon_sym_POUND] = ACTIONS(2342), - [anon_sym_SQUOTE] = ACTIONS(2344), - [anon_sym_async] = ACTIONS(2344), - [anon_sym_break] = ACTIONS(2344), - [anon_sym_const] = ACTIONS(2344), - [anon_sym_continue] = ACTIONS(2344), - [anon_sym_default] = ACTIONS(2344), - [anon_sym_enum] = ACTIONS(2344), - [anon_sym_fn] = ACTIONS(2344), - [anon_sym_for] = ACTIONS(2344), - [anon_sym_if] = ACTIONS(2344), - [anon_sym_impl] = ACTIONS(2344), - [anon_sym_let] = ACTIONS(2344), - [anon_sym_loop] = ACTIONS(2344), - [anon_sym_match] = ACTIONS(2344), - [anon_sym_mod] = ACTIONS(2344), - [anon_sym_pub] = ACTIONS(2344), - [anon_sym_return] = ACTIONS(2344), - [anon_sym_static] = ACTIONS(2344), - [anon_sym_struct] = ACTIONS(2344), - [anon_sym_trait] = ACTIONS(2344), - [anon_sym_type] = ACTIONS(2344), - [anon_sym_union] = ACTIONS(2344), - [anon_sym_unsafe] = ACTIONS(2344), - [anon_sym_use] = ACTIONS(2344), - [anon_sym_while] = ACTIONS(2344), - [anon_sym_extern] = ACTIONS(2344), - [anon_sym_yield] = ACTIONS(2344), - [anon_sym_move] = ACTIONS(2344), - [anon_sym_try] = ACTIONS(2344), - [sym_integer_literal] = ACTIONS(2342), - [aux_sym_string_literal_token1] = ACTIONS(2342), - [sym_char_literal] = ACTIONS(2342), - [anon_sym_true] = ACTIONS(2344), - [anon_sym_false] = ACTIONS(2344), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2344), - [sym_super] = ACTIONS(2344), - [sym_crate] = ACTIONS(2344), - [sym_metavariable] = ACTIONS(2342), - [sym__raw_string_literal_start] = ACTIONS(2342), - [sym_float_literal] = ACTIONS(2342), - }, - [626] = { - [sym_line_comment] = STATE(626), - [sym_block_comment] = STATE(626), - [ts_builtin_sym_end] = ACTIONS(2346), - [sym_identifier] = ACTIONS(2348), - [anon_sym_SEMI] = ACTIONS(2346), - [anon_sym_macro_rules_BANG] = ACTIONS(2346), - [anon_sym_LPAREN] = ACTIONS(2346), - [anon_sym_LBRACK] = ACTIONS(2346), - [anon_sym_LBRACE] = ACTIONS(2346), - [anon_sym_RBRACE] = ACTIONS(2346), - [anon_sym_STAR] = ACTIONS(2346), - [anon_sym_u8] = ACTIONS(2348), - [anon_sym_i8] = ACTIONS(2348), - [anon_sym_u16] = ACTIONS(2348), - [anon_sym_i16] = ACTIONS(2348), - [anon_sym_u32] = ACTIONS(2348), - [anon_sym_i32] = ACTIONS(2348), - [anon_sym_u64] = ACTIONS(2348), - [anon_sym_i64] = ACTIONS(2348), - [anon_sym_u128] = ACTIONS(2348), - [anon_sym_i128] = ACTIONS(2348), - [anon_sym_isize] = ACTIONS(2348), - [anon_sym_usize] = ACTIONS(2348), - [anon_sym_f32] = ACTIONS(2348), - [anon_sym_f64] = ACTIONS(2348), - [anon_sym_bool] = ACTIONS(2348), - [anon_sym_str] = ACTIONS(2348), - [anon_sym_char] = ACTIONS(2348), - [anon_sym_DASH] = ACTIONS(2346), - [anon_sym_BANG] = ACTIONS(2346), - [anon_sym_AMP] = ACTIONS(2346), - [anon_sym_PIPE] = ACTIONS(2346), - [anon_sym_LT] = ACTIONS(2346), - [anon_sym_DOT_DOT] = ACTIONS(2346), - [anon_sym_COLON_COLON] = ACTIONS(2346), - [anon_sym_POUND] = ACTIONS(2346), - [anon_sym_SQUOTE] = ACTIONS(2348), - [anon_sym_async] = ACTIONS(2348), - [anon_sym_break] = ACTIONS(2348), - [anon_sym_const] = ACTIONS(2348), - [anon_sym_continue] = ACTIONS(2348), - [anon_sym_default] = ACTIONS(2348), - [anon_sym_enum] = ACTIONS(2348), - [anon_sym_fn] = ACTIONS(2348), - [anon_sym_for] = ACTIONS(2348), - [anon_sym_if] = ACTIONS(2348), - [anon_sym_impl] = ACTIONS(2348), - [anon_sym_let] = ACTIONS(2348), - [anon_sym_loop] = ACTIONS(2348), - [anon_sym_match] = ACTIONS(2348), - [anon_sym_mod] = ACTIONS(2348), - [anon_sym_pub] = ACTIONS(2348), - [anon_sym_return] = ACTIONS(2348), - [anon_sym_static] = ACTIONS(2348), - [anon_sym_struct] = ACTIONS(2348), - [anon_sym_trait] = ACTIONS(2348), - [anon_sym_type] = ACTIONS(2348), - [anon_sym_union] = ACTIONS(2348), - [anon_sym_unsafe] = ACTIONS(2348), - [anon_sym_use] = ACTIONS(2348), - [anon_sym_while] = ACTIONS(2348), - [anon_sym_extern] = ACTIONS(2348), - [anon_sym_yield] = ACTIONS(2348), - [anon_sym_move] = ACTIONS(2348), - [anon_sym_try] = ACTIONS(2348), - [sym_integer_literal] = ACTIONS(2346), - [aux_sym_string_literal_token1] = ACTIONS(2346), - [sym_char_literal] = ACTIONS(2346), - [anon_sym_true] = ACTIONS(2348), - [anon_sym_false] = ACTIONS(2348), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2348), - [sym_super] = ACTIONS(2348), - [sym_crate] = ACTIONS(2348), - [sym_metavariable] = ACTIONS(2346), - [sym__raw_string_literal_start] = ACTIONS(2346), - [sym_float_literal] = ACTIONS(2346), - }, - [627] = { - [sym_line_comment] = STATE(627), - [sym_block_comment] = STATE(627), - [ts_builtin_sym_end] = ACTIONS(2350), - [sym_identifier] = ACTIONS(2352), - [anon_sym_SEMI] = ACTIONS(2350), - [anon_sym_macro_rules_BANG] = ACTIONS(2350), - [anon_sym_LPAREN] = ACTIONS(2350), - [anon_sym_LBRACK] = ACTIONS(2350), - [anon_sym_LBRACE] = ACTIONS(2350), - [anon_sym_RBRACE] = ACTIONS(2350), - [anon_sym_STAR] = ACTIONS(2350), - [anon_sym_u8] = ACTIONS(2352), - [anon_sym_i8] = ACTIONS(2352), - [anon_sym_u16] = ACTIONS(2352), - [anon_sym_i16] = ACTIONS(2352), - [anon_sym_u32] = ACTIONS(2352), - [anon_sym_i32] = ACTIONS(2352), - [anon_sym_u64] = ACTIONS(2352), - [anon_sym_i64] = ACTIONS(2352), - [anon_sym_u128] = ACTIONS(2352), - [anon_sym_i128] = ACTIONS(2352), - [anon_sym_isize] = ACTIONS(2352), - [anon_sym_usize] = ACTIONS(2352), - [anon_sym_f32] = ACTIONS(2352), - [anon_sym_f64] = ACTIONS(2352), - [anon_sym_bool] = ACTIONS(2352), - [anon_sym_str] = ACTIONS(2352), - [anon_sym_char] = ACTIONS(2352), - [anon_sym_DASH] = ACTIONS(2350), - [anon_sym_BANG] = ACTIONS(2350), - [anon_sym_AMP] = ACTIONS(2350), - [anon_sym_PIPE] = ACTIONS(2350), - [anon_sym_LT] = ACTIONS(2350), - [anon_sym_DOT_DOT] = ACTIONS(2350), - [anon_sym_COLON_COLON] = ACTIONS(2350), - [anon_sym_POUND] = ACTIONS(2350), - [anon_sym_SQUOTE] = ACTIONS(2352), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_break] = ACTIONS(2352), - [anon_sym_const] = ACTIONS(2352), - [anon_sym_continue] = ACTIONS(2352), - [anon_sym_default] = ACTIONS(2352), - [anon_sym_enum] = ACTIONS(2352), - [anon_sym_fn] = ACTIONS(2352), - [anon_sym_for] = ACTIONS(2352), - [anon_sym_if] = ACTIONS(2352), - [anon_sym_impl] = ACTIONS(2352), - [anon_sym_let] = ACTIONS(2352), - [anon_sym_loop] = ACTIONS(2352), - [anon_sym_match] = ACTIONS(2352), - [anon_sym_mod] = ACTIONS(2352), - [anon_sym_pub] = ACTIONS(2352), - [anon_sym_return] = ACTIONS(2352), - [anon_sym_static] = ACTIONS(2352), - [anon_sym_struct] = ACTIONS(2352), - [anon_sym_trait] = ACTIONS(2352), - [anon_sym_type] = ACTIONS(2352), - [anon_sym_union] = ACTIONS(2352), - [anon_sym_unsafe] = ACTIONS(2352), - [anon_sym_use] = ACTIONS(2352), - [anon_sym_while] = ACTIONS(2352), - [anon_sym_extern] = ACTIONS(2352), - [anon_sym_yield] = ACTIONS(2352), - [anon_sym_move] = ACTIONS(2352), - [anon_sym_try] = ACTIONS(2352), - [sym_integer_literal] = ACTIONS(2350), - [aux_sym_string_literal_token1] = ACTIONS(2350), - [sym_char_literal] = ACTIONS(2350), - [anon_sym_true] = ACTIONS(2352), - [anon_sym_false] = ACTIONS(2352), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2352), - [sym_super] = ACTIONS(2352), - [sym_crate] = ACTIONS(2352), - [sym_metavariable] = ACTIONS(2350), - [sym__raw_string_literal_start] = ACTIONS(2350), - [sym_float_literal] = ACTIONS(2350), - }, - [628] = { - [sym_line_comment] = STATE(628), - [sym_block_comment] = STATE(628), - [ts_builtin_sym_end] = ACTIONS(2354), - [sym_identifier] = ACTIONS(2356), - [anon_sym_SEMI] = ACTIONS(2354), - [anon_sym_macro_rules_BANG] = ACTIONS(2354), - [anon_sym_LPAREN] = ACTIONS(2354), - [anon_sym_LBRACK] = ACTIONS(2354), - [anon_sym_LBRACE] = ACTIONS(2354), - [anon_sym_RBRACE] = ACTIONS(2354), - [anon_sym_STAR] = ACTIONS(2354), - [anon_sym_u8] = ACTIONS(2356), - [anon_sym_i8] = ACTIONS(2356), - [anon_sym_u16] = ACTIONS(2356), - [anon_sym_i16] = ACTIONS(2356), - [anon_sym_u32] = ACTIONS(2356), - [anon_sym_i32] = ACTIONS(2356), - [anon_sym_u64] = ACTIONS(2356), - [anon_sym_i64] = ACTIONS(2356), - [anon_sym_u128] = ACTIONS(2356), - [anon_sym_i128] = ACTIONS(2356), - [anon_sym_isize] = ACTIONS(2356), - [anon_sym_usize] = ACTIONS(2356), - [anon_sym_f32] = ACTIONS(2356), - [anon_sym_f64] = ACTIONS(2356), - [anon_sym_bool] = ACTIONS(2356), - [anon_sym_str] = ACTIONS(2356), - [anon_sym_char] = ACTIONS(2356), - [anon_sym_DASH] = ACTIONS(2354), - [anon_sym_BANG] = ACTIONS(2354), - [anon_sym_AMP] = ACTIONS(2354), - [anon_sym_PIPE] = ACTIONS(2354), - [anon_sym_LT] = ACTIONS(2354), - [anon_sym_DOT_DOT] = ACTIONS(2354), - [anon_sym_COLON_COLON] = ACTIONS(2354), - [anon_sym_POUND] = ACTIONS(2354), - [anon_sym_SQUOTE] = ACTIONS(2356), - [anon_sym_async] = ACTIONS(2356), - [anon_sym_break] = ACTIONS(2356), - [anon_sym_const] = ACTIONS(2356), - [anon_sym_continue] = ACTIONS(2356), - [anon_sym_default] = ACTIONS(2356), - [anon_sym_enum] = ACTIONS(2356), - [anon_sym_fn] = ACTIONS(2356), - [anon_sym_for] = ACTIONS(2356), - [anon_sym_if] = ACTIONS(2356), - [anon_sym_impl] = ACTIONS(2356), - [anon_sym_let] = ACTIONS(2356), - [anon_sym_loop] = ACTIONS(2356), - [anon_sym_match] = ACTIONS(2356), - [anon_sym_mod] = ACTIONS(2356), - [anon_sym_pub] = ACTIONS(2356), - [anon_sym_return] = ACTIONS(2356), - [anon_sym_static] = ACTIONS(2356), - [anon_sym_struct] = ACTIONS(2356), - [anon_sym_trait] = ACTIONS(2356), - [anon_sym_type] = ACTIONS(2356), - [anon_sym_union] = ACTIONS(2356), - [anon_sym_unsafe] = ACTIONS(2356), - [anon_sym_use] = ACTIONS(2356), - [anon_sym_while] = ACTIONS(2356), - [anon_sym_extern] = ACTIONS(2356), - [anon_sym_yield] = ACTIONS(2356), - [anon_sym_move] = ACTIONS(2356), - [anon_sym_try] = ACTIONS(2356), - [sym_integer_literal] = ACTIONS(2354), - [aux_sym_string_literal_token1] = ACTIONS(2354), - [sym_char_literal] = ACTIONS(2354), - [anon_sym_true] = ACTIONS(2356), - [anon_sym_false] = ACTIONS(2356), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2356), - [sym_super] = ACTIONS(2356), - [sym_crate] = ACTIONS(2356), - [sym_metavariable] = ACTIONS(2354), - [sym__raw_string_literal_start] = ACTIONS(2354), - [sym_float_literal] = ACTIONS(2354), - }, - [629] = { + [646] = { [sym_empty_statement] = STATE(1456), [sym_macro_definition] = STATE(1456), [sym_attribute_item] = STATE(1456), @@ -80520,473 +81901,73 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_type_item] = STATE(1456), [sym_function_item] = STATE(1456), [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3599), + [sym_function_modifiers] = STATE(3593), [sym_impl_item] = STATE(1456), [sym_trait_item] = STATE(1456), [sym_associated_type] = STATE(1456), [sym_let_declaration] = STATE(1456), [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2139), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3323), - [sym_generic_type_with_turbofish] = STATE(3349), + [sym_extern_modifier] = STATE(2154), + [sym_visibility_modifier] = STATE(1934), + [sym_bracketed_type] = STATE(3324), + [sym_generic_type_with_turbofish] = STATE(3350), [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3208), - [sym_line_comment] = STATE(629), - [sym_block_comment] = STATE(629), - [aux_sym_declaration_list_repeat1] = STATE(707), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(2358), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1890), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_mod] = ACTIONS(1896), + [sym_scoped_identifier] = STATE(3156), + [sym_line_comment] = STATE(646), + [sym_block_comment] = STATE(646), + [aux_sym_declaration_list_repeat1] = STATE(692), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_macro_rules_BANG] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_u8] = ACTIONS(2338), + [anon_sym_i8] = ACTIONS(2338), + [anon_sym_u16] = ACTIONS(2338), + [anon_sym_i16] = ACTIONS(2338), + [anon_sym_u32] = ACTIONS(2338), + [anon_sym_i32] = ACTIONS(2338), + [anon_sym_u64] = ACTIONS(2338), + [anon_sym_i64] = ACTIONS(2338), + [anon_sym_u128] = ACTIONS(2338), + [anon_sym_i128] = ACTIONS(2338), + [anon_sym_isize] = ACTIONS(2338), + [anon_sym_usize] = ACTIONS(2338), + [anon_sym_f32] = ACTIONS(2338), + [anon_sym_f64] = ACTIONS(2338), + [anon_sym_bool] = ACTIONS(2338), + [anon_sym_str] = ACTIONS(2338), + [anon_sym_char] = ACTIONS(2338), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(2342), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2348), + [anon_sym_fn] = ACTIONS(2350), + [anon_sym_impl] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_mod] = ACTIONS(2356), [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1902), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1918), - }, - [630] = { - [sym_line_comment] = STATE(630), - [sym_block_comment] = STATE(630), - [ts_builtin_sym_end] = ACTIONS(2360), - [sym_identifier] = ACTIONS(2362), - [anon_sym_SEMI] = ACTIONS(2360), - [anon_sym_macro_rules_BANG] = ACTIONS(2360), - [anon_sym_LPAREN] = ACTIONS(2360), - [anon_sym_LBRACK] = ACTIONS(2360), - [anon_sym_LBRACE] = ACTIONS(2360), - [anon_sym_RBRACE] = ACTIONS(2360), - [anon_sym_STAR] = ACTIONS(2360), - [anon_sym_u8] = ACTIONS(2362), - [anon_sym_i8] = ACTIONS(2362), - [anon_sym_u16] = ACTIONS(2362), - [anon_sym_i16] = ACTIONS(2362), - [anon_sym_u32] = ACTIONS(2362), - [anon_sym_i32] = ACTIONS(2362), - [anon_sym_u64] = ACTIONS(2362), - [anon_sym_i64] = ACTIONS(2362), - [anon_sym_u128] = ACTIONS(2362), - [anon_sym_i128] = ACTIONS(2362), - [anon_sym_isize] = ACTIONS(2362), - [anon_sym_usize] = ACTIONS(2362), - [anon_sym_f32] = ACTIONS(2362), - [anon_sym_f64] = ACTIONS(2362), - [anon_sym_bool] = ACTIONS(2362), - [anon_sym_str] = ACTIONS(2362), - [anon_sym_char] = ACTIONS(2362), - [anon_sym_DASH] = ACTIONS(2360), - [anon_sym_BANG] = ACTIONS(2360), - [anon_sym_AMP] = ACTIONS(2360), - [anon_sym_PIPE] = ACTIONS(2360), - [anon_sym_LT] = ACTIONS(2360), - [anon_sym_DOT_DOT] = ACTIONS(2360), - [anon_sym_COLON_COLON] = ACTIONS(2360), - [anon_sym_POUND] = ACTIONS(2360), - [anon_sym_SQUOTE] = ACTIONS(2362), - [anon_sym_async] = ACTIONS(2362), - [anon_sym_break] = ACTIONS(2362), - [anon_sym_const] = ACTIONS(2362), - [anon_sym_continue] = ACTIONS(2362), - [anon_sym_default] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2362), - [anon_sym_fn] = ACTIONS(2362), - [anon_sym_for] = ACTIONS(2362), - [anon_sym_if] = ACTIONS(2362), - [anon_sym_impl] = ACTIONS(2362), - [anon_sym_let] = ACTIONS(2362), - [anon_sym_loop] = ACTIONS(2362), - [anon_sym_match] = ACTIONS(2362), - [anon_sym_mod] = ACTIONS(2362), - [anon_sym_pub] = ACTIONS(2362), - [anon_sym_return] = ACTIONS(2362), - [anon_sym_static] = ACTIONS(2362), - [anon_sym_struct] = ACTIONS(2362), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2360), [anon_sym_trait] = ACTIONS(2362), - [anon_sym_type] = ACTIONS(2362), - [anon_sym_union] = ACTIONS(2362), - [anon_sym_unsafe] = ACTIONS(2362), - [anon_sym_use] = ACTIONS(2362), - [anon_sym_while] = ACTIONS(2362), - [anon_sym_extern] = ACTIONS(2362), - [anon_sym_yield] = ACTIONS(2362), - [anon_sym_move] = ACTIONS(2362), - [anon_sym_try] = ACTIONS(2362), - [sym_integer_literal] = ACTIONS(2360), - [aux_sym_string_literal_token1] = ACTIONS(2360), - [sym_char_literal] = ACTIONS(2360), - [anon_sym_true] = ACTIONS(2362), - [anon_sym_false] = ACTIONS(2362), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2362), - [sym_super] = ACTIONS(2362), - [sym_crate] = ACTIONS(2362), - [sym_metavariable] = ACTIONS(2360), - [sym__raw_string_literal_start] = ACTIONS(2360), - [sym_float_literal] = ACTIONS(2360), - }, - [631] = { - [sym_line_comment] = STATE(631), - [sym_block_comment] = STATE(631), - [ts_builtin_sym_end] = ACTIONS(2364), - [sym_identifier] = ACTIONS(2366), - [anon_sym_SEMI] = ACTIONS(2364), - [anon_sym_macro_rules_BANG] = ACTIONS(2364), - [anon_sym_LPAREN] = ACTIONS(2364), - [anon_sym_LBRACK] = ACTIONS(2364), - [anon_sym_LBRACE] = ACTIONS(2364), - [anon_sym_RBRACE] = ACTIONS(2364), - [anon_sym_STAR] = ACTIONS(2364), - [anon_sym_u8] = ACTIONS(2366), - [anon_sym_i8] = ACTIONS(2366), - [anon_sym_u16] = ACTIONS(2366), - [anon_sym_i16] = ACTIONS(2366), - [anon_sym_u32] = ACTIONS(2366), - [anon_sym_i32] = ACTIONS(2366), - [anon_sym_u64] = ACTIONS(2366), - [anon_sym_i64] = ACTIONS(2366), - [anon_sym_u128] = ACTIONS(2366), - [anon_sym_i128] = ACTIONS(2366), - [anon_sym_isize] = ACTIONS(2366), - [anon_sym_usize] = ACTIONS(2366), - [anon_sym_f32] = ACTIONS(2366), - [anon_sym_f64] = ACTIONS(2366), - [anon_sym_bool] = ACTIONS(2366), - [anon_sym_str] = ACTIONS(2366), - [anon_sym_char] = ACTIONS(2366), - [anon_sym_DASH] = ACTIONS(2364), - [anon_sym_BANG] = ACTIONS(2364), - [anon_sym_AMP] = ACTIONS(2364), - [anon_sym_PIPE] = ACTIONS(2364), - [anon_sym_LT] = ACTIONS(2364), - [anon_sym_DOT_DOT] = ACTIONS(2364), - [anon_sym_COLON_COLON] = ACTIONS(2364), - [anon_sym_POUND] = ACTIONS(2364), - [anon_sym_SQUOTE] = ACTIONS(2366), - [anon_sym_async] = ACTIONS(2366), - [anon_sym_break] = ACTIONS(2366), - [anon_sym_const] = ACTIONS(2366), - [anon_sym_continue] = ACTIONS(2366), - [anon_sym_default] = ACTIONS(2366), - [anon_sym_enum] = ACTIONS(2366), - [anon_sym_fn] = ACTIONS(2366), - [anon_sym_for] = ACTIONS(2366), - [anon_sym_if] = ACTIONS(2366), - [anon_sym_impl] = ACTIONS(2366), - [anon_sym_let] = ACTIONS(2366), - [anon_sym_loop] = ACTIONS(2366), - [anon_sym_match] = ACTIONS(2366), - [anon_sym_mod] = ACTIONS(2366), - [anon_sym_pub] = ACTIONS(2366), - [anon_sym_return] = ACTIONS(2366), - [anon_sym_static] = ACTIONS(2366), - [anon_sym_struct] = ACTIONS(2366), - [anon_sym_trait] = ACTIONS(2366), - [anon_sym_type] = ACTIONS(2366), + [anon_sym_type] = ACTIONS(2364), [anon_sym_union] = ACTIONS(2366), - [anon_sym_unsafe] = ACTIONS(2366), - [anon_sym_use] = ACTIONS(2366), - [anon_sym_while] = ACTIONS(2366), - [anon_sym_extern] = ACTIONS(2366), - [anon_sym_yield] = ACTIONS(2366), - [anon_sym_move] = ACTIONS(2366), - [anon_sym_try] = ACTIONS(2366), - [sym_integer_literal] = ACTIONS(2364), - [aux_sym_string_literal_token1] = ACTIONS(2364), - [sym_char_literal] = ACTIONS(2364), - [anon_sym_true] = ACTIONS(2366), - [anon_sym_false] = ACTIONS(2366), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2366), - [sym_super] = ACTIONS(2366), - [sym_crate] = ACTIONS(2366), - [sym_metavariable] = ACTIONS(2364), - [sym__raw_string_literal_start] = ACTIONS(2364), - [sym_float_literal] = ACTIONS(2364), - }, - [632] = { - [sym_line_comment] = STATE(632), - [sym_block_comment] = STATE(632), - [ts_builtin_sym_end] = ACTIONS(2368), - [sym_identifier] = ACTIONS(2370), - [anon_sym_SEMI] = ACTIONS(2368), - [anon_sym_macro_rules_BANG] = ACTIONS(2368), - [anon_sym_LPAREN] = ACTIONS(2368), - [anon_sym_LBRACK] = ACTIONS(2368), - [anon_sym_LBRACE] = ACTIONS(2368), - [anon_sym_RBRACE] = ACTIONS(2368), - [anon_sym_STAR] = ACTIONS(2368), - [anon_sym_u8] = ACTIONS(2370), - [anon_sym_i8] = ACTIONS(2370), - [anon_sym_u16] = ACTIONS(2370), - [anon_sym_i16] = ACTIONS(2370), - [anon_sym_u32] = ACTIONS(2370), - [anon_sym_i32] = ACTIONS(2370), - [anon_sym_u64] = ACTIONS(2370), - [anon_sym_i64] = ACTIONS(2370), - [anon_sym_u128] = ACTIONS(2370), - [anon_sym_i128] = ACTIONS(2370), - [anon_sym_isize] = ACTIONS(2370), - [anon_sym_usize] = ACTIONS(2370), - [anon_sym_f32] = ACTIONS(2370), - [anon_sym_f64] = ACTIONS(2370), - [anon_sym_bool] = ACTIONS(2370), - [anon_sym_str] = ACTIONS(2370), - [anon_sym_char] = ACTIONS(2370), - [anon_sym_DASH] = ACTIONS(2368), - [anon_sym_BANG] = ACTIONS(2368), - [anon_sym_AMP] = ACTIONS(2368), - [anon_sym_PIPE] = ACTIONS(2368), - [anon_sym_LT] = ACTIONS(2368), - [anon_sym_DOT_DOT] = ACTIONS(2368), - [anon_sym_COLON_COLON] = ACTIONS(2368), - [anon_sym_POUND] = ACTIONS(2368), - [anon_sym_SQUOTE] = ACTIONS(2370), - [anon_sym_async] = ACTIONS(2370), - [anon_sym_break] = ACTIONS(2370), - [anon_sym_const] = ACTIONS(2370), - [anon_sym_continue] = ACTIONS(2370), - [anon_sym_default] = ACTIONS(2370), - [anon_sym_enum] = ACTIONS(2370), - [anon_sym_fn] = ACTIONS(2370), - [anon_sym_for] = ACTIONS(2370), - [anon_sym_if] = ACTIONS(2370), - [anon_sym_impl] = ACTIONS(2370), - [anon_sym_let] = ACTIONS(2370), - [anon_sym_loop] = ACTIONS(2370), - [anon_sym_match] = ACTIONS(2370), - [anon_sym_mod] = ACTIONS(2370), - [anon_sym_pub] = ACTIONS(2370), - [anon_sym_return] = ACTIONS(2370), - [anon_sym_static] = ACTIONS(2370), - [anon_sym_struct] = ACTIONS(2370), - [anon_sym_trait] = ACTIONS(2370), - [anon_sym_type] = ACTIONS(2370), - [anon_sym_union] = ACTIONS(2370), - [anon_sym_unsafe] = ACTIONS(2370), + [anon_sym_unsafe] = ACTIONS(2368), [anon_sym_use] = ACTIONS(2370), - [anon_sym_while] = ACTIONS(2370), - [anon_sym_extern] = ACTIONS(2370), - [anon_sym_yield] = ACTIONS(2370), - [anon_sym_move] = ACTIONS(2370), - [anon_sym_try] = ACTIONS(2370), - [sym_integer_literal] = ACTIONS(2368), - [aux_sym_string_literal_token1] = ACTIONS(2368), - [sym_char_literal] = ACTIONS(2368), - [anon_sym_true] = ACTIONS(2370), - [anon_sym_false] = ACTIONS(2370), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2370), - [sym_super] = ACTIONS(2370), - [sym_crate] = ACTIONS(2370), - [sym_metavariable] = ACTIONS(2368), - [sym__raw_string_literal_start] = ACTIONS(2368), - [sym_float_literal] = ACTIONS(2368), - }, - [633] = { - [sym_line_comment] = STATE(633), - [sym_block_comment] = STATE(633), - [ts_builtin_sym_end] = ACTIONS(2372), - [sym_identifier] = ACTIONS(2374), - [anon_sym_SEMI] = ACTIONS(2372), - [anon_sym_macro_rules_BANG] = ACTIONS(2372), - [anon_sym_LPAREN] = ACTIONS(2372), - [anon_sym_LBRACK] = ACTIONS(2372), - [anon_sym_LBRACE] = ACTIONS(2372), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_STAR] = ACTIONS(2372), - [anon_sym_u8] = ACTIONS(2374), - [anon_sym_i8] = ACTIONS(2374), - [anon_sym_u16] = ACTIONS(2374), - [anon_sym_i16] = ACTIONS(2374), - [anon_sym_u32] = ACTIONS(2374), - [anon_sym_i32] = ACTIONS(2374), - [anon_sym_u64] = ACTIONS(2374), - [anon_sym_i64] = ACTIONS(2374), - [anon_sym_u128] = ACTIONS(2374), - [anon_sym_i128] = ACTIONS(2374), - [anon_sym_isize] = ACTIONS(2374), - [anon_sym_usize] = ACTIONS(2374), - [anon_sym_f32] = ACTIONS(2374), - [anon_sym_f64] = ACTIONS(2374), - [anon_sym_bool] = ACTIONS(2374), - [anon_sym_str] = ACTIONS(2374), - [anon_sym_char] = ACTIONS(2374), - [anon_sym_DASH] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(2372), - [anon_sym_AMP] = ACTIONS(2372), - [anon_sym_PIPE] = ACTIONS(2372), - [anon_sym_LT] = ACTIONS(2372), - [anon_sym_DOT_DOT] = ACTIONS(2372), - [anon_sym_COLON_COLON] = ACTIONS(2372), - [anon_sym_POUND] = ACTIONS(2372), - [anon_sym_SQUOTE] = ACTIONS(2374), - [anon_sym_async] = ACTIONS(2374), - [anon_sym_break] = ACTIONS(2374), - [anon_sym_const] = ACTIONS(2374), - [anon_sym_continue] = ACTIONS(2374), - [anon_sym_default] = ACTIONS(2374), - [anon_sym_enum] = ACTIONS(2374), - [anon_sym_fn] = ACTIONS(2374), - [anon_sym_for] = ACTIONS(2374), - [anon_sym_if] = ACTIONS(2374), - [anon_sym_impl] = ACTIONS(2374), - [anon_sym_let] = ACTIONS(2374), - [anon_sym_loop] = ACTIONS(2374), - [anon_sym_match] = ACTIONS(2374), - [anon_sym_mod] = ACTIONS(2374), - [anon_sym_pub] = ACTIONS(2374), - [anon_sym_return] = ACTIONS(2374), - [anon_sym_static] = ACTIONS(2374), - [anon_sym_struct] = ACTIONS(2374), - [anon_sym_trait] = ACTIONS(2374), - [anon_sym_type] = ACTIONS(2374), - [anon_sym_union] = ACTIONS(2374), - [anon_sym_unsafe] = ACTIONS(2374), - [anon_sym_use] = ACTIONS(2374), - [anon_sym_while] = ACTIONS(2374), - [anon_sym_extern] = ACTIONS(2374), - [anon_sym_yield] = ACTIONS(2374), - [anon_sym_move] = ACTIONS(2374), - [anon_sym_try] = ACTIONS(2374), - [sym_integer_literal] = ACTIONS(2372), - [aux_sym_string_literal_token1] = ACTIONS(2372), - [sym_char_literal] = ACTIONS(2372), - [anon_sym_true] = ACTIONS(2374), - [anon_sym_false] = ACTIONS(2374), + [anon_sym_extern] = ACTIONS(2372), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2374), [sym_super] = ACTIONS(2374), - [sym_crate] = ACTIONS(2374), - [sym_metavariable] = ACTIONS(2372), - [sym__raw_string_literal_start] = ACTIONS(2372), - [sym_float_literal] = ACTIONS(2372), - }, - [634] = { - [sym_line_comment] = STATE(634), - [sym_block_comment] = STATE(634), - [ts_builtin_sym_end] = ACTIONS(2376), - [sym_identifier] = ACTIONS(2378), - [anon_sym_SEMI] = ACTIONS(2376), - [anon_sym_macro_rules_BANG] = ACTIONS(2376), - [anon_sym_LPAREN] = ACTIONS(2376), - [anon_sym_LBRACK] = ACTIONS(2376), - [anon_sym_LBRACE] = ACTIONS(2376), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_STAR] = ACTIONS(2376), - [anon_sym_u8] = ACTIONS(2378), - [anon_sym_i8] = ACTIONS(2378), - [anon_sym_u16] = ACTIONS(2378), - [anon_sym_i16] = ACTIONS(2378), - [anon_sym_u32] = ACTIONS(2378), - [anon_sym_i32] = ACTIONS(2378), - [anon_sym_u64] = ACTIONS(2378), - [anon_sym_i64] = ACTIONS(2378), - [anon_sym_u128] = ACTIONS(2378), - [anon_sym_i128] = ACTIONS(2378), - [anon_sym_isize] = ACTIONS(2378), - [anon_sym_usize] = ACTIONS(2378), - [anon_sym_f32] = ACTIONS(2378), - [anon_sym_f64] = ACTIONS(2378), - [anon_sym_bool] = ACTIONS(2378), - [anon_sym_str] = ACTIONS(2378), - [anon_sym_char] = ACTIONS(2378), - [anon_sym_DASH] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(2376), - [anon_sym_AMP] = ACTIONS(2376), - [anon_sym_PIPE] = ACTIONS(2376), - [anon_sym_LT] = ACTIONS(2376), - [anon_sym_DOT_DOT] = ACTIONS(2376), - [anon_sym_COLON_COLON] = ACTIONS(2376), - [anon_sym_POUND] = ACTIONS(2376), - [anon_sym_SQUOTE] = ACTIONS(2378), - [anon_sym_async] = ACTIONS(2378), - [anon_sym_break] = ACTIONS(2378), - [anon_sym_const] = ACTIONS(2378), - [anon_sym_continue] = ACTIONS(2378), - [anon_sym_default] = ACTIONS(2378), - [anon_sym_enum] = ACTIONS(2378), - [anon_sym_fn] = ACTIONS(2378), - [anon_sym_for] = ACTIONS(2378), - [anon_sym_if] = ACTIONS(2378), - [anon_sym_impl] = ACTIONS(2378), - [anon_sym_let] = ACTIONS(2378), - [anon_sym_loop] = ACTIONS(2378), - [anon_sym_match] = ACTIONS(2378), - [anon_sym_mod] = ACTIONS(2378), - [anon_sym_pub] = ACTIONS(2378), - [anon_sym_return] = ACTIONS(2378), - [anon_sym_static] = ACTIONS(2378), - [anon_sym_struct] = ACTIONS(2378), - [anon_sym_trait] = ACTIONS(2378), - [anon_sym_type] = ACTIONS(2378), - [anon_sym_union] = ACTIONS(2378), - [anon_sym_unsafe] = ACTIONS(2378), - [anon_sym_use] = ACTIONS(2378), - [anon_sym_while] = ACTIONS(2378), - [anon_sym_extern] = ACTIONS(2378), - [anon_sym_yield] = ACTIONS(2378), - [anon_sym_move] = ACTIONS(2378), - [anon_sym_try] = ACTIONS(2378), - [sym_integer_literal] = ACTIONS(2376), - [aux_sym_string_literal_token1] = ACTIONS(2376), - [sym_char_literal] = ACTIONS(2376), - [anon_sym_true] = ACTIONS(2378), - [anon_sym_false] = ACTIONS(2378), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2378), - [sym_super] = ACTIONS(2378), - [sym_crate] = ACTIONS(2378), - [sym_metavariable] = ACTIONS(2376), - [sym__raw_string_literal_start] = ACTIONS(2376), - [sym_float_literal] = ACTIONS(2376), + [sym_crate] = ACTIONS(2376), + [sym_metavariable] = ACTIONS(2378), }, - [635] = { - [sym_line_comment] = STATE(635), - [sym_block_comment] = STATE(635), + [647] = { + [sym_line_comment] = STATE(647), + [sym_block_comment] = STATE(647), [ts_builtin_sym_end] = ACTIONS(2380), [sym_identifier] = ACTIONS(2382), [anon_sym_SEMI] = ACTIONS(2380), @@ -81064,9 +82045,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2380), [sym_float_literal] = ACTIONS(2380), }, - [636] = { - [sym_line_comment] = STATE(636), - [sym_block_comment] = STATE(636), + [648] = { + [sym_line_comment] = STATE(648), + [sym_block_comment] = STATE(648), [ts_builtin_sym_end] = ACTIONS(2384), [sym_identifier] = ACTIONS(2386), [anon_sym_SEMI] = ACTIONS(2384), @@ -81144,9 +82125,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2384), [sym_float_literal] = ACTIONS(2384), }, - [637] = { - [sym_line_comment] = STATE(637), - [sym_block_comment] = STATE(637), + [649] = { + [sym_line_comment] = STATE(649), + [sym_block_comment] = STATE(649), [ts_builtin_sym_end] = ACTIONS(2388), [sym_identifier] = ACTIONS(2390), [anon_sym_SEMI] = ACTIONS(2388), @@ -81224,9 +82205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2388), [sym_float_literal] = ACTIONS(2388), }, - [638] = { - [sym_line_comment] = STATE(638), - [sym_block_comment] = STATE(638), + [650] = { + [sym_line_comment] = STATE(650), + [sym_block_comment] = STATE(650), [ts_builtin_sym_end] = ACTIONS(2392), [sym_identifier] = ACTIONS(2394), [anon_sym_SEMI] = ACTIONS(2392), @@ -81304,9 +82285,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2392), [sym_float_literal] = ACTIONS(2392), }, - [639] = { - [sym_line_comment] = STATE(639), - [sym_block_comment] = STATE(639), + [651] = { + [sym_line_comment] = STATE(651), + [sym_block_comment] = STATE(651), [ts_builtin_sym_end] = ACTIONS(2396), [sym_identifier] = ACTIONS(2398), [anon_sym_SEMI] = ACTIONS(2396), @@ -81384,89 +82365,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2396), [sym_float_literal] = ACTIONS(2396), }, - [640] = { - [sym_line_comment] = STATE(640), - [sym_block_comment] = STATE(640), - [ts_builtin_sym_end] = ACTIONS(1236), - [sym_identifier] = ACTIONS(1238), - [anon_sym_SEMI] = ACTIONS(1236), - [anon_sym_macro_rules_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1236), - [anon_sym_LBRACK] = ACTIONS(1236), - [anon_sym_LBRACE] = ACTIONS(1236), - [anon_sym_RBRACE] = ACTIONS(1236), - [anon_sym_STAR] = ACTIONS(1236), - [anon_sym_u8] = ACTIONS(1238), - [anon_sym_i8] = ACTIONS(1238), - [anon_sym_u16] = ACTIONS(1238), - [anon_sym_i16] = ACTIONS(1238), - [anon_sym_u32] = ACTIONS(1238), - [anon_sym_i32] = ACTIONS(1238), - [anon_sym_u64] = ACTIONS(1238), - [anon_sym_i64] = ACTIONS(1238), - [anon_sym_u128] = ACTIONS(1238), - [anon_sym_i128] = ACTIONS(1238), - [anon_sym_isize] = ACTIONS(1238), - [anon_sym_usize] = ACTIONS(1238), - [anon_sym_f32] = ACTIONS(1238), - [anon_sym_f64] = ACTIONS(1238), - [anon_sym_bool] = ACTIONS(1238), - [anon_sym_str] = ACTIONS(1238), - [anon_sym_char] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1236), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_AMP] = ACTIONS(1236), - [anon_sym_PIPE] = ACTIONS(1236), - [anon_sym_LT] = ACTIONS(1236), - [anon_sym_DOT_DOT] = ACTIONS(1236), - [anon_sym_COLON_COLON] = ACTIONS(1236), - [anon_sym_POUND] = ACTIONS(1236), - [anon_sym_SQUOTE] = ACTIONS(1238), - [anon_sym_async] = ACTIONS(1238), - [anon_sym_break] = ACTIONS(1238), - [anon_sym_const] = ACTIONS(1238), - [anon_sym_continue] = ACTIONS(1238), - [anon_sym_default] = ACTIONS(1238), - [anon_sym_enum] = ACTIONS(1238), - [anon_sym_fn] = ACTIONS(1238), - [anon_sym_for] = ACTIONS(1238), - [anon_sym_if] = ACTIONS(1238), - [anon_sym_impl] = ACTIONS(1238), - [anon_sym_let] = ACTIONS(1238), - [anon_sym_loop] = ACTIONS(1238), - [anon_sym_match] = ACTIONS(1238), - [anon_sym_mod] = ACTIONS(1238), - [anon_sym_pub] = ACTIONS(1238), - [anon_sym_return] = ACTIONS(1238), - [anon_sym_static] = ACTIONS(1238), - [anon_sym_struct] = ACTIONS(1238), - [anon_sym_trait] = ACTIONS(1238), - [anon_sym_type] = ACTIONS(1238), - [anon_sym_union] = ACTIONS(1238), - [anon_sym_unsafe] = ACTIONS(1238), - [anon_sym_use] = ACTIONS(1238), - [anon_sym_while] = ACTIONS(1238), - [anon_sym_extern] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1238), - [anon_sym_move] = ACTIONS(1238), - [anon_sym_try] = ACTIONS(1238), - [sym_integer_literal] = ACTIONS(1236), - [aux_sym_string_literal_token1] = ACTIONS(1236), - [sym_char_literal] = ACTIONS(1236), - [anon_sym_true] = ACTIONS(1238), - [anon_sym_false] = ACTIONS(1238), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1238), - [sym_super] = ACTIONS(1238), - [sym_crate] = ACTIONS(1238), - [sym_metavariable] = ACTIONS(1236), - [sym__raw_string_literal_start] = ACTIONS(1236), - [sym_float_literal] = ACTIONS(1236), + [652] = { + [sym_line_comment] = STATE(652), + [sym_block_comment] = STATE(652), + [ts_builtin_sym_end] = ACTIONS(1432), + [sym_identifier] = ACTIONS(1434), + [anon_sym_SEMI] = ACTIONS(1432), + [anon_sym_macro_rules_BANG] = ACTIONS(1432), + [anon_sym_LPAREN] = ACTIONS(1432), + [anon_sym_LBRACK] = ACTIONS(1432), + [anon_sym_LBRACE] = ACTIONS(1432), + [anon_sym_RBRACE] = ACTIONS(1432), + [anon_sym_STAR] = ACTIONS(1432), + [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_DASH] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(1432), + [anon_sym_PIPE] = ACTIONS(1432), + [anon_sym_LT] = ACTIONS(1432), + [anon_sym_DOT_DOT] = ACTIONS(1432), + [anon_sym_COLON_COLON] = ACTIONS(1432), + [anon_sym_POUND] = ACTIONS(1432), + [anon_sym_SQUOTE] = ACTIONS(1434), + [anon_sym_async] = 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_while] = ACTIONS(1434), + [anon_sym_extern] = ACTIONS(1434), + [anon_sym_yield] = ACTIONS(1434), + [anon_sym_move] = ACTIONS(1434), + [anon_sym_try] = ACTIONS(1434), + [sym_integer_literal] = ACTIONS(1432), + [aux_sym_string_literal_token1] = ACTIONS(1432), + [sym_char_literal] = ACTIONS(1432), + [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(1432), + [sym__raw_string_literal_start] = ACTIONS(1432), + [sym_float_literal] = ACTIONS(1432), }, - [641] = { - [sym_line_comment] = STATE(641), - [sym_block_comment] = STATE(641), + [653] = { + [sym_line_comment] = STATE(653), + [sym_block_comment] = STATE(653), [ts_builtin_sym_end] = ACTIONS(2400), [sym_identifier] = ACTIONS(2402), [anon_sym_SEMI] = ACTIONS(2400), @@ -81537,256 +82518,1296 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_false] = ACTIONS(2402), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2402), - [sym_super] = ACTIONS(2402), - [sym_crate] = ACTIONS(2402), - [sym_metavariable] = ACTIONS(2400), - [sym__raw_string_literal_start] = ACTIONS(2400), - [sym_float_literal] = ACTIONS(2400), + [sym_self] = ACTIONS(2402), + [sym_super] = ACTIONS(2402), + [sym_crate] = ACTIONS(2402), + [sym_metavariable] = ACTIONS(2400), + [sym__raw_string_literal_start] = ACTIONS(2400), + [sym_float_literal] = ACTIONS(2400), + }, + [654] = { + [sym_empty_statement] = STATE(1456), + [sym_macro_definition] = STATE(1456), + [sym_attribute_item] = STATE(1456), + [sym_inner_attribute_item] = STATE(1456), + [sym_mod_item] = STATE(1456), + [sym_foreign_mod_item] = STATE(1456), + [sym_struct_item] = STATE(1456), + [sym_union_item] = STATE(1456), + [sym_enum_item] = STATE(1456), + [sym_extern_crate_declaration] = STATE(1456), + [sym_const_item] = STATE(1456), + [sym_static_item] = STATE(1456), + [sym_type_item] = STATE(1456), + [sym_function_item] = STATE(1456), + [sym_function_signature_item] = STATE(1456), + [sym_function_modifiers] = STATE(3593), + [sym_impl_item] = STATE(1456), + [sym_trait_item] = STATE(1456), + [sym_associated_type] = STATE(1456), + [sym_let_declaration] = STATE(1456), + [sym_use_declaration] = STATE(1456), + [sym_extern_modifier] = STATE(2154), + [sym_visibility_modifier] = STATE(1934), + [sym_bracketed_type] = STATE(3324), + [sym_generic_type_with_turbofish] = STATE(3350), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3156), + [sym_line_comment] = STATE(654), + [sym_block_comment] = STATE(654), + [aux_sym_declaration_list_repeat1] = STATE(646), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_macro_rules_BANG] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2404), + [anon_sym_u8] = ACTIONS(2338), + [anon_sym_i8] = ACTIONS(2338), + [anon_sym_u16] = ACTIONS(2338), + [anon_sym_i16] = ACTIONS(2338), + [anon_sym_u32] = ACTIONS(2338), + [anon_sym_i32] = ACTIONS(2338), + [anon_sym_u64] = ACTIONS(2338), + [anon_sym_i64] = ACTIONS(2338), + [anon_sym_u128] = ACTIONS(2338), + [anon_sym_i128] = ACTIONS(2338), + [anon_sym_isize] = ACTIONS(2338), + [anon_sym_usize] = ACTIONS(2338), + [anon_sym_f32] = ACTIONS(2338), + [anon_sym_f64] = ACTIONS(2338), + [anon_sym_bool] = ACTIONS(2338), + [anon_sym_str] = ACTIONS(2338), + [anon_sym_char] = ACTIONS(2338), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(2342), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2348), + [anon_sym_fn] = ACTIONS(2350), + [anon_sym_impl] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_mod] = ACTIONS(2356), + [anon_sym_pub] = ACTIONS(67), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_trait] = ACTIONS(2362), + [anon_sym_type] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2366), + [anon_sym_unsafe] = ACTIONS(2368), + [anon_sym_use] = ACTIONS(2370), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2374), + [sym_super] = ACTIONS(2374), + [sym_crate] = ACTIONS(2376), + [sym_metavariable] = ACTIONS(2378), + }, + [655] = { + [sym_line_comment] = STATE(655), + [sym_block_comment] = STATE(655), + [ts_builtin_sym_end] = ACTIONS(2406), + [sym_identifier] = ACTIONS(2408), + [anon_sym_SEMI] = ACTIONS(2406), + [anon_sym_macro_rules_BANG] = ACTIONS(2406), + [anon_sym_LPAREN] = ACTIONS(2406), + [anon_sym_LBRACK] = ACTIONS(2406), + [anon_sym_LBRACE] = ACTIONS(2406), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_STAR] = ACTIONS(2406), + [anon_sym_u8] = ACTIONS(2408), + [anon_sym_i8] = ACTIONS(2408), + [anon_sym_u16] = ACTIONS(2408), + [anon_sym_i16] = ACTIONS(2408), + [anon_sym_u32] = ACTIONS(2408), + [anon_sym_i32] = ACTIONS(2408), + [anon_sym_u64] = ACTIONS(2408), + [anon_sym_i64] = ACTIONS(2408), + [anon_sym_u128] = ACTIONS(2408), + [anon_sym_i128] = ACTIONS(2408), + [anon_sym_isize] = ACTIONS(2408), + [anon_sym_usize] = ACTIONS(2408), + [anon_sym_f32] = ACTIONS(2408), + [anon_sym_f64] = ACTIONS(2408), + [anon_sym_bool] = ACTIONS(2408), + [anon_sym_str] = ACTIONS(2408), + [anon_sym_char] = ACTIONS(2408), + [anon_sym_DASH] = ACTIONS(2406), + [anon_sym_BANG] = ACTIONS(2406), + [anon_sym_AMP] = ACTIONS(2406), + [anon_sym_PIPE] = ACTIONS(2406), + [anon_sym_LT] = ACTIONS(2406), + [anon_sym_DOT_DOT] = ACTIONS(2406), + [anon_sym_COLON_COLON] = ACTIONS(2406), + [anon_sym_POUND] = ACTIONS(2406), + [anon_sym_SQUOTE] = ACTIONS(2408), + [anon_sym_async] = ACTIONS(2408), + [anon_sym_break] = ACTIONS(2408), + [anon_sym_const] = ACTIONS(2408), + [anon_sym_continue] = ACTIONS(2408), + [anon_sym_default] = ACTIONS(2408), + [anon_sym_enum] = ACTIONS(2408), + [anon_sym_fn] = ACTIONS(2408), + [anon_sym_for] = ACTIONS(2408), + [anon_sym_if] = ACTIONS(2408), + [anon_sym_impl] = ACTIONS(2408), + [anon_sym_let] = ACTIONS(2408), + [anon_sym_loop] = ACTIONS(2408), + [anon_sym_match] = ACTIONS(2408), + [anon_sym_mod] = ACTIONS(2408), + [anon_sym_pub] = ACTIONS(2408), + [anon_sym_return] = ACTIONS(2408), + [anon_sym_static] = ACTIONS(2408), + [anon_sym_struct] = ACTIONS(2408), + [anon_sym_trait] = ACTIONS(2408), + [anon_sym_type] = ACTIONS(2408), + [anon_sym_union] = ACTIONS(2408), + [anon_sym_unsafe] = ACTIONS(2408), + [anon_sym_use] = ACTIONS(2408), + [anon_sym_while] = ACTIONS(2408), + [anon_sym_extern] = ACTIONS(2408), + [anon_sym_yield] = ACTIONS(2408), + [anon_sym_move] = ACTIONS(2408), + [anon_sym_try] = ACTIONS(2408), + [sym_integer_literal] = ACTIONS(2406), + [aux_sym_string_literal_token1] = ACTIONS(2406), + [sym_char_literal] = ACTIONS(2406), + [anon_sym_true] = ACTIONS(2408), + [anon_sym_false] = ACTIONS(2408), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2408), + [sym_super] = ACTIONS(2408), + [sym_crate] = ACTIONS(2408), + [sym_metavariable] = ACTIONS(2406), + [sym__raw_string_literal_start] = ACTIONS(2406), + [sym_float_literal] = ACTIONS(2406), + }, + [656] = { + [sym_line_comment] = STATE(656), + [sym_block_comment] = STATE(656), + [ts_builtin_sym_end] = ACTIONS(2410), + [sym_identifier] = ACTIONS(2412), + [anon_sym_SEMI] = ACTIONS(2410), + [anon_sym_macro_rules_BANG] = ACTIONS(2410), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_RBRACE] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_u8] = ACTIONS(2412), + [anon_sym_i8] = ACTIONS(2412), + [anon_sym_u16] = ACTIONS(2412), + [anon_sym_i16] = ACTIONS(2412), + [anon_sym_u32] = ACTIONS(2412), + [anon_sym_i32] = ACTIONS(2412), + [anon_sym_u64] = ACTIONS(2412), + [anon_sym_i64] = ACTIONS(2412), + [anon_sym_u128] = ACTIONS(2412), + [anon_sym_i128] = ACTIONS(2412), + [anon_sym_isize] = ACTIONS(2412), + [anon_sym_usize] = ACTIONS(2412), + [anon_sym_f32] = ACTIONS(2412), + [anon_sym_f64] = ACTIONS(2412), + [anon_sym_bool] = ACTIONS(2412), + [anon_sym_str] = ACTIONS(2412), + [anon_sym_char] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym_DOT_DOT] = ACTIONS(2410), + [anon_sym_COLON_COLON] = ACTIONS(2410), + [anon_sym_POUND] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_async] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_enum] = ACTIONS(2412), + [anon_sym_fn] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_impl] = ACTIONS(2412), + [anon_sym_let] = ACTIONS(2412), + [anon_sym_loop] = ACTIONS(2412), + [anon_sym_match] = ACTIONS(2412), + [anon_sym_mod] = ACTIONS(2412), + [anon_sym_pub] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_struct] = ACTIONS(2412), + [anon_sym_trait] = ACTIONS(2412), + [anon_sym_type] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_unsafe] = ACTIONS(2412), + [anon_sym_use] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_extern] = ACTIONS(2412), + [anon_sym_yield] = ACTIONS(2412), + [anon_sym_move] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [sym_integer_literal] = ACTIONS(2410), + [aux_sym_string_literal_token1] = ACTIONS(2410), + [sym_char_literal] = ACTIONS(2410), + [anon_sym_true] = ACTIONS(2412), + [anon_sym_false] = ACTIONS(2412), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2412), + [sym_super] = ACTIONS(2412), + [sym_crate] = ACTIONS(2412), + [sym_metavariable] = ACTIONS(2410), + [sym__raw_string_literal_start] = ACTIONS(2410), + [sym_float_literal] = ACTIONS(2410), + }, + [657] = { + [sym_line_comment] = STATE(657), + [sym_block_comment] = STATE(657), + [ts_builtin_sym_end] = ACTIONS(2414), + [sym_identifier] = ACTIONS(2416), + [anon_sym_SEMI] = ACTIONS(2414), + [anon_sym_macro_rules_BANG] = ACTIONS(2414), + [anon_sym_LPAREN] = ACTIONS(2414), + [anon_sym_LBRACK] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(2414), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_STAR] = ACTIONS(2414), + [anon_sym_u8] = ACTIONS(2416), + [anon_sym_i8] = ACTIONS(2416), + [anon_sym_u16] = ACTIONS(2416), + [anon_sym_i16] = ACTIONS(2416), + [anon_sym_u32] = ACTIONS(2416), + [anon_sym_i32] = ACTIONS(2416), + [anon_sym_u64] = ACTIONS(2416), + [anon_sym_i64] = ACTIONS(2416), + [anon_sym_u128] = ACTIONS(2416), + [anon_sym_i128] = ACTIONS(2416), + [anon_sym_isize] = ACTIONS(2416), + [anon_sym_usize] = ACTIONS(2416), + [anon_sym_f32] = ACTIONS(2416), + [anon_sym_f64] = ACTIONS(2416), + [anon_sym_bool] = ACTIONS(2416), + [anon_sym_str] = ACTIONS(2416), + [anon_sym_char] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2414), + [anon_sym_BANG] = ACTIONS(2414), + [anon_sym_AMP] = ACTIONS(2414), + [anon_sym_PIPE] = ACTIONS(2414), + [anon_sym_LT] = ACTIONS(2414), + [anon_sym_DOT_DOT] = ACTIONS(2414), + [anon_sym_COLON_COLON] = ACTIONS(2414), + [anon_sym_POUND] = ACTIONS(2414), + [anon_sym_SQUOTE] = ACTIONS(2416), + [anon_sym_async] = ACTIONS(2416), + [anon_sym_break] = ACTIONS(2416), + [anon_sym_const] = ACTIONS(2416), + [anon_sym_continue] = ACTIONS(2416), + [anon_sym_default] = ACTIONS(2416), + [anon_sym_enum] = ACTIONS(2416), + [anon_sym_fn] = ACTIONS(2416), + [anon_sym_for] = ACTIONS(2416), + [anon_sym_if] = ACTIONS(2416), + [anon_sym_impl] = ACTIONS(2416), + [anon_sym_let] = ACTIONS(2416), + [anon_sym_loop] = ACTIONS(2416), + [anon_sym_match] = ACTIONS(2416), + [anon_sym_mod] = ACTIONS(2416), + [anon_sym_pub] = ACTIONS(2416), + [anon_sym_return] = ACTIONS(2416), + [anon_sym_static] = ACTIONS(2416), + [anon_sym_struct] = ACTIONS(2416), + [anon_sym_trait] = ACTIONS(2416), + [anon_sym_type] = ACTIONS(2416), + [anon_sym_union] = ACTIONS(2416), + [anon_sym_unsafe] = ACTIONS(2416), + [anon_sym_use] = ACTIONS(2416), + [anon_sym_while] = ACTIONS(2416), + [anon_sym_extern] = ACTIONS(2416), + [anon_sym_yield] = ACTIONS(2416), + [anon_sym_move] = ACTIONS(2416), + [anon_sym_try] = ACTIONS(2416), + [sym_integer_literal] = ACTIONS(2414), + [aux_sym_string_literal_token1] = ACTIONS(2414), + [sym_char_literal] = ACTIONS(2414), + [anon_sym_true] = ACTIONS(2416), + [anon_sym_false] = ACTIONS(2416), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2416), + [sym_super] = ACTIONS(2416), + [sym_crate] = ACTIONS(2416), + [sym_metavariable] = ACTIONS(2414), + [sym__raw_string_literal_start] = ACTIONS(2414), + [sym_float_literal] = ACTIONS(2414), + }, + [658] = { + [sym_line_comment] = STATE(658), + [sym_block_comment] = STATE(658), + [ts_builtin_sym_end] = ACTIONS(2418), + [sym_identifier] = ACTIONS(2420), + [anon_sym_SEMI] = ACTIONS(2418), + [anon_sym_macro_rules_BANG] = ACTIONS(2418), + [anon_sym_LPAREN] = ACTIONS(2418), + [anon_sym_LBRACK] = ACTIONS(2418), + [anon_sym_LBRACE] = ACTIONS(2418), + [anon_sym_RBRACE] = ACTIONS(2418), + [anon_sym_STAR] = ACTIONS(2418), + [anon_sym_u8] = ACTIONS(2420), + [anon_sym_i8] = ACTIONS(2420), + [anon_sym_u16] = ACTIONS(2420), + [anon_sym_i16] = ACTIONS(2420), + [anon_sym_u32] = ACTIONS(2420), + [anon_sym_i32] = ACTIONS(2420), + [anon_sym_u64] = ACTIONS(2420), + [anon_sym_i64] = ACTIONS(2420), + [anon_sym_u128] = ACTIONS(2420), + [anon_sym_i128] = ACTIONS(2420), + [anon_sym_isize] = ACTIONS(2420), + [anon_sym_usize] = ACTIONS(2420), + [anon_sym_f32] = ACTIONS(2420), + [anon_sym_f64] = ACTIONS(2420), + [anon_sym_bool] = ACTIONS(2420), + [anon_sym_str] = ACTIONS(2420), + [anon_sym_char] = ACTIONS(2420), + [anon_sym_DASH] = ACTIONS(2418), + [anon_sym_BANG] = ACTIONS(2418), + [anon_sym_AMP] = ACTIONS(2418), + [anon_sym_PIPE] = ACTIONS(2418), + [anon_sym_LT] = ACTIONS(2418), + [anon_sym_DOT_DOT] = ACTIONS(2418), + [anon_sym_COLON_COLON] = ACTIONS(2418), + [anon_sym_POUND] = ACTIONS(2418), + [anon_sym_SQUOTE] = ACTIONS(2420), + [anon_sym_async] = ACTIONS(2420), + [anon_sym_break] = ACTIONS(2420), + [anon_sym_const] = ACTIONS(2420), + [anon_sym_continue] = ACTIONS(2420), + [anon_sym_default] = ACTIONS(2420), + [anon_sym_enum] = ACTIONS(2420), + [anon_sym_fn] = ACTIONS(2420), + [anon_sym_for] = ACTIONS(2420), + [anon_sym_if] = ACTIONS(2420), + [anon_sym_impl] = ACTIONS(2420), + [anon_sym_let] = ACTIONS(2420), + [anon_sym_loop] = ACTIONS(2420), + [anon_sym_match] = ACTIONS(2420), + [anon_sym_mod] = ACTIONS(2420), + [anon_sym_pub] = ACTIONS(2420), + [anon_sym_return] = ACTIONS(2420), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_struct] = ACTIONS(2420), + [anon_sym_trait] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_union] = ACTIONS(2420), + [anon_sym_unsafe] = ACTIONS(2420), + [anon_sym_use] = ACTIONS(2420), + [anon_sym_while] = ACTIONS(2420), + [anon_sym_extern] = ACTIONS(2420), + [anon_sym_yield] = ACTIONS(2420), + [anon_sym_move] = ACTIONS(2420), + [anon_sym_try] = ACTIONS(2420), + [sym_integer_literal] = ACTIONS(2418), + [aux_sym_string_literal_token1] = ACTIONS(2418), + [sym_char_literal] = ACTIONS(2418), + [anon_sym_true] = ACTIONS(2420), + [anon_sym_false] = ACTIONS(2420), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2420), + [sym_super] = ACTIONS(2420), + [sym_crate] = ACTIONS(2420), + [sym_metavariable] = ACTIONS(2418), + [sym__raw_string_literal_start] = ACTIONS(2418), + [sym_float_literal] = ACTIONS(2418), + }, + [659] = { + [sym_line_comment] = STATE(659), + [sym_block_comment] = STATE(659), + [ts_builtin_sym_end] = ACTIONS(2422), + [sym_identifier] = ACTIONS(2424), + [anon_sym_SEMI] = ACTIONS(2422), + [anon_sym_macro_rules_BANG] = ACTIONS(2422), + [anon_sym_LPAREN] = ACTIONS(2422), + [anon_sym_LBRACK] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(2422), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_STAR] = ACTIONS(2422), + [anon_sym_u8] = ACTIONS(2424), + [anon_sym_i8] = ACTIONS(2424), + [anon_sym_u16] = ACTIONS(2424), + [anon_sym_i16] = ACTIONS(2424), + [anon_sym_u32] = ACTIONS(2424), + [anon_sym_i32] = ACTIONS(2424), + [anon_sym_u64] = ACTIONS(2424), + [anon_sym_i64] = ACTIONS(2424), + [anon_sym_u128] = ACTIONS(2424), + [anon_sym_i128] = ACTIONS(2424), + [anon_sym_isize] = ACTIONS(2424), + [anon_sym_usize] = ACTIONS(2424), + [anon_sym_f32] = ACTIONS(2424), + [anon_sym_f64] = ACTIONS(2424), + [anon_sym_bool] = ACTIONS(2424), + [anon_sym_str] = ACTIONS(2424), + [anon_sym_char] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2422), + [anon_sym_BANG] = ACTIONS(2422), + [anon_sym_AMP] = ACTIONS(2422), + [anon_sym_PIPE] = ACTIONS(2422), + [anon_sym_LT] = ACTIONS(2422), + [anon_sym_DOT_DOT] = ACTIONS(2422), + [anon_sym_COLON_COLON] = ACTIONS(2422), + [anon_sym_POUND] = ACTIONS(2422), + [anon_sym_SQUOTE] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2424), + [anon_sym_break] = ACTIONS(2424), + [anon_sym_const] = ACTIONS(2424), + [anon_sym_continue] = ACTIONS(2424), + [anon_sym_default] = ACTIONS(2424), + [anon_sym_enum] = ACTIONS(2424), + [anon_sym_fn] = ACTIONS(2424), + [anon_sym_for] = ACTIONS(2424), + [anon_sym_if] = ACTIONS(2424), + [anon_sym_impl] = ACTIONS(2424), + [anon_sym_let] = ACTIONS(2424), + [anon_sym_loop] = ACTIONS(2424), + [anon_sym_match] = ACTIONS(2424), + [anon_sym_mod] = ACTIONS(2424), + [anon_sym_pub] = ACTIONS(2424), + [anon_sym_return] = ACTIONS(2424), + [anon_sym_static] = ACTIONS(2424), + [anon_sym_struct] = ACTIONS(2424), + [anon_sym_trait] = ACTIONS(2424), + [anon_sym_type] = ACTIONS(2424), + [anon_sym_union] = ACTIONS(2424), + [anon_sym_unsafe] = ACTIONS(2424), + [anon_sym_use] = ACTIONS(2424), + [anon_sym_while] = ACTIONS(2424), + [anon_sym_extern] = ACTIONS(2424), + [anon_sym_yield] = ACTIONS(2424), + [anon_sym_move] = ACTIONS(2424), + [anon_sym_try] = ACTIONS(2424), + [sym_integer_literal] = ACTIONS(2422), + [aux_sym_string_literal_token1] = ACTIONS(2422), + [sym_char_literal] = ACTIONS(2422), + [anon_sym_true] = ACTIONS(2424), + [anon_sym_false] = ACTIONS(2424), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2424), + [sym_super] = ACTIONS(2424), + [sym_crate] = ACTIONS(2424), + [sym_metavariable] = ACTIONS(2422), + [sym__raw_string_literal_start] = ACTIONS(2422), + [sym_float_literal] = ACTIONS(2422), + }, + [660] = { + [sym_line_comment] = STATE(660), + [sym_block_comment] = STATE(660), + [ts_builtin_sym_end] = ACTIONS(2426), + [sym_identifier] = ACTIONS(2428), + [anon_sym_SEMI] = ACTIONS(2426), + [anon_sym_macro_rules_BANG] = ACTIONS(2426), + [anon_sym_LPAREN] = ACTIONS(2426), + [anon_sym_LBRACK] = ACTIONS(2426), + [anon_sym_LBRACE] = ACTIONS(2426), + [anon_sym_RBRACE] = ACTIONS(2426), + [anon_sym_STAR] = ACTIONS(2426), + [anon_sym_u8] = ACTIONS(2428), + [anon_sym_i8] = ACTIONS(2428), + [anon_sym_u16] = ACTIONS(2428), + [anon_sym_i16] = ACTIONS(2428), + [anon_sym_u32] = ACTIONS(2428), + [anon_sym_i32] = ACTIONS(2428), + [anon_sym_u64] = ACTIONS(2428), + [anon_sym_i64] = ACTIONS(2428), + [anon_sym_u128] = ACTIONS(2428), + [anon_sym_i128] = ACTIONS(2428), + [anon_sym_isize] = ACTIONS(2428), + [anon_sym_usize] = ACTIONS(2428), + [anon_sym_f32] = ACTIONS(2428), + [anon_sym_f64] = ACTIONS(2428), + [anon_sym_bool] = ACTIONS(2428), + [anon_sym_str] = ACTIONS(2428), + [anon_sym_char] = ACTIONS(2428), + [anon_sym_DASH] = ACTIONS(2426), + [anon_sym_BANG] = ACTIONS(2426), + [anon_sym_AMP] = ACTIONS(2426), + [anon_sym_PIPE] = ACTIONS(2426), + [anon_sym_LT] = ACTIONS(2426), + [anon_sym_DOT_DOT] = ACTIONS(2426), + [anon_sym_COLON_COLON] = ACTIONS(2426), + [anon_sym_POUND] = ACTIONS(2426), + [anon_sym_SQUOTE] = ACTIONS(2428), + [anon_sym_async] = ACTIONS(2428), + [anon_sym_break] = ACTIONS(2428), + [anon_sym_const] = ACTIONS(2428), + [anon_sym_continue] = ACTIONS(2428), + [anon_sym_default] = ACTIONS(2428), + [anon_sym_enum] = ACTIONS(2428), + [anon_sym_fn] = ACTIONS(2428), + [anon_sym_for] = ACTIONS(2428), + [anon_sym_if] = ACTIONS(2428), + [anon_sym_impl] = ACTIONS(2428), + [anon_sym_let] = ACTIONS(2428), + [anon_sym_loop] = ACTIONS(2428), + [anon_sym_match] = ACTIONS(2428), + [anon_sym_mod] = ACTIONS(2428), + [anon_sym_pub] = ACTIONS(2428), + [anon_sym_return] = ACTIONS(2428), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_struct] = ACTIONS(2428), + [anon_sym_trait] = ACTIONS(2428), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_union] = ACTIONS(2428), + [anon_sym_unsafe] = ACTIONS(2428), + [anon_sym_use] = ACTIONS(2428), + [anon_sym_while] = ACTIONS(2428), + [anon_sym_extern] = ACTIONS(2428), + [anon_sym_yield] = ACTIONS(2428), + [anon_sym_move] = ACTIONS(2428), + [anon_sym_try] = ACTIONS(2428), + [sym_integer_literal] = ACTIONS(2426), + [aux_sym_string_literal_token1] = ACTIONS(2426), + [sym_char_literal] = ACTIONS(2426), + [anon_sym_true] = ACTIONS(2428), + [anon_sym_false] = ACTIONS(2428), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2428), + [sym_super] = ACTIONS(2428), + [sym_crate] = ACTIONS(2428), + [sym_metavariable] = ACTIONS(2426), + [sym__raw_string_literal_start] = ACTIONS(2426), + [sym_float_literal] = ACTIONS(2426), + }, + [661] = { + [sym_line_comment] = STATE(661), + [sym_block_comment] = STATE(661), + [ts_builtin_sym_end] = ACTIONS(2430), + [sym_identifier] = ACTIONS(2432), + [anon_sym_SEMI] = ACTIONS(2430), + [anon_sym_macro_rules_BANG] = ACTIONS(2430), + [anon_sym_LPAREN] = ACTIONS(2430), + [anon_sym_LBRACK] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(2430), + [anon_sym_RBRACE] = ACTIONS(2430), + [anon_sym_STAR] = ACTIONS(2430), + [anon_sym_u8] = ACTIONS(2432), + [anon_sym_i8] = ACTIONS(2432), + [anon_sym_u16] = ACTIONS(2432), + [anon_sym_i16] = ACTIONS(2432), + [anon_sym_u32] = ACTIONS(2432), + [anon_sym_i32] = ACTIONS(2432), + [anon_sym_u64] = ACTIONS(2432), + [anon_sym_i64] = ACTIONS(2432), + [anon_sym_u128] = ACTIONS(2432), + [anon_sym_i128] = ACTIONS(2432), + [anon_sym_isize] = ACTIONS(2432), + [anon_sym_usize] = ACTIONS(2432), + [anon_sym_f32] = ACTIONS(2432), + [anon_sym_f64] = ACTIONS(2432), + [anon_sym_bool] = ACTIONS(2432), + [anon_sym_str] = ACTIONS(2432), + [anon_sym_char] = ACTIONS(2432), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_BANG] = ACTIONS(2430), + [anon_sym_AMP] = ACTIONS(2430), + [anon_sym_PIPE] = ACTIONS(2430), + [anon_sym_LT] = ACTIONS(2430), + [anon_sym_DOT_DOT] = ACTIONS(2430), + [anon_sym_COLON_COLON] = ACTIONS(2430), + [anon_sym_POUND] = ACTIONS(2430), + [anon_sym_SQUOTE] = ACTIONS(2432), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_break] = ACTIONS(2432), + [anon_sym_const] = ACTIONS(2432), + [anon_sym_continue] = ACTIONS(2432), + [anon_sym_default] = ACTIONS(2432), + [anon_sym_enum] = ACTIONS(2432), + [anon_sym_fn] = ACTIONS(2432), + [anon_sym_for] = ACTIONS(2432), + [anon_sym_if] = ACTIONS(2432), + [anon_sym_impl] = ACTIONS(2432), + [anon_sym_let] = ACTIONS(2432), + [anon_sym_loop] = ACTIONS(2432), + [anon_sym_match] = ACTIONS(2432), + [anon_sym_mod] = ACTIONS(2432), + [anon_sym_pub] = ACTIONS(2432), + [anon_sym_return] = ACTIONS(2432), + [anon_sym_static] = ACTIONS(2432), + [anon_sym_struct] = ACTIONS(2432), + [anon_sym_trait] = ACTIONS(2432), + [anon_sym_type] = ACTIONS(2432), + [anon_sym_union] = ACTIONS(2432), + [anon_sym_unsafe] = ACTIONS(2432), + [anon_sym_use] = ACTIONS(2432), + [anon_sym_while] = ACTIONS(2432), + [anon_sym_extern] = ACTIONS(2432), + [anon_sym_yield] = ACTIONS(2432), + [anon_sym_move] = ACTIONS(2432), + [anon_sym_try] = ACTIONS(2432), + [sym_integer_literal] = ACTIONS(2430), + [aux_sym_string_literal_token1] = ACTIONS(2430), + [sym_char_literal] = ACTIONS(2430), + [anon_sym_true] = ACTIONS(2432), + [anon_sym_false] = ACTIONS(2432), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2432), + [sym_super] = ACTIONS(2432), + [sym_crate] = ACTIONS(2432), + [sym_metavariable] = ACTIONS(2430), + [sym__raw_string_literal_start] = ACTIONS(2430), + [sym_float_literal] = ACTIONS(2430), + }, + [662] = { + [sym_line_comment] = STATE(662), + [sym_block_comment] = STATE(662), + [ts_builtin_sym_end] = ACTIONS(2434), + [sym_identifier] = ACTIONS(2436), + [anon_sym_SEMI] = ACTIONS(2434), + [anon_sym_macro_rules_BANG] = ACTIONS(2434), + [anon_sym_LPAREN] = ACTIONS(2434), + [anon_sym_LBRACK] = ACTIONS(2434), + [anon_sym_LBRACE] = ACTIONS(2434), + [anon_sym_RBRACE] = ACTIONS(2434), + [anon_sym_STAR] = ACTIONS(2434), + [anon_sym_u8] = ACTIONS(2436), + [anon_sym_i8] = ACTIONS(2436), + [anon_sym_u16] = ACTIONS(2436), + [anon_sym_i16] = ACTIONS(2436), + [anon_sym_u32] = ACTIONS(2436), + [anon_sym_i32] = ACTIONS(2436), + [anon_sym_u64] = ACTIONS(2436), + [anon_sym_i64] = ACTIONS(2436), + [anon_sym_u128] = ACTIONS(2436), + [anon_sym_i128] = ACTIONS(2436), + [anon_sym_isize] = ACTIONS(2436), + [anon_sym_usize] = ACTIONS(2436), + [anon_sym_f32] = ACTIONS(2436), + [anon_sym_f64] = ACTIONS(2436), + [anon_sym_bool] = ACTIONS(2436), + [anon_sym_str] = ACTIONS(2436), + [anon_sym_char] = ACTIONS(2436), + [anon_sym_DASH] = ACTIONS(2434), + [anon_sym_BANG] = ACTIONS(2434), + [anon_sym_AMP] = ACTIONS(2434), + [anon_sym_PIPE] = ACTIONS(2434), + [anon_sym_LT] = ACTIONS(2434), + [anon_sym_DOT_DOT] = ACTIONS(2434), + [anon_sym_COLON_COLON] = ACTIONS(2434), + [anon_sym_POUND] = ACTIONS(2434), + [anon_sym_SQUOTE] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(2436), + [anon_sym_break] = ACTIONS(2436), + [anon_sym_const] = ACTIONS(2436), + [anon_sym_continue] = ACTIONS(2436), + [anon_sym_default] = ACTIONS(2436), + [anon_sym_enum] = ACTIONS(2436), + [anon_sym_fn] = ACTIONS(2436), + [anon_sym_for] = ACTIONS(2436), + [anon_sym_if] = ACTIONS(2436), + [anon_sym_impl] = ACTIONS(2436), + [anon_sym_let] = ACTIONS(2436), + [anon_sym_loop] = ACTIONS(2436), + [anon_sym_match] = ACTIONS(2436), + [anon_sym_mod] = ACTIONS(2436), + [anon_sym_pub] = ACTIONS(2436), + [anon_sym_return] = ACTIONS(2436), + [anon_sym_static] = ACTIONS(2436), + [anon_sym_struct] = ACTIONS(2436), + [anon_sym_trait] = ACTIONS(2436), + [anon_sym_type] = ACTIONS(2436), + [anon_sym_union] = ACTIONS(2436), + [anon_sym_unsafe] = ACTIONS(2436), + [anon_sym_use] = ACTIONS(2436), + [anon_sym_while] = ACTIONS(2436), + [anon_sym_extern] = ACTIONS(2436), + [anon_sym_yield] = ACTIONS(2436), + [anon_sym_move] = ACTIONS(2436), + [anon_sym_try] = ACTIONS(2436), + [sym_integer_literal] = ACTIONS(2434), + [aux_sym_string_literal_token1] = ACTIONS(2434), + [sym_char_literal] = ACTIONS(2434), + [anon_sym_true] = ACTIONS(2436), + [anon_sym_false] = ACTIONS(2436), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2436), + [sym_super] = ACTIONS(2436), + [sym_crate] = ACTIONS(2436), + [sym_metavariable] = ACTIONS(2434), + [sym__raw_string_literal_start] = ACTIONS(2434), + [sym_float_literal] = ACTIONS(2434), + }, + [663] = { + [sym_line_comment] = STATE(663), + [sym_block_comment] = STATE(663), + [ts_builtin_sym_end] = ACTIONS(1244), + [sym_identifier] = ACTIONS(1246), + [anon_sym_SEMI] = ACTIONS(1244), + [anon_sym_macro_rules_BANG] = ACTIONS(1244), + [anon_sym_LPAREN] = ACTIONS(1244), + [anon_sym_LBRACK] = ACTIONS(1244), + [anon_sym_LBRACE] = ACTIONS(1244), + [anon_sym_RBRACE] = ACTIONS(1244), + [anon_sym_STAR] = ACTIONS(1244), + [anon_sym_u8] = ACTIONS(1246), + [anon_sym_i8] = ACTIONS(1246), + [anon_sym_u16] = ACTIONS(1246), + [anon_sym_i16] = ACTIONS(1246), + [anon_sym_u32] = ACTIONS(1246), + [anon_sym_i32] = ACTIONS(1246), + [anon_sym_u64] = ACTIONS(1246), + [anon_sym_i64] = ACTIONS(1246), + [anon_sym_u128] = ACTIONS(1246), + [anon_sym_i128] = ACTIONS(1246), + [anon_sym_isize] = ACTIONS(1246), + [anon_sym_usize] = ACTIONS(1246), + [anon_sym_f32] = ACTIONS(1246), + [anon_sym_f64] = ACTIONS(1246), + [anon_sym_bool] = ACTIONS(1246), + [anon_sym_str] = ACTIONS(1246), + [anon_sym_char] = ACTIONS(1246), + [anon_sym_DASH] = ACTIONS(1244), + [anon_sym_BANG] = ACTIONS(1244), + [anon_sym_AMP] = ACTIONS(1244), + [anon_sym_PIPE] = ACTIONS(1244), + [anon_sym_LT] = ACTIONS(1244), + [anon_sym_DOT_DOT] = ACTIONS(1244), + [anon_sym_COLON_COLON] = ACTIONS(1244), + [anon_sym_POUND] = ACTIONS(1244), + [anon_sym_SQUOTE] = ACTIONS(1246), + [anon_sym_async] = ACTIONS(1246), + [anon_sym_break] = ACTIONS(1246), + [anon_sym_const] = ACTIONS(1246), + [anon_sym_continue] = ACTIONS(1246), + [anon_sym_default] = ACTIONS(1246), + [anon_sym_enum] = ACTIONS(1246), + [anon_sym_fn] = ACTIONS(1246), + [anon_sym_for] = ACTIONS(1246), + [anon_sym_if] = ACTIONS(1246), + [anon_sym_impl] = ACTIONS(1246), + [anon_sym_let] = ACTIONS(1246), + [anon_sym_loop] = ACTIONS(1246), + [anon_sym_match] = ACTIONS(1246), + [anon_sym_mod] = ACTIONS(1246), + [anon_sym_pub] = ACTIONS(1246), + [anon_sym_return] = ACTIONS(1246), + [anon_sym_static] = ACTIONS(1246), + [anon_sym_struct] = ACTIONS(1246), + [anon_sym_trait] = ACTIONS(1246), + [anon_sym_type] = ACTIONS(1246), + [anon_sym_union] = ACTIONS(1246), + [anon_sym_unsafe] = ACTIONS(1246), + [anon_sym_use] = ACTIONS(1246), + [anon_sym_while] = ACTIONS(1246), + [anon_sym_extern] = ACTIONS(1246), + [anon_sym_yield] = ACTIONS(1246), + [anon_sym_move] = ACTIONS(1246), + [anon_sym_try] = ACTIONS(1246), + [sym_integer_literal] = ACTIONS(1244), + [aux_sym_string_literal_token1] = ACTIONS(1244), + [sym_char_literal] = ACTIONS(1244), + [anon_sym_true] = ACTIONS(1246), + [anon_sym_false] = ACTIONS(1246), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1246), + [sym_super] = ACTIONS(1246), + [sym_crate] = ACTIONS(1246), + [sym_metavariable] = ACTIONS(1244), + [sym__raw_string_literal_start] = ACTIONS(1244), + [sym_float_literal] = ACTIONS(1244), }, - [642] = { - [sym_line_comment] = STATE(642), - [sym_block_comment] = STATE(642), - [ts_builtin_sym_end] = ACTIONS(2404), - [sym_identifier] = ACTIONS(2406), - [anon_sym_SEMI] = ACTIONS(2404), - [anon_sym_macro_rules_BANG] = ACTIONS(2404), - [anon_sym_LPAREN] = ACTIONS(2404), - [anon_sym_LBRACK] = ACTIONS(2404), - [anon_sym_LBRACE] = ACTIONS(2404), - [anon_sym_RBRACE] = ACTIONS(2404), - [anon_sym_STAR] = ACTIONS(2404), - [anon_sym_u8] = ACTIONS(2406), - [anon_sym_i8] = ACTIONS(2406), - [anon_sym_u16] = ACTIONS(2406), - [anon_sym_i16] = ACTIONS(2406), - [anon_sym_u32] = ACTIONS(2406), - [anon_sym_i32] = ACTIONS(2406), - [anon_sym_u64] = ACTIONS(2406), - [anon_sym_i64] = ACTIONS(2406), - [anon_sym_u128] = ACTIONS(2406), - [anon_sym_i128] = ACTIONS(2406), - [anon_sym_isize] = ACTIONS(2406), - [anon_sym_usize] = ACTIONS(2406), - [anon_sym_f32] = ACTIONS(2406), - [anon_sym_f64] = ACTIONS(2406), - [anon_sym_bool] = ACTIONS(2406), - [anon_sym_str] = ACTIONS(2406), - [anon_sym_char] = ACTIONS(2406), - [anon_sym_DASH] = ACTIONS(2404), - [anon_sym_BANG] = ACTIONS(2404), - [anon_sym_AMP] = ACTIONS(2404), - [anon_sym_PIPE] = ACTIONS(2404), - [anon_sym_LT] = ACTIONS(2404), - [anon_sym_DOT_DOT] = ACTIONS(2404), - [anon_sym_COLON_COLON] = ACTIONS(2404), - [anon_sym_POUND] = ACTIONS(2404), - [anon_sym_SQUOTE] = ACTIONS(2406), - [anon_sym_async] = ACTIONS(2406), - [anon_sym_break] = ACTIONS(2406), - [anon_sym_const] = ACTIONS(2406), - [anon_sym_continue] = ACTIONS(2406), - [anon_sym_default] = ACTIONS(2406), - [anon_sym_enum] = ACTIONS(2406), - [anon_sym_fn] = ACTIONS(2406), - [anon_sym_for] = ACTIONS(2406), - [anon_sym_if] = ACTIONS(2406), - [anon_sym_impl] = ACTIONS(2406), - [anon_sym_let] = ACTIONS(2406), - [anon_sym_loop] = ACTIONS(2406), - [anon_sym_match] = ACTIONS(2406), - [anon_sym_mod] = ACTIONS(2406), - [anon_sym_pub] = ACTIONS(2406), - [anon_sym_return] = ACTIONS(2406), - [anon_sym_static] = ACTIONS(2406), - [anon_sym_struct] = ACTIONS(2406), - [anon_sym_trait] = ACTIONS(2406), - [anon_sym_type] = ACTIONS(2406), - [anon_sym_union] = ACTIONS(2406), - [anon_sym_unsafe] = ACTIONS(2406), - [anon_sym_use] = ACTIONS(2406), - [anon_sym_while] = ACTIONS(2406), - [anon_sym_extern] = ACTIONS(2406), - [anon_sym_yield] = ACTIONS(2406), - [anon_sym_move] = ACTIONS(2406), - [anon_sym_try] = ACTIONS(2406), - [sym_integer_literal] = ACTIONS(2404), - [aux_sym_string_literal_token1] = ACTIONS(2404), - [sym_char_literal] = ACTIONS(2404), - [anon_sym_true] = ACTIONS(2406), - [anon_sym_false] = ACTIONS(2406), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2406), - [sym_super] = ACTIONS(2406), - [sym_crate] = ACTIONS(2406), - [sym_metavariable] = ACTIONS(2404), - [sym__raw_string_literal_start] = ACTIONS(2404), - [sym_float_literal] = ACTIONS(2404), + [664] = { + [sym_line_comment] = STATE(664), + [sym_block_comment] = STATE(664), + [ts_builtin_sym_end] = ACTIONS(2438), + [sym_identifier] = ACTIONS(2440), + [anon_sym_SEMI] = ACTIONS(2438), + [anon_sym_macro_rules_BANG] = ACTIONS(2438), + [anon_sym_LPAREN] = ACTIONS(2438), + [anon_sym_LBRACK] = ACTIONS(2438), + [anon_sym_LBRACE] = ACTIONS(2438), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_STAR] = ACTIONS(2438), + [anon_sym_u8] = ACTIONS(2440), + [anon_sym_i8] = ACTIONS(2440), + [anon_sym_u16] = ACTIONS(2440), + [anon_sym_i16] = ACTIONS(2440), + [anon_sym_u32] = ACTIONS(2440), + [anon_sym_i32] = ACTIONS(2440), + [anon_sym_u64] = ACTIONS(2440), + [anon_sym_i64] = ACTIONS(2440), + [anon_sym_u128] = ACTIONS(2440), + [anon_sym_i128] = ACTIONS(2440), + [anon_sym_isize] = ACTIONS(2440), + [anon_sym_usize] = ACTIONS(2440), + [anon_sym_f32] = ACTIONS(2440), + [anon_sym_f64] = ACTIONS(2440), + [anon_sym_bool] = ACTIONS(2440), + [anon_sym_str] = ACTIONS(2440), + [anon_sym_char] = ACTIONS(2440), + [anon_sym_DASH] = ACTIONS(2438), + [anon_sym_BANG] = ACTIONS(2438), + [anon_sym_AMP] = ACTIONS(2438), + [anon_sym_PIPE] = ACTIONS(2438), + [anon_sym_LT] = ACTIONS(2438), + [anon_sym_DOT_DOT] = ACTIONS(2438), + [anon_sym_COLON_COLON] = ACTIONS(2438), + [anon_sym_POUND] = ACTIONS(2438), + [anon_sym_SQUOTE] = ACTIONS(2440), + [anon_sym_async] = ACTIONS(2440), + [anon_sym_break] = ACTIONS(2440), + [anon_sym_const] = ACTIONS(2440), + [anon_sym_continue] = ACTIONS(2440), + [anon_sym_default] = ACTIONS(2440), + [anon_sym_enum] = ACTIONS(2440), + [anon_sym_fn] = ACTIONS(2440), + [anon_sym_for] = ACTIONS(2440), + [anon_sym_if] = ACTIONS(2440), + [anon_sym_impl] = ACTIONS(2440), + [anon_sym_let] = ACTIONS(2440), + [anon_sym_loop] = ACTIONS(2440), + [anon_sym_match] = ACTIONS(2440), + [anon_sym_mod] = ACTIONS(2440), + [anon_sym_pub] = ACTIONS(2440), + [anon_sym_return] = ACTIONS(2440), + [anon_sym_static] = ACTIONS(2440), + [anon_sym_struct] = ACTIONS(2440), + [anon_sym_trait] = ACTIONS(2440), + [anon_sym_type] = ACTIONS(2440), + [anon_sym_union] = ACTIONS(2440), + [anon_sym_unsafe] = ACTIONS(2440), + [anon_sym_use] = ACTIONS(2440), + [anon_sym_while] = ACTIONS(2440), + [anon_sym_extern] = ACTIONS(2440), + [anon_sym_yield] = ACTIONS(2440), + [anon_sym_move] = ACTIONS(2440), + [anon_sym_try] = ACTIONS(2440), + [sym_integer_literal] = ACTIONS(2438), + [aux_sym_string_literal_token1] = ACTIONS(2438), + [sym_char_literal] = ACTIONS(2438), + [anon_sym_true] = ACTIONS(2440), + [anon_sym_false] = ACTIONS(2440), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2440), + [sym_super] = ACTIONS(2440), + [sym_crate] = ACTIONS(2440), + [sym_metavariable] = ACTIONS(2438), + [sym__raw_string_literal_start] = ACTIONS(2438), + [sym_float_literal] = ACTIONS(2438), }, - [643] = { - [sym_line_comment] = STATE(643), - [sym_block_comment] = STATE(643), - [ts_builtin_sym_end] = ACTIONS(2408), - [sym_identifier] = ACTIONS(2410), - [anon_sym_SEMI] = ACTIONS(2408), - [anon_sym_macro_rules_BANG] = ACTIONS(2408), - [anon_sym_LPAREN] = ACTIONS(2408), - [anon_sym_LBRACK] = ACTIONS(2408), - [anon_sym_LBRACE] = ACTIONS(2408), - [anon_sym_RBRACE] = ACTIONS(2408), - [anon_sym_STAR] = ACTIONS(2408), - [anon_sym_u8] = ACTIONS(2410), - [anon_sym_i8] = ACTIONS(2410), - [anon_sym_u16] = ACTIONS(2410), - [anon_sym_i16] = ACTIONS(2410), - [anon_sym_u32] = ACTIONS(2410), - [anon_sym_i32] = ACTIONS(2410), - [anon_sym_u64] = ACTIONS(2410), - [anon_sym_i64] = ACTIONS(2410), - [anon_sym_u128] = ACTIONS(2410), - [anon_sym_i128] = ACTIONS(2410), - [anon_sym_isize] = ACTIONS(2410), - [anon_sym_usize] = ACTIONS(2410), - [anon_sym_f32] = ACTIONS(2410), - [anon_sym_f64] = ACTIONS(2410), - [anon_sym_bool] = ACTIONS(2410), - [anon_sym_str] = ACTIONS(2410), - [anon_sym_char] = ACTIONS(2410), - [anon_sym_DASH] = ACTIONS(2408), - [anon_sym_BANG] = ACTIONS(2408), - [anon_sym_AMP] = ACTIONS(2408), - [anon_sym_PIPE] = ACTIONS(2408), - [anon_sym_LT] = ACTIONS(2408), - [anon_sym_DOT_DOT] = ACTIONS(2408), - [anon_sym_COLON_COLON] = ACTIONS(2408), - [anon_sym_POUND] = ACTIONS(2408), - [anon_sym_SQUOTE] = ACTIONS(2410), - [anon_sym_async] = ACTIONS(2410), - [anon_sym_break] = ACTIONS(2410), - [anon_sym_const] = ACTIONS(2410), - [anon_sym_continue] = ACTIONS(2410), - [anon_sym_default] = ACTIONS(2410), - [anon_sym_enum] = ACTIONS(2410), - [anon_sym_fn] = ACTIONS(2410), - [anon_sym_for] = ACTIONS(2410), - [anon_sym_if] = ACTIONS(2410), - [anon_sym_impl] = ACTIONS(2410), - [anon_sym_let] = ACTIONS(2410), - [anon_sym_loop] = ACTIONS(2410), - [anon_sym_match] = ACTIONS(2410), - [anon_sym_mod] = ACTIONS(2410), - [anon_sym_pub] = ACTIONS(2410), - [anon_sym_return] = ACTIONS(2410), - [anon_sym_static] = ACTIONS(2410), - [anon_sym_struct] = ACTIONS(2410), - [anon_sym_trait] = ACTIONS(2410), - [anon_sym_type] = ACTIONS(2410), - [anon_sym_union] = ACTIONS(2410), - [anon_sym_unsafe] = ACTIONS(2410), - [anon_sym_use] = ACTIONS(2410), - [anon_sym_while] = ACTIONS(2410), - [anon_sym_extern] = ACTIONS(2410), - [anon_sym_yield] = ACTIONS(2410), - [anon_sym_move] = ACTIONS(2410), - [anon_sym_try] = ACTIONS(2410), - [sym_integer_literal] = ACTIONS(2408), - [aux_sym_string_literal_token1] = ACTIONS(2408), - [sym_char_literal] = ACTIONS(2408), - [anon_sym_true] = ACTIONS(2410), - [anon_sym_false] = ACTIONS(2410), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2410), - [sym_super] = ACTIONS(2410), - [sym_crate] = ACTIONS(2410), - [sym_metavariable] = ACTIONS(2408), - [sym__raw_string_literal_start] = ACTIONS(2408), - [sym_float_literal] = ACTIONS(2408), + [665] = { + [sym_line_comment] = STATE(665), + [sym_block_comment] = STATE(665), + [ts_builtin_sym_end] = ACTIONS(2442), + [sym_identifier] = ACTIONS(2444), + [anon_sym_SEMI] = ACTIONS(2442), + [anon_sym_macro_rules_BANG] = ACTIONS(2442), + [anon_sym_LPAREN] = ACTIONS(2442), + [anon_sym_LBRACK] = ACTIONS(2442), + [anon_sym_LBRACE] = ACTIONS(2442), + [anon_sym_RBRACE] = ACTIONS(2442), + [anon_sym_STAR] = ACTIONS(2442), + [anon_sym_u8] = ACTIONS(2444), + [anon_sym_i8] = ACTIONS(2444), + [anon_sym_u16] = ACTIONS(2444), + [anon_sym_i16] = ACTIONS(2444), + [anon_sym_u32] = ACTIONS(2444), + [anon_sym_i32] = ACTIONS(2444), + [anon_sym_u64] = ACTIONS(2444), + [anon_sym_i64] = ACTIONS(2444), + [anon_sym_u128] = ACTIONS(2444), + [anon_sym_i128] = ACTIONS(2444), + [anon_sym_isize] = ACTIONS(2444), + [anon_sym_usize] = ACTIONS(2444), + [anon_sym_f32] = ACTIONS(2444), + [anon_sym_f64] = ACTIONS(2444), + [anon_sym_bool] = ACTIONS(2444), + [anon_sym_str] = ACTIONS(2444), + [anon_sym_char] = ACTIONS(2444), + [anon_sym_DASH] = ACTIONS(2442), + [anon_sym_BANG] = ACTIONS(2442), + [anon_sym_AMP] = ACTIONS(2442), + [anon_sym_PIPE] = ACTIONS(2442), + [anon_sym_LT] = ACTIONS(2442), + [anon_sym_DOT_DOT] = ACTIONS(2442), + [anon_sym_COLON_COLON] = ACTIONS(2442), + [anon_sym_POUND] = ACTIONS(2442), + [anon_sym_SQUOTE] = ACTIONS(2444), + [anon_sym_async] = ACTIONS(2444), + [anon_sym_break] = ACTIONS(2444), + [anon_sym_const] = ACTIONS(2444), + [anon_sym_continue] = ACTIONS(2444), + [anon_sym_default] = ACTIONS(2444), + [anon_sym_enum] = ACTIONS(2444), + [anon_sym_fn] = ACTIONS(2444), + [anon_sym_for] = ACTIONS(2444), + [anon_sym_if] = ACTIONS(2444), + [anon_sym_impl] = ACTIONS(2444), + [anon_sym_let] = ACTIONS(2444), + [anon_sym_loop] = ACTIONS(2444), + [anon_sym_match] = ACTIONS(2444), + [anon_sym_mod] = ACTIONS(2444), + [anon_sym_pub] = ACTIONS(2444), + [anon_sym_return] = ACTIONS(2444), + [anon_sym_static] = ACTIONS(2444), + [anon_sym_struct] = ACTIONS(2444), + [anon_sym_trait] = ACTIONS(2444), + [anon_sym_type] = ACTIONS(2444), + [anon_sym_union] = ACTIONS(2444), + [anon_sym_unsafe] = ACTIONS(2444), + [anon_sym_use] = ACTIONS(2444), + [anon_sym_while] = ACTIONS(2444), + [anon_sym_extern] = ACTIONS(2444), + [anon_sym_yield] = ACTIONS(2444), + [anon_sym_move] = ACTIONS(2444), + [anon_sym_try] = ACTIONS(2444), + [sym_integer_literal] = ACTIONS(2442), + [aux_sym_string_literal_token1] = ACTIONS(2442), + [sym_char_literal] = ACTIONS(2442), + [anon_sym_true] = ACTIONS(2444), + [anon_sym_false] = ACTIONS(2444), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2444), + [sym_super] = ACTIONS(2444), + [sym_crate] = ACTIONS(2444), + [sym_metavariable] = ACTIONS(2442), + [sym__raw_string_literal_start] = ACTIONS(2442), + [sym_float_literal] = ACTIONS(2442), }, - [644] = { - [sym_line_comment] = STATE(644), - [sym_block_comment] = STATE(644), - [ts_builtin_sym_end] = ACTIONS(2412), - [sym_identifier] = ACTIONS(2414), - [anon_sym_SEMI] = ACTIONS(2412), - [anon_sym_macro_rules_BANG] = ACTIONS(2412), - [anon_sym_LPAREN] = ACTIONS(2412), - [anon_sym_LBRACK] = ACTIONS(2412), - [anon_sym_LBRACE] = ACTIONS(2412), - [anon_sym_RBRACE] = ACTIONS(2412), - [anon_sym_STAR] = ACTIONS(2412), - [anon_sym_u8] = ACTIONS(2414), - [anon_sym_i8] = ACTIONS(2414), - [anon_sym_u16] = ACTIONS(2414), - [anon_sym_i16] = ACTIONS(2414), - [anon_sym_u32] = ACTIONS(2414), - [anon_sym_i32] = ACTIONS(2414), - [anon_sym_u64] = ACTIONS(2414), - [anon_sym_i64] = ACTIONS(2414), - [anon_sym_u128] = ACTIONS(2414), - [anon_sym_i128] = ACTIONS(2414), - [anon_sym_isize] = ACTIONS(2414), - [anon_sym_usize] = ACTIONS(2414), - [anon_sym_f32] = ACTIONS(2414), - [anon_sym_f64] = ACTIONS(2414), - [anon_sym_bool] = ACTIONS(2414), - [anon_sym_str] = ACTIONS(2414), - [anon_sym_char] = ACTIONS(2414), - [anon_sym_DASH] = ACTIONS(2412), - [anon_sym_BANG] = ACTIONS(2412), - [anon_sym_AMP] = ACTIONS(2412), - [anon_sym_PIPE] = ACTIONS(2412), - [anon_sym_LT] = ACTIONS(2412), - [anon_sym_DOT_DOT] = ACTIONS(2412), - [anon_sym_COLON_COLON] = ACTIONS(2412), - [anon_sym_POUND] = ACTIONS(2412), - [anon_sym_SQUOTE] = ACTIONS(2414), - [anon_sym_async] = ACTIONS(2414), - [anon_sym_break] = ACTIONS(2414), - [anon_sym_const] = ACTIONS(2414), - [anon_sym_continue] = ACTIONS(2414), - [anon_sym_default] = ACTIONS(2414), - [anon_sym_enum] = ACTIONS(2414), - [anon_sym_fn] = ACTIONS(2414), - [anon_sym_for] = ACTIONS(2414), - [anon_sym_if] = ACTIONS(2414), - [anon_sym_impl] = ACTIONS(2414), - [anon_sym_let] = ACTIONS(2414), - [anon_sym_loop] = ACTIONS(2414), - [anon_sym_match] = ACTIONS(2414), - [anon_sym_mod] = ACTIONS(2414), - [anon_sym_pub] = ACTIONS(2414), - [anon_sym_return] = ACTIONS(2414), - [anon_sym_static] = ACTIONS(2414), - [anon_sym_struct] = ACTIONS(2414), - [anon_sym_trait] = ACTIONS(2414), - [anon_sym_type] = ACTIONS(2414), - [anon_sym_union] = ACTIONS(2414), - [anon_sym_unsafe] = ACTIONS(2414), - [anon_sym_use] = ACTIONS(2414), - [anon_sym_while] = ACTIONS(2414), - [anon_sym_extern] = ACTIONS(2414), - [anon_sym_yield] = ACTIONS(2414), - [anon_sym_move] = ACTIONS(2414), - [anon_sym_try] = ACTIONS(2414), - [sym_integer_literal] = ACTIONS(2412), - [aux_sym_string_literal_token1] = ACTIONS(2412), - [sym_char_literal] = ACTIONS(2412), - [anon_sym_true] = ACTIONS(2414), - [anon_sym_false] = ACTIONS(2414), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2414), - [sym_super] = ACTIONS(2414), - [sym_crate] = ACTIONS(2414), - [sym_metavariable] = ACTIONS(2412), - [sym__raw_string_literal_start] = ACTIONS(2412), - [sym_float_literal] = ACTIONS(2412), + [666] = { + [sym_line_comment] = STATE(666), + [sym_block_comment] = STATE(666), + [ts_builtin_sym_end] = ACTIONS(2446), + [sym_identifier] = ACTIONS(2448), + [anon_sym_SEMI] = ACTIONS(2446), + [anon_sym_macro_rules_BANG] = ACTIONS(2446), + [anon_sym_LPAREN] = ACTIONS(2446), + [anon_sym_LBRACK] = ACTIONS(2446), + [anon_sym_LBRACE] = ACTIONS(2446), + [anon_sym_RBRACE] = ACTIONS(2446), + [anon_sym_STAR] = ACTIONS(2446), + [anon_sym_u8] = ACTIONS(2448), + [anon_sym_i8] = ACTIONS(2448), + [anon_sym_u16] = ACTIONS(2448), + [anon_sym_i16] = ACTIONS(2448), + [anon_sym_u32] = ACTIONS(2448), + [anon_sym_i32] = ACTIONS(2448), + [anon_sym_u64] = ACTIONS(2448), + [anon_sym_i64] = ACTIONS(2448), + [anon_sym_u128] = ACTIONS(2448), + [anon_sym_i128] = ACTIONS(2448), + [anon_sym_isize] = ACTIONS(2448), + [anon_sym_usize] = ACTIONS(2448), + [anon_sym_f32] = ACTIONS(2448), + [anon_sym_f64] = ACTIONS(2448), + [anon_sym_bool] = ACTIONS(2448), + [anon_sym_str] = ACTIONS(2448), + [anon_sym_char] = ACTIONS(2448), + [anon_sym_DASH] = ACTIONS(2446), + [anon_sym_BANG] = ACTIONS(2446), + [anon_sym_AMP] = ACTIONS(2446), + [anon_sym_PIPE] = ACTIONS(2446), + [anon_sym_LT] = ACTIONS(2446), + [anon_sym_DOT_DOT] = ACTIONS(2446), + [anon_sym_COLON_COLON] = ACTIONS(2446), + [anon_sym_POUND] = ACTIONS(2446), + [anon_sym_SQUOTE] = ACTIONS(2448), + [anon_sym_async] = ACTIONS(2448), + [anon_sym_break] = ACTIONS(2448), + [anon_sym_const] = ACTIONS(2448), + [anon_sym_continue] = ACTIONS(2448), + [anon_sym_default] = ACTIONS(2448), + [anon_sym_enum] = ACTIONS(2448), + [anon_sym_fn] = ACTIONS(2448), + [anon_sym_for] = ACTIONS(2448), + [anon_sym_if] = ACTIONS(2448), + [anon_sym_impl] = ACTIONS(2448), + [anon_sym_let] = ACTIONS(2448), + [anon_sym_loop] = ACTIONS(2448), + [anon_sym_match] = ACTIONS(2448), + [anon_sym_mod] = ACTIONS(2448), + [anon_sym_pub] = ACTIONS(2448), + [anon_sym_return] = ACTIONS(2448), + [anon_sym_static] = ACTIONS(2448), + [anon_sym_struct] = ACTIONS(2448), + [anon_sym_trait] = ACTIONS(2448), + [anon_sym_type] = ACTIONS(2448), + [anon_sym_union] = ACTIONS(2448), + [anon_sym_unsafe] = ACTIONS(2448), + [anon_sym_use] = ACTIONS(2448), + [anon_sym_while] = ACTIONS(2448), + [anon_sym_extern] = ACTIONS(2448), + [anon_sym_yield] = ACTIONS(2448), + [anon_sym_move] = ACTIONS(2448), + [anon_sym_try] = ACTIONS(2448), + [sym_integer_literal] = ACTIONS(2446), + [aux_sym_string_literal_token1] = ACTIONS(2446), + [sym_char_literal] = ACTIONS(2446), + [anon_sym_true] = ACTIONS(2448), + [anon_sym_false] = ACTIONS(2448), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2448), + [sym_super] = ACTIONS(2448), + [sym_crate] = ACTIONS(2448), + [sym_metavariable] = ACTIONS(2446), + [sym__raw_string_literal_start] = ACTIONS(2446), + [sym_float_literal] = ACTIONS(2446), }, - [645] = { - [sym_line_comment] = STATE(645), - [sym_block_comment] = STATE(645), + [667] = { + [sym_line_comment] = STATE(667), + [sym_block_comment] = STATE(667), + [ts_builtin_sym_end] = ACTIONS(2450), + [sym_identifier] = ACTIONS(2452), + [anon_sym_SEMI] = ACTIONS(2450), + [anon_sym_macro_rules_BANG] = ACTIONS(2450), + [anon_sym_LPAREN] = ACTIONS(2450), + [anon_sym_LBRACK] = ACTIONS(2450), + [anon_sym_LBRACE] = ACTIONS(2450), + [anon_sym_RBRACE] = ACTIONS(2450), + [anon_sym_STAR] = ACTIONS(2450), + [anon_sym_u8] = ACTIONS(2452), + [anon_sym_i8] = ACTIONS(2452), + [anon_sym_u16] = ACTIONS(2452), + [anon_sym_i16] = ACTIONS(2452), + [anon_sym_u32] = ACTIONS(2452), + [anon_sym_i32] = ACTIONS(2452), + [anon_sym_u64] = ACTIONS(2452), + [anon_sym_i64] = ACTIONS(2452), + [anon_sym_u128] = ACTIONS(2452), + [anon_sym_i128] = ACTIONS(2452), + [anon_sym_isize] = ACTIONS(2452), + [anon_sym_usize] = ACTIONS(2452), + [anon_sym_f32] = ACTIONS(2452), + [anon_sym_f64] = ACTIONS(2452), + [anon_sym_bool] = ACTIONS(2452), + [anon_sym_str] = ACTIONS(2452), + [anon_sym_char] = ACTIONS(2452), + [anon_sym_DASH] = ACTIONS(2450), + [anon_sym_BANG] = ACTIONS(2450), + [anon_sym_AMP] = ACTIONS(2450), + [anon_sym_PIPE] = ACTIONS(2450), + [anon_sym_LT] = ACTIONS(2450), + [anon_sym_DOT_DOT] = ACTIONS(2450), + [anon_sym_COLON_COLON] = ACTIONS(2450), + [anon_sym_POUND] = ACTIONS(2450), + [anon_sym_SQUOTE] = ACTIONS(2452), + [anon_sym_async] = ACTIONS(2452), + [anon_sym_break] = ACTIONS(2452), + [anon_sym_const] = ACTIONS(2452), + [anon_sym_continue] = ACTIONS(2452), + [anon_sym_default] = ACTIONS(2452), + [anon_sym_enum] = ACTIONS(2452), + [anon_sym_fn] = ACTIONS(2452), + [anon_sym_for] = ACTIONS(2452), + [anon_sym_if] = ACTIONS(2452), + [anon_sym_impl] = ACTIONS(2452), + [anon_sym_let] = ACTIONS(2452), + [anon_sym_loop] = ACTIONS(2452), + [anon_sym_match] = ACTIONS(2452), + [anon_sym_mod] = ACTIONS(2452), + [anon_sym_pub] = ACTIONS(2452), + [anon_sym_return] = ACTIONS(2452), + [anon_sym_static] = ACTIONS(2452), + [anon_sym_struct] = ACTIONS(2452), + [anon_sym_trait] = ACTIONS(2452), + [anon_sym_type] = ACTIONS(2452), + [anon_sym_union] = ACTIONS(2452), + [anon_sym_unsafe] = ACTIONS(2452), + [anon_sym_use] = ACTIONS(2452), + [anon_sym_while] = ACTIONS(2452), + [anon_sym_extern] = ACTIONS(2452), + [anon_sym_yield] = ACTIONS(2452), + [anon_sym_move] = ACTIONS(2452), + [anon_sym_try] = ACTIONS(2452), + [sym_integer_literal] = ACTIONS(2450), + [aux_sym_string_literal_token1] = ACTIONS(2450), + [sym_char_literal] = ACTIONS(2450), + [anon_sym_true] = ACTIONS(2452), + [anon_sym_false] = ACTIONS(2452), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2452), + [sym_super] = ACTIONS(2452), + [sym_crate] = ACTIONS(2452), + [sym_metavariable] = ACTIONS(2450), + [sym__raw_string_literal_start] = ACTIONS(2450), + [sym_float_literal] = ACTIONS(2450), + }, + [668] = { + [sym_line_comment] = STATE(668), + [sym_block_comment] = STATE(668), + [ts_builtin_sym_end] = ACTIONS(2454), + [sym_identifier] = ACTIONS(2456), + [anon_sym_SEMI] = ACTIONS(2454), + [anon_sym_macro_rules_BANG] = ACTIONS(2454), + [anon_sym_LPAREN] = ACTIONS(2454), + [anon_sym_LBRACK] = ACTIONS(2454), + [anon_sym_LBRACE] = ACTIONS(2454), + [anon_sym_RBRACE] = ACTIONS(2454), + [anon_sym_STAR] = ACTIONS(2454), + [anon_sym_u8] = ACTIONS(2456), + [anon_sym_i8] = ACTIONS(2456), + [anon_sym_u16] = ACTIONS(2456), + [anon_sym_i16] = ACTIONS(2456), + [anon_sym_u32] = ACTIONS(2456), + [anon_sym_i32] = ACTIONS(2456), + [anon_sym_u64] = ACTIONS(2456), + [anon_sym_i64] = ACTIONS(2456), + [anon_sym_u128] = ACTIONS(2456), + [anon_sym_i128] = ACTIONS(2456), + [anon_sym_isize] = ACTIONS(2456), + [anon_sym_usize] = ACTIONS(2456), + [anon_sym_f32] = ACTIONS(2456), + [anon_sym_f64] = ACTIONS(2456), + [anon_sym_bool] = ACTIONS(2456), + [anon_sym_str] = ACTIONS(2456), + [anon_sym_char] = ACTIONS(2456), + [anon_sym_DASH] = ACTIONS(2454), + [anon_sym_BANG] = ACTIONS(2454), + [anon_sym_AMP] = ACTIONS(2454), + [anon_sym_PIPE] = ACTIONS(2454), + [anon_sym_LT] = ACTIONS(2454), + [anon_sym_DOT_DOT] = ACTIONS(2454), + [anon_sym_COLON_COLON] = ACTIONS(2454), + [anon_sym_POUND] = ACTIONS(2454), + [anon_sym_SQUOTE] = ACTIONS(2456), + [anon_sym_async] = ACTIONS(2456), + [anon_sym_break] = ACTIONS(2456), + [anon_sym_const] = ACTIONS(2456), + [anon_sym_continue] = ACTIONS(2456), + [anon_sym_default] = ACTIONS(2456), + [anon_sym_enum] = ACTIONS(2456), + [anon_sym_fn] = ACTIONS(2456), + [anon_sym_for] = ACTIONS(2456), + [anon_sym_if] = ACTIONS(2456), + [anon_sym_impl] = ACTIONS(2456), + [anon_sym_let] = ACTIONS(2456), + [anon_sym_loop] = ACTIONS(2456), + [anon_sym_match] = ACTIONS(2456), + [anon_sym_mod] = ACTIONS(2456), + [anon_sym_pub] = ACTIONS(2456), + [anon_sym_return] = ACTIONS(2456), + [anon_sym_static] = ACTIONS(2456), + [anon_sym_struct] = ACTIONS(2456), + [anon_sym_trait] = ACTIONS(2456), + [anon_sym_type] = ACTIONS(2456), + [anon_sym_union] = ACTIONS(2456), + [anon_sym_unsafe] = ACTIONS(2456), + [anon_sym_use] = ACTIONS(2456), + [anon_sym_while] = ACTIONS(2456), + [anon_sym_extern] = ACTIONS(2456), + [anon_sym_yield] = ACTIONS(2456), + [anon_sym_move] = ACTIONS(2456), + [anon_sym_try] = ACTIONS(2456), + [sym_integer_literal] = ACTIONS(2454), + [aux_sym_string_literal_token1] = ACTIONS(2454), + [sym_char_literal] = ACTIONS(2454), + [anon_sym_true] = ACTIONS(2456), + [anon_sym_false] = ACTIONS(2456), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2456), + [sym_super] = ACTIONS(2456), + [sym_crate] = ACTIONS(2456), + [sym_metavariable] = ACTIONS(2454), + [sym__raw_string_literal_start] = ACTIONS(2454), + [sym_float_literal] = ACTIONS(2454), + }, + [669] = { + [sym_line_comment] = STATE(669), + [sym_block_comment] = STATE(669), + [ts_builtin_sym_end] = ACTIONS(1240), + [sym_identifier] = ACTIONS(1242), + [anon_sym_SEMI] = ACTIONS(1240), + [anon_sym_macro_rules_BANG] = ACTIONS(1240), + [anon_sym_LPAREN] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1240), + [anon_sym_LBRACE] = ACTIONS(1240), + [anon_sym_RBRACE] = ACTIONS(1240), + [anon_sym_STAR] = ACTIONS(1240), + [anon_sym_u8] = ACTIONS(1242), + [anon_sym_i8] = ACTIONS(1242), + [anon_sym_u16] = ACTIONS(1242), + [anon_sym_i16] = ACTIONS(1242), + [anon_sym_u32] = ACTIONS(1242), + [anon_sym_i32] = ACTIONS(1242), + [anon_sym_u64] = ACTIONS(1242), + [anon_sym_i64] = ACTIONS(1242), + [anon_sym_u128] = ACTIONS(1242), + [anon_sym_i128] = ACTIONS(1242), + [anon_sym_isize] = ACTIONS(1242), + [anon_sym_usize] = ACTIONS(1242), + [anon_sym_f32] = ACTIONS(1242), + [anon_sym_f64] = ACTIONS(1242), + [anon_sym_bool] = ACTIONS(1242), + [anon_sym_str] = ACTIONS(1242), + [anon_sym_char] = ACTIONS(1242), + [anon_sym_DASH] = ACTIONS(1240), + [anon_sym_BANG] = ACTIONS(1240), + [anon_sym_AMP] = ACTIONS(1240), + [anon_sym_PIPE] = ACTIONS(1240), + [anon_sym_LT] = ACTIONS(1240), + [anon_sym_DOT_DOT] = ACTIONS(1240), + [anon_sym_COLON_COLON] = ACTIONS(1240), + [anon_sym_POUND] = ACTIONS(1240), + [anon_sym_SQUOTE] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1242), + [anon_sym_break] = ACTIONS(1242), + [anon_sym_const] = ACTIONS(1242), + [anon_sym_continue] = ACTIONS(1242), + [anon_sym_default] = ACTIONS(1242), + [anon_sym_enum] = ACTIONS(1242), + [anon_sym_fn] = ACTIONS(1242), + [anon_sym_for] = ACTIONS(1242), + [anon_sym_if] = ACTIONS(1242), + [anon_sym_impl] = ACTIONS(1242), + [anon_sym_let] = ACTIONS(1242), + [anon_sym_loop] = ACTIONS(1242), + [anon_sym_match] = ACTIONS(1242), + [anon_sym_mod] = ACTIONS(1242), + [anon_sym_pub] = ACTIONS(1242), + [anon_sym_return] = ACTIONS(1242), + [anon_sym_static] = ACTIONS(1242), + [anon_sym_struct] = ACTIONS(1242), + [anon_sym_trait] = ACTIONS(1242), + [anon_sym_type] = ACTIONS(1242), + [anon_sym_union] = ACTIONS(1242), + [anon_sym_unsafe] = ACTIONS(1242), + [anon_sym_use] = ACTIONS(1242), + [anon_sym_while] = ACTIONS(1242), + [anon_sym_extern] = ACTIONS(1242), + [anon_sym_yield] = ACTIONS(1242), + [anon_sym_move] = ACTIONS(1242), + [anon_sym_try] = ACTIONS(1242), + [sym_integer_literal] = ACTIONS(1240), + [aux_sym_string_literal_token1] = ACTIONS(1240), + [sym_char_literal] = ACTIONS(1240), + [anon_sym_true] = ACTIONS(1242), + [anon_sym_false] = ACTIONS(1242), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1242), + [sym_super] = ACTIONS(1242), + [sym_crate] = ACTIONS(1242), + [sym_metavariable] = ACTIONS(1240), + [sym__raw_string_literal_start] = ACTIONS(1240), + [sym_float_literal] = ACTIONS(1240), + }, + [670] = { + [sym_line_comment] = STATE(670), + [sym_block_comment] = STATE(670), [ts_builtin_sym_end] = ACTIONS(1206), [sym_identifier] = ACTIONS(1208), [anon_sym_SEMI] = ACTIONS(1206), @@ -81864,1849 +83885,1129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1206), [sym_float_literal] = ACTIONS(1206), }, - [646] = { - [sym_line_comment] = STATE(646), - [sym_block_comment] = STATE(646), - [ts_builtin_sym_end] = ACTIONS(2416), - [sym_identifier] = ACTIONS(2418), - [anon_sym_SEMI] = ACTIONS(2416), - [anon_sym_macro_rules_BANG] = ACTIONS(2416), - [anon_sym_LPAREN] = ACTIONS(2416), - [anon_sym_LBRACK] = ACTIONS(2416), - [anon_sym_LBRACE] = ACTIONS(2416), - [anon_sym_RBRACE] = ACTIONS(2416), - [anon_sym_STAR] = ACTIONS(2416), - [anon_sym_u8] = ACTIONS(2418), - [anon_sym_i8] = ACTIONS(2418), - [anon_sym_u16] = ACTIONS(2418), - [anon_sym_i16] = ACTIONS(2418), - [anon_sym_u32] = ACTIONS(2418), - [anon_sym_i32] = ACTIONS(2418), - [anon_sym_u64] = ACTIONS(2418), - [anon_sym_i64] = ACTIONS(2418), - [anon_sym_u128] = ACTIONS(2418), - [anon_sym_i128] = ACTIONS(2418), - [anon_sym_isize] = ACTIONS(2418), - [anon_sym_usize] = ACTIONS(2418), - [anon_sym_f32] = ACTIONS(2418), - [anon_sym_f64] = ACTIONS(2418), - [anon_sym_bool] = ACTIONS(2418), - [anon_sym_str] = ACTIONS(2418), - [anon_sym_char] = ACTIONS(2418), - [anon_sym_DASH] = ACTIONS(2416), - [anon_sym_BANG] = ACTIONS(2416), - [anon_sym_AMP] = ACTIONS(2416), - [anon_sym_PIPE] = ACTIONS(2416), - [anon_sym_LT] = ACTIONS(2416), - [anon_sym_DOT_DOT] = ACTIONS(2416), - [anon_sym_COLON_COLON] = ACTIONS(2416), - [anon_sym_POUND] = ACTIONS(2416), - [anon_sym_SQUOTE] = ACTIONS(2418), - [anon_sym_async] = ACTIONS(2418), - [anon_sym_break] = ACTIONS(2418), - [anon_sym_const] = ACTIONS(2418), - [anon_sym_continue] = ACTIONS(2418), - [anon_sym_default] = ACTIONS(2418), - [anon_sym_enum] = ACTIONS(2418), - [anon_sym_fn] = ACTIONS(2418), - [anon_sym_for] = ACTIONS(2418), - [anon_sym_if] = ACTIONS(2418), - [anon_sym_impl] = ACTIONS(2418), - [anon_sym_let] = ACTIONS(2418), - [anon_sym_loop] = ACTIONS(2418), - [anon_sym_match] = ACTIONS(2418), - [anon_sym_mod] = ACTIONS(2418), - [anon_sym_pub] = ACTIONS(2418), - [anon_sym_return] = ACTIONS(2418), - [anon_sym_static] = ACTIONS(2418), - [anon_sym_struct] = ACTIONS(2418), - [anon_sym_trait] = ACTIONS(2418), - [anon_sym_type] = ACTIONS(2418), - [anon_sym_union] = ACTIONS(2418), - [anon_sym_unsafe] = ACTIONS(2418), - [anon_sym_use] = ACTIONS(2418), - [anon_sym_while] = ACTIONS(2418), - [anon_sym_extern] = ACTIONS(2418), - [anon_sym_yield] = ACTIONS(2418), - [anon_sym_move] = ACTIONS(2418), - [anon_sym_try] = ACTIONS(2418), - [sym_integer_literal] = ACTIONS(2416), - [aux_sym_string_literal_token1] = ACTIONS(2416), - [sym_char_literal] = ACTIONS(2416), - [anon_sym_true] = ACTIONS(2418), - [anon_sym_false] = ACTIONS(2418), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2418), - [sym_super] = ACTIONS(2418), - [sym_crate] = ACTIONS(2418), - [sym_metavariable] = ACTIONS(2416), - [sym__raw_string_literal_start] = ACTIONS(2416), - [sym_float_literal] = ACTIONS(2416), - }, - [647] = { - [sym_line_comment] = STATE(647), - [sym_block_comment] = STATE(647), - [ts_builtin_sym_end] = ACTIONS(2420), - [sym_identifier] = ACTIONS(2422), - [anon_sym_SEMI] = ACTIONS(2420), - [anon_sym_macro_rules_BANG] = ACTIONS(2420), - [anon_sym_LPAREN] = ACTIONS(2420), - [anon_sym_LBRACK] = ACTIONS(2420), - [anon_sym_LBRACE] = ACTIONS(2420), - [anon_sym_RBRACE] = ACTIONS(2420), - [anon_sym_STAR] = ACTIONS(2420), - [anon_sym_u8] = ACTIONS(2422), - [anon_sym_i8] = ACTIONS(2422), - [anon_sym_u16] = ACTIONS(2422), - [anon_sym_i16] = ACTIONS(2422), - [anon_sym_u32] = ACTIONS(2422), - [anon_sym_i32] = ACTIONS(2422), - [anon_sym_u64] = ACTIONS(2422), - [anon_sym_i64] = ACTIONS(2422), - [anon_sym_u128] = ACTIONS(2422), - [anon_sym_i128] = ACTIONS(2422), - [anon_sym_isize] = ACTIONS(2422), - [anon_sym_usize] = ACTIONS(2422), - [anon_sym_f32] = ACTIONS(2422), - [anon_sym_f64] = ACTIONS(2422), - [anon_sym_bool] = ACTIONS(2422), - [anon_sym_str] = ACTIONS(2422), - [anon_sym_char] = ACTIONS(2422), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_BANG] = ACTIONS(2420), - [anon_sym_AMP] = ACTIONS(2420), - [anon_sym_PIPE] = ACTIONS(2420), - [anon_sym_LT] = ACTIONS(2420), - [anon_sym_DOT_DOT] = ACTIONS(2420), - [anon_sym_COLON_COLON] = ACTIONS(2420), - [anon_sym_POUND] = ACTIONS(2420), - [anon_sym_SQUOTE] = ACTIONS(2422), - [anon_sym_async] = ACTIONS(2422), - [anon_sym_break] = ACTIONS(2422), - [anon_sym_const] = ACTIONS(2422), - [anon_sym_continue] = ACTIONS(2422), - [anon_sym_default] = ACTIONS(2422), - [anon_sym_enum] = ACTIONS(2422), - [anon_sym_fn] = ACTIONS(2422), - [anon_sym_for] = ACTIONS(2422), - [anon_sym_if] = ACTIONS(2422), - [anon_sym_impl] = ACTIONS(2422), - [anon_sym_let] = ACTIONS(2422), - [anon_sym_loop] = ACTIONS(2422), - [anon_sym_match] = ACTIONS(2422), - [anon_sym_mod] = ACTIONS(2422), - [anon_sym_pub] = ACTIONS(2422), - [anon_sym_return] = ACTIONS(2422), - [anon_sym_static] = ACTIONS(2422), - [anon_sym_struct] = ACTIONS(2422), - [anon_sym_trait] = ACTIONS(2422), - [anon_sym_type] = ACTIONS(2422), - [anon_sym_union] = ACTIONS(2422), - [anon_sym_unsafe] = ACTIONS(2422), - [anon_sym_use] = ACTIONS(2422), - [anon_sym_while] = ACTIONS(2422), - [anon_sym_extern] = ACTIONS(2422), - [anon_sym_yield] = ACTIONS(2422), - [anon_sym_move] = ACTIONS(2422), - [anon_sym_try] = ACTIONS(2422), - [sym_integer_literal] = ACTIONS(2420), - [aux_sym_string_literal_token1] = ACTIONS(2420), - [sym_char_literal] = ACTIONS(2420), - [anon_sym_true] = ACTIONS(2422), - [anon_sym_false] = ACTIONS(2422), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2422), - [sym_super] = ACTIONS(2422), - [sym_crate] = ACTIONS(2422), - [sym_metavariable] = ACTIONS(2420), - [sym__raw_string_literal_start] = ACTIONS(2420), - [sym_float_literal] = ACTIONS(2420), - }, - [648] = { - [sym_line_comment] = STATE(648), - [sym_block_comment] = STATE(648), - [ts_builtin_sym_end] = ACTIONS(2424), - [sym_identifier] = ACTIONS(2426), - [anon_sym_SEMI] = ACTIONS(2424), - [anon_sym_macro_rules_BANG] = ACTIONS(2424), - [anon_sym_LPAREN] = ACTIONS(2424), - [anon_sym_LBRACK] = ACTIONS(2424), - [anon_sym_LBRACE] = ACTIONS(2424), - [anon_sym_RBRACE] = ACTIONS(2424), - [anon_sym_STAR] = ACTIONS(2424), - [anon_sym_u8] = ACTIONS(2426), - [anon_sym_i8] = ACTIONS(2426), - [anon_sym_u16] = ACTIONS(2426), - [anon_sym_i16] = ACTIONS(2426), - [anon_sym_u32] = ACTIONS(2426), - [anon_sym_i32] = ACTIONS(2426), - [anon_sym_u64] = ACTIONS(2426), - [anon_sym_i64] = ACTIONS(2426), - [anon_sym_u128] = ACTIONS(2426), - [anon_sym_i128] = ACTIONS(2426), - [anon_sym_isize] = ACTIONS(2426), - [anon_sym_usize] = ACTIONS(2426), - [anon_sym_f32] = ACTIONS(2426), - [anon_sym_f64] = ACTIONS(2426), - [anon_sym_bool] = ACTIONS(2426), - [anon_sym_str] = ACTIONS(2426), - [anon_sym_char] = ACTIONS(2426), - [anon_sym_DASH] = ACTIONS(2424), - [anon_sym_BANG] = ACTIONS(2424), - [anon_sym_AMP] = ACTIONS(2424), - [anon_sym_PIPE] = ACTIONS(2424), - [anon_sym_LT] = ACTIONS(2424), - [anon_sym_DOT_DOT] = ACTIONS(2424), - [anon_sym_COLON_COLON] = ACTIONS(2424), - [anon_sym_POUND] = ACTIONS(2424), - [anon_sym_SQUOTE] = ACTIONS(2426), - [anon_sym_async] = ACTIONS(2426), - [anon_sym_break] = ACTIONS(2426), - [anon_sym_const] = ACTIONS(2426), - [anon_sym_continue] = ACTIONS(2426), - [anon_sym_default] = ACTIONS(2426), - [anon_sym_enum] = ACTIONS(2426), - [anon_sym_fn] = ACTIONS(2426), - [anon_sym_for] = ACTIONS(2426), - [anon_sym_if] = ACTIONS(2426), - [anon_sym_impl] = ACTIONS(2426), - [anon_sym_let] = ACTIONS(2426), - [anon_sym_loop] = ACTIONS(2426), - [anon_sym_match] = ACTIONS(2426), - [anon_sym_mod] = ACTIONS(2426), - [anon_sym_pub] = ACTIONS(2426), - [anon_sym_return] = ACTIONS(2426), - [anon_sym_static] = ACTIONS(2426), - [anon_sym_struct] = ACTIONS(2426), - [anon_sym_trait] = ACTIONS(2426), - [anon_sym_type] = ACTIONS(2426), - [anon_sym_union] = ACTIONS(2426), - [anon_sym_unsafe] = ACTIONS(2426), - [anon_sym_use] = ACTIONS(2426), - [anon_sym_while] = ACTIONS(2426), - [anon_sym_extern] = ACTIONS(2426), - [anon_sym_yield] = ACTIONS(2426), - [anon_sym_move] = ACTIONS(2426), - [anon_sym_try] = ACTIONS(2426), - [sym_integer_literal] = ACTIONS(2424), - [aux_sym_string_literal_token1] = ACTIONS(2424), - [sym_char_literal] = ACTIONS(2424), - [anon_sym_true] = ACTIONS(2426), - [anon_sym_false] = ACTIONS(2426), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2426), - [sym_super] = ACTIONS(2426), - [sym_crate] = ACTIONS(2426), - [sym_metavariable] = ACTIONS(2424), - [sym__raw_string_literal_start] = ACTIONS(2424), - [sym_float_literal] = ACTIONS(2424), - }, - [649] = { - [sym_line_comment] = STATE(649), - [sym_block_comment] = STATE(649), - [ts_builtin_sym_end] = ACTIONS(2428), - [sym_identifier] = ACTIONS(2430), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_macro_rules_BANG] = ACTIONS(2428), - [anon_sym_LPAREN] = ACTIONS(2428), - [anon_sym_LBRACK] = ACTIONS(2428), - [anon_sym_LBRACE] = ACTIONS(2428), - [anon_sym_RBRACE] = ACTIONS(2428), - [anon_sym_STAR] = ACTIONS(2428), - [anon_sym_u8] = ACTIONS(2430), - [anon_sym_i8] = ACTIONS(2430), - [anon_sym_u16] = ACTIONS(2430), - [anon_sym_i16] = ACTIONS(2430), - [anon_sym_u32] = ACTIONS(2430), - [anon_sym_i32] = ACTIONS(2430), - [anon_sym_u64] = ACTIONS(2430), - [anon_sym_i64] = ACTIONS(2430), - [anon_sym_u128] = ACTIONS(2430), - [anon_sym_i128] = ACTIONS(2430), - [anon_sym_isize] = ACTIONS(2430), - [anon_sym_usize] = ACTIONS(2430), - [anon_sym_f32] = ACTIONS(2430), - [anon_sym_f64] = ACTIONS(2430), - [anon_sym_bool] = ACTIONS(2430), - [anon_sym_str] = ACTIONS(2430), - [anon_sym_char] = ACTIONS(2430), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_BANG] = ACTIONS(2428), - [anon_sym_AMP] = ACTIONS(2428), - [anon_sym_PIPE] = ACTIONS(2428), - [anon_sym_LT] = ACTIONS(2428), - [anon_sym_DOT_DOT] = ACTIONS(2428), - [anon_sym_COLON_COLON] = ACTIONS(2428), - [anon_sym_POUND] = ACTIONS(2428), - [anon_sym_SQUOTE] = ACTIONS(2430), - [anon_sym_async] = ACTIONS(2430), - [anon_sym_break] = ACTIONS(2430), - [anon_sym_const] = ACTIONS(2430), - [anon_sym_continue] = ACTIONS(2430), - [anon_sym_default] = ACTIONS(2430), - [anon_sym_enum] = ACTIONS(2430), - [anon_sym_fn] = ACTIONS(2430), - [anon_sym_for] = ACTIONS(2430), - [anon_sym_if] = ACTIONS(2430), - [anon_sym_impl] = ACTIONS(2430), - [anon_sym_let] = ACTIONS(2430), - [anon_sym_loop] = ACTIONS(2430), - [anon_sym_match] = ACTIONS(2430), - [anon_sym_mod] = ACTIONS(2430), - [anon_sym_pub] = ACTIONS(2430), - [anon_sym_return] = ACTIONS(2430), - [anon_sym_static] = ACTIONS(2430), - [anon_sym_struct] = ACTIONS(2430), - [anon_sym_trait] = ACTIONS(2430), - [anon_sym_type] = ACTIONS(2430), - [anon_sym_union] = ACTIONS(2430), - [anon_sym_unsafe] = ACTIONS(2430), - [anon_sym_use] = ACTIONS(2430), - [anon_sym_while] = ACTIONS(2430), - [anon_sym_extern] = ACTIONS(2430), - [anon_sym_yield] = ACTIONS(2430), - [anon_sym_move] = ACTIONS(2430), - [anon_sym_try] = ACTIONS(2430), - [sym_integer_literal] = ACTIONS(2428), - [aux_sym_string_literal_token1] = ACTIONS(2428), - [sym_char_literal] = ACTIONS(2428), - [anon_sym_true] = ACTIONS(2430), - [anon_sym_false] = ACTIONS(2430), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2430), - [sym_super] = ACTIONS(2430), - [sym_crate] = ACTIONS(2430), - [sym_metavariable] = ACTIONS(2428), - [sym__raw_string_literal_start] = ACTIONS(2428), - [sym_float_literal] = ACTIONS(2428), - }, - [650] = { - [sym_line_comment] = STATE(650), - [sym_block_comment] = STATE(650), - [ts_builtin_sym_end] = ACTIONS(2432), - [sym_identifier] = ACTIONS(2434), - [anon_sym_SEMI] = ACTIONS(2432), - [anon_sym_macro_rules_BANG] = ACTIONS(2432), - [anon_sym_LPAREN] = ACTIONS(2432), - [anon_sym_LBRACK] = ACTIONS(2432), - [anon_sym_LBRACE] = ACTIONS(2432), - [anon_sym_RBRACE] = ACTIONS(2432), - [anon_sym_STAR] = ACTIONS(2432), - [anon_sym_u8] = ACTIONS(2434), - [anon_sym_i8] = ACTIONS(2434), - [anon_sym_u16] = ACTIONS(2434), - [anon_sym_i16] = ACTIONS(2434), - [anon_sym_u32] = ACTIONS(2434), - [anon_sym_i32] = ACTIONS(2434), - [anon_sym_u64] = ACTIONS(2434), - [anon_sym_i64] = ACTIONS(2434), - [anon_sym_u128] = ACTIONS(2434), - [anon_sym_i128] = ACTIONS(2434), - [anon_sym_isize] = ACTIONS(2434), - [anon_sym_usize] = ACTIONS(2434), - [anon_sym_f32] = ACTIONS(2434), - [anon_sym_f64] = ACTIONS(2434), - [anon_sym_bool] = ACTIONS(2434), - [anon_sym_str] = ACTIONS(2434), - [anon_sym_char] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2432), - [anon_sym_BANG] = ACTIONS(2432), - [anon_sym_AMP] = ACTIONS(2432), - [anon_sym_PIPE] = ACTIONS(2432), - [anon_sym_LT] = ACTIONS(2432), - [anon_sym_DOT_DOT] = ACTIONS(2432), - [anon_sym_COLON_COLON] = ACTIONS(2432), - [anon_sym_POUND] = ACTIONS(2432), - [anon_sym_SQUOTE] = ACTIONS(2434), - [anon_sym_async] = ACTIONS(2434), - [anon_sym_break] = ACTIONS(2434), - [anon_sym_const] = ACTIONS(2434), - [anon_sym_continue] = ACTIONS(2434), - [anon_sym_default] = ACTIONS(2434), - [anon_sym_enum] = ACTIONS(2434), - [anon_sym_fn] = ACTIONS(2434), - [anon_sym_for] = ACTIONS(2434), - [anon_sym_if] = ACTIONS(2434), - [anon_sym_impl] = ACTIONS(2434), - [anon_sym_let] = ACTIONS(2434), - [anon_sym_loop] = ACTIONS(2434), - [anon_sym_match] = ACTIONS(2434), - [anon_sym_mod] = ACTIONS(2434), - [anon_sym_pub] = ACTIONS(2434), - [anon_sym_return] = ACTIONS(2434), - [anon_sym_static] = ACTIONS(2434), - [anon_sym_struct] = ACTIONS(2434), - [anon_sym_trait] = ACTIONS(2434), - [anon_sym_type] = ACTIONS(2434), - [anon_sym_union] = ACTIONS(2434), - [anon_sym_unsafe] = ACTIONS(2434), - [anon_sym_use] = ACTIONS(2434), - [anon_sym_while] = ACTIONS(2434), - [anon_sym_extern] = ACTIONS(2434), - [anon_sym_yield] = ACTIONS(2434), - [anon_sym_move] = ACTIONS(2434), - [anon_sym_try] = ACTIONS(2434), - [sym_integer_literal] = ACTIONS(2432), - [aux_sym_string_literal_token1] = ACTIONS(2432), - [sym_char_literal] = ACTIONS(2432), - [anon_sym_true] = ACTIONS(2434), - [anon_sym_false] = ACTIONS(2434), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2434), - [sym_super] = ACTIONS(2434), - [sym_crate] = ACTIONS(2434), - [sym_metavariable] = ACTIONS(2432), - [sym__raw_string_literal_start] = ACTIONS(2432), - [sym_float_literal] = ACTIONS(2432), - }, - [651] = { - [sym_line_comment] = STATE(651), - [sym_block_comment] = STATE(651), - [ts_builtin_sym_end] = ACTIONS(2436), - [sym_identifier] = ACTIONS(2438), - [anon_sym_SEMI] = ACTIONS(2436), - [anon_sym_macro_rules_BANG] = ACTIONS(2436), - [anon_sym_LPAREN] = ACTIONS(2436), - [anon_sym_LBRACK] = ACTIONS(2436), - [anon_sym_LBRACE] = ACTIONS(2436), - [anon_sym_RBRACE] = ACTIONS(2436), - [anon_sym_STAR] = ACTIONS(2436), - [anon_sym_u8] = ACTIONS(2438), - [anon_sym_i8] = ACTIONS(2438), - [anon_sym_u16] = ACTIONS(2438), - [anon_sym_i16] = ACTIONS(2438), - [anon_sym_u32] = ACTIONS(2438), - [anon_sym_i32] = ACTIONS(2438), - [anon_sym_u64] = ACTIONS(2438), - [anon_sym_i64] = ACTIONS(2438), - [anon_sym_u128] = ACTIONS(2438), - [anon_sym_i128] = ACTIONS(2438), - [anon_sym_isize] = ACTIONS(2438), - [anon_sym_usize] = ACTIONS(2438), - [anon_sym_f32] = ACTIONS(2438), - [anon_sym_f64] = ACTIONS(2438), - [anon_sym_bool] = ACTIONS(2438), - [anon_sym_str] = ACTIONS(2438), - [anon_sym_char] = ACTIONS(2438), - [anon_sym_DASH] = ACTIONS(2436), - [anon_sym_BANG] = ACTIONS(2436), - [anon_sym_AMP] = ACTIONS(2436), - [anon_sym_PIPE] = ACTIONS(2436), - [anon_sym_LT] = ACTIONS(2436), - [anon_sym_DOT_DOT] = ACTIONS(2436), - [anon_sym_COLON_COLON] = ACTIONS(2436), - [anon_sym_POUND] = ACTIONS(2436), - [anon_sym_SQUOTE] = ACTIONS(2438), - [anon_sym_async] = ACTIONS(2438), - [anon_sym_break] = ACTIONS(2438), - [anon_sym_const] = ACTIONS(2438), - [anon_sym_continue] = ACTIONS(2438), - [anon_sym_default] = ACTIONS(2438), - [anon_sym_enum] = ACTIONS(2438), - [anon_sym_fn] = ACTIONS(2438), - [anon_sym_for] = ACTIONS(2438), - [anon_sym_if] = ACTIONS(2438), - [anon_sym_impl] = ACTIONS(2438), - [anon_sym_let] = ACTIONS(2438), - [anon_sym_loop] = ACTIONS(2438), - [anon_sym_match] = ACTIONS(2438), - [anon_sym_mod] = ACTIONS(2438), - [anon_sym_pub] = ACTIONS(2438), - [anon_sym_return] = ACTIONS(2438), - [anon_sym_static] = ACTIONS(2438), - [anon_sym_struct] = ACTIONS(2438), - [anon_sym_trait] = ACTIONS(2438), - [anon_sym_type] = ACTIONS(2438), - [anon_sym_union] = ACTIONS(2438), - [anon_sym_unsafe] = ACTIONS(2438), - [anon_sym_use] = ACTIONS(2438), - [anon_sym_while] = ACTIONS(2438), - [anon_sym_extern] = ACTIONS(2438), - [anon_sym_yield] = ACTIONS(2438), - [anon_sym_move] = ACTIONS(2438), - [anon_sym_try] = ACTIONS(2438), - [sym_integer_literal] = ACTIONS(2436), - [aux_sym_string_literal_token1] = ACTIONS(2436), - [sym_char_literal] = ACTIONS(2436), - [anon_sym_true] = ACTIONS(2438), - [anon_sym_false] = ACTIONS(2438), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2438), - [sym_super] = ACTIONS(2438), - [sym_crate] = ACTIONS(2438), - [sym_metavariable] = ACTIONS(2436), - [sym__raw_string_literal_start] = ACTIONS(2436), - [sym_float_literal] = ACTIONS(2436), - }, - [652] = { - [sym_line_comment] = STATE(652), - [sym_block_comment] = STATE(652), - [ts_builtin_sym_end] = ACTIONS(2440), - [sym_identifier] = ACTIONS(2442), - [anon_sym_SEMI] = ACTIONS(2440), - [anon_sym_macro_rules_BANG] = ACTIONS(2440), - [anon_sym_LPAREN] = ACTIONS(2440), - [anon_sym_LBRACK] = ACTIONS(2440), - [anon_sym_LBRACE] = ACTIONS(2440), - [anon_sym_RBRACE] = ACTIONS(2440), - [anon_sym_STAR] = ACTIONS(2440), - [anon_sym_u8] = ACTIONS(2442), - [anon_sym_i8] = ACTIONS(2442), - [anon_sym_u16] = ACTIONS(2442), - [anon_sym_i16] = ACTIONS(2442), - [anon_sym_u32] = ACTIONS(2442), - [anon_sym_i32] = ACTIONS(2442), - [anon_sym_u64] = ACTIONS(2442), - [anon_sym_i64] = ACTIONS(2442), - [anon_sym_u128] = ACTIONS(2442), - [anon_sym_i128] = ACTIONS(2442), - [anon_sym_isize] = ACTIONS(2442), - [anon_sym_usize] = ACTIONS(2442), - [anon_sym_f32] = ACTIONS(2442), - [anon_sym_f64] = ACTIONS(2442), - [anon_sym_bool] = ACTIONS(2442), - [anon_sym_str] = ACTIONS(2442), - [anon_sym_char] = ACTIONS(2442), - [anon_sym_DASH] = ACTIONS(2440), - [anon_sym_BANG] = ACTIONS(2440), - [anon_sym_AMP] = ACTIONS(2440), - [anon_sym_PIPE] = ACTIONS(2440), - [anon_sym_LT] = ACTIONS(2440), - [anon_sym_DOT_DOT] = ACTIONS(2440), - [anon_sym_COLON_COLON] = ACTIONS(2440), - [anon_sym_POUND] = ACTIONS(2440), - [anon_sym_SQUOTE] = ACTIONS(2442), - [anon_sym_async] = ACTIONS(2442), - [anon_sym_break] = ACTIONS(2442), - [anon_sym_const] = ACTIONS(2442), - [anon_sym_continue] = ACTIONS(2442), - [anon_sym_default] = ACTIONS(2442), - [anon_sym_enum] = ACTIONS(2442), - [anon_sym_fn] = ACTIONS(2442), - [anon_sym_for] = ACTIONS(2442), - [anon_sym_if] = ACTIONS(2442), - [anon_sym_impl] = ACTIONS(2442), - [anon_sym_let] = ACTIONS(2442), - [anon_sym_loop] = ACTIONS(2442), - [anon_sym_match] = ACTIONS(2442), - [anon_sym_mod] = ACTIONS(2442), - [anon_sym_pub] = ACTIONS(2442), - [anon_sym_return] = ACTIONS(2442), - [anon_sym_static] = ACTIONS(2442), - [anon_sym_struct] = ACTIONS(2442), - [anon_sym_trait] = ACTIONS(2442), - [anon_sym_type] = ACTIONS(2442), - [anon_sym_union] = ACTIONS(2442), - [anon_sym_unsafe] = ACTIONS(2442), - [anon_sym_use] = ACTIONS(2442), - [anon_sym_while] = ACTIONS(2442), - [anon_sym_extern] = ACTIONS(2442), - [anon_sym_yield] = ACTIONS(2442), - [anon_sym_move] = ACTIONS(2442), - [anon_sym_try] = ACTIONS(2442), - [sym_integer_literal] = ACTIONS(2440), - [aux_sym_string_literal_token1] = ACTIONS(2440), - [sym_char_literal] = ACTIONS(2440), - [anon_sym_true] = ACTIONS(2442), - [anon_sym_false] = ACTIONS(2442), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2442), - [sym_super] = ACTIONS(2442), - [sym_crate] = ACTIONS(2442), - [sym_metavariable] = ACTIONS(2440), - [sym__raw_string_literal_start] = ACTIONS(2440), - [sym_float_literal] = ACTIONS(2440), - }, - [653] = { - [sym_line_comment] = STATE(653), - [sym_block_comment] = STATE(653), - [ts_builtin_sym_end] = ACTIONS(2444), - [sym_identifier] = ACTIONS(2446), - [anon_sym_SEMI] = ACTIONS(2444), - [anon_sym_macro_rules_BANG] = ACTIONS(2444), - [anon_sym_LPAREN] = ACTIONS(2444), - [anon_sym_LBRACK] = ACTIONS(2444), - [anon_sym_LBRACE] = ACTIONS(2444), - [anon_sym_RBRACE] = ACTIONS(2444), - [anon_sym_STAR] = ACTIONS(2444), - [anon_sym_u8] = ACTIONS(2446), - [anon_sym_i8] = ACTIONS(2446), - [anon_sym_u16] = ACTIONS(2446), - [anon_sym_i16] = ACTIONS(2446), - [anon_sym_u32] = ACTIONS(2446), - [anon_sym_i32] = ACTIONS(2446), - [anon_sym_u64] = ACTIONS(2446), - [anon_sym_i64] = ACTIONS(2446), - [anon_sym_u128] = ACTIONS(2446), - [anon_sym_i128] = ACTIONS(2446), - [anon_sym_isize] = ACTIONS(2446), - [anon_sym_usize] = ACTIONS(2446), - [anon_sym_f32] = ACTIONS(2446), - [anon_sym_f64] = ACTIONS(2446), - [anon_sym_bool] = ACTIONS(2446), - [anon_sym_str] = ACTIONS(2446), - [anon_sym_char] = ACTIONS(2446), - [anon_sym_DASH] = ACTIONS(2444), - [anon_sym_BANG] = ACTIONS(2444), - [anon_sym_AMP] = ACTIONS(2444), - [anon_sym_PIPE] = ACTIONS(2444), - [anon_sym_LT] = ACTIONS(2444), - [anon_sym_DOT_DOT] = ACTIONS(2444), - [anon_sym_COLON_COLON] = ACTIONS(2444), - [anon_sym_POUND] = ACTIONS(2444), - [anon_sym_SQUOTE] = ACTIONS(2446), - [anon_sym_async] = ACTIONS(2446), - [anon_sym_break] = ACTIONS(2446), - [anon_sym_const] = ACTIONS(2446), - [anon_sym_continue] = ACTIONS(2446), - [anon_sym_default] = ACTIONS(2446), - [anon_sym_enum] = ACTIONS(2446), - [anon_sym_fn] = ACTIONS(2446), - [anon_sym_for] = ACTIONS(2446), - [anon_sym_if] = ACTIONS(2446), - [anon_sym_impl] = ACTIONS(2446), - [anon_sym_let] = ACTIONS(2446), - [anon_sym_loop] = ACTIONS(2446), - [anon_sym_match] = ACTIONS(2446), - [anon_sym_mod] = ACTIONS(2446), - [anon_sym_pub] = ACTIONS(2446), - [anon_sym_return] = ACTIONS(2446), - [anon_sym_static] = ACTIONS(2446), - [anon_sym_struct] = ACTIONS(2446), - [anon_sym_trait] = ACTIONS(2446), - [anon_sym_type] = ACTIONS(2446), - [anon_sym_union] = ACTIONS(2446), - [anon_sym_unsafe] = ACTIONS(2446), - [anon_sym_use] = ACTIONS(2446), - [anon_sym_while] = ACTIONS(2446), - [anon_sym_extern] = ACTIONS(2446), - [anon_sym_yield] = ACTIONS(2446), - [anon_sym_move] = ACTIONS(2446), - [anon_sym_try] = ACTIONS(2446), - [sym_integer_literal] = ACTIONS(2444), - [aux_sym_string_literal_token1] = ACTIONS(2444), - [sym_char_literal] = ACTIONS(2444), - [anon_sym_true] = ACTIONS(2446), - [anon_sym_false] = ACTIONS(2446), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2446), - [sym_super] = ACTIONS(2446), - [sym_crate] = ACTIONS(2446), - [sym_metavariable] = ACTIONS(2444), - [sym__raw_string_literal_start] = ACTIONS(2444), - [sym_float_literal] = ACTIONS(2444), - }, - [654] = { - [sym_line_comment] = STATE(654), - [sym_block_comment] = STATE(654), - [ts_builtin_sym_end] = ACTIONS(2448), - [sym_identifier] = ACTIONS(2450), - [anon_sym_SEMI] = ACTIONS(2448), - [anon_sym_macro_rules_BANG] = ACTIONS(2448), - [anon_sym_LPAREN] = ACTIONS(2448), - [anon_sym_LBRACK] = ACTIONS(2448), - [anon_sym_LBRACE] = ACTIONS(2448), - [anon_sym_RBRACE] = ACTIONS(2448), - [anon_sym_STAR] = ACTIONS(2448), - [anon_sym_u8] = ACTIONS(2450), - [anon_sym_i8] = ACTIONS(2450), - [anon_sym_u16] = ACTIONS(2450), - [anon_sym_i16] = ACTIONS(2450), - [anon_sym_u32] = ACTIONS(2450), - [anon_sym_i32] = ACTIONS(2450), - [anon_sym_u64] = ACTIONS(2450), - [anon_sym_i64] = ACTIONS(2450), - [anon_sym_u128] = ACTIONS(2450), - [anon_sym_i128] = ACTIONS(2450), - [anon_sym_isize] = ACTIONS(2450), - [anon_sym_usize] = ACTIONS(2450), - [anon_sym_f32] = ACTIONS(2450), - [anon_sym_f64] = ACTIONS(2450), - [anon_sym_bool] = ACTIONS(2450), - [anon_sym_str] = ACTIONS(2450), - [anon_sym_char] = ACTIONS(2450), - [anon_sym_DASH] = ACTIONS(2448), - [anon_sym_BANG] = ACTIONS(2448), - [anon_sym_AMP] = ACTIONS(2448), - [anon_sym_PIPE] = ACTIONS(2448), - [anon_sym_LT] = ACTIONS(2448), - [anon_sym_DOT_DOT] = ACTIONS(2448), - [anon_sym_COLON_COLON] = ACTIONS(2448), - [anon_sym_POUND] = ACTIONS(2448), - [anon_sym_SQUOTE] = ACTIONS(2450), - [anon_sym_async] = ACTIONS(2450), - [anon_sym_break] = ACTIONS(2450), - [anon_sym_const] = ACTIONS(2450), - [anon_sym_continue] = ACTIONS(2450), - [anon_sym_default] = ACTIONS(2450), - [anon_sym_enum] = ACTIONS(2450), - [anon_sym_fn] = ACTIONS(2450), - [anon_sym_for] = ACTIONS(2450), - [anon_sym_if] = ACTIONS(2450), - [anon_sym_impl] = ACTIONS(2450), - [anon_sym_let] = ACTIONS(2450), - [anon_sym_loop] = ACTIONS(2450), - [anon_sym_match] = ACTIONS(2450), - [anon_sym_mod] = ACTIONS(2450), - [anon_sym_pub] = ACTIONS(2450), - [anon_sym_return] = ACTIONS(2450), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_struct] = ACTIONS(2450), - [anon_sym_trait] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_union] = ACTIONS(2450), - [anon_sym_unsafe] = ACTIONS(2450), - [anon_sym_use] = ACTIONS(2450), - [anon_sym_while] = ACTIONS(2450), - [anon_sym_extern] = ACTIONS(2450), - [anon_sym_yield] = ACTIONS(2450), - [anon_sym_move] = ACTIONS(2450), - [anon_sym_try] = ACTIONS(2450), - [sym_integer_literal] = ACTIONS(2448), - [aux_sym_string_literal_token1] = ACTIONS(2448), - [sym_char_literal] = ACTIONS(2448), - [anon_sym_true] = ACTIONS(2450), - [anon_sym_false] = ACTIONS(2450), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2450), - [sym_super] = ACTIONS(2450), - [sym_crate] = ACTIONS(2450), - [sym_metavariable] = ACTIONS(2448), - [sym__raw_string_literal_start] = ACTIONS(2448), - [sym_float_literal] = ACTIONS(2448), - }, - [655] = { - [sym_line_comment] = STATE(655), - [sym_block_comment] = STATE(655), - [ts_builtin_sym_end] = ACTIONS(2452), - [sym_identifier] = ACTIONS(2454), - [anon_sym_SEMI] = ACTIONS(2452), - [anon_sym_macro_rules_BANG] = ACTIONS(2452), - [anon_sym_LPAREN] = ACTIONS(2452), - [anon_sym_LBRACK] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(2452), - [anon_sym_RBRACE] = ACTIONS(2452), - [anon_sym_STAR] = ACTIONS(2452), - [anon_sym_u8] = ACTIONS(2454), - [anon_sym_i8] = ACTIONS(2454), - [anon_sym_u16] = ACTIONS(2454), - [anon_sym_i16] = ACTIONS(2454), - [anon_sym_u32] = ACTIONS(2454), - [anon_sym_i32] = ACTIONS(2454), - [anon_sym_u64] = ACTIONS(2454), - [anon_sym_i64] = ACTIONS(2454), - [anon_sym_u128] = ACTIONS(2454), - [anon_sym_i128] = ACTIONS(2454), - [anon_sym_isize] = ACTIONS(2454), - [anon_sym_usize] = ACTIONS(2454), - [anon_sym_f32] = ACTIONS(2454), - [anon_sym_f64] = ACTIONS(2454), - [anon_sym_bool] = ACTIONS(2454), - [anon_sym_str] = ACTIONS(2454), - [anon_sym_char] = ACTIONS(2454), - [anon_sym_DASH] = ACTIONS(2452), - [anon_sym_BANG] = ACTIONS(2452), - [anon_sym_AMP] = ACTIONS(2452), - [anon_sym_PIPE] = ACTIONS(2452), - [anon_sym_LT] = ACTIONS(2452), - [anon_sym_DOT_DOT] = ACTIONS(2452), - [anon_sym_COLON_COLON] = ACTIONS(2452), - [anon_sym_POUND] = ACTIONS(2452), - [anon_sym_SQUOTE] = ACTIONS(2454), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_break] = ACTIONS(2454), - [anon_sym_const] = ACTIONS(2454), - [anon_sym_continue] = ACTIONS(2454), - [anon_sym_default] = ACTIONS(2454), - [anon_sym_enum] = ACTIONS(2454), - [anon_sym_fn] = ACTIONS(2454), - [anon_sym_for] = ACTIONS(2454), - [anon_sym_if] = ACTIONS(2454), - [anon_sym_impl] = ACTIONS(2454), - [anon_sym_let] = ACTIONS(2454), - [anon_sym_loop] = ACTIONS(2454), - [anon_sym_match] = ACTIONS(2454), - [anon_sym_mod] = ACTIONS(2454), - [anon_sym_pub] = ACTIONS(2454), - [anon_sym_return] = ACTIONS(2454), - [anon_sym_static] = ACTIONS(2454), - [anon_sym_struct] = ACTIONS(2454), - [anon_sym_trait] = ACTIONS(2454), - [anon_sym_type] = ACTIONS(2454), - [anon_sym_union] = ACTIONS(2454), - [anon_sym_unsafe] = ACTIONS(2454), - [anon_sym_use] = ACTIONS(2454), - [anon_sym_while] = ACTIONS(2454), - [anon_sym_extern] = ACTIONS(2454), - [anon_sym_yield] = ACTIONS(2454), - [anon_sym_move] = ACTIONS(2454), - [anon_sym_try] = ACTIONS(2454), - [sym_integer_literal] = ACTIONS(2452), - [aux_sym_string_literal_token1] = ACTIONS(2452), - [sym_char_literal] = ACTIONS(2452), - [anon_sym_true] = ACTIONS(2454), - [anon_sym_false] = ACTIONS(2454), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2454), - [sym_super] = ACTIONS(2454), - [sym_crate] = ACTIONS(2454), - [sym_metavariable] = ACTIONS(2452), - [sym__raw_string_literal_start] = ACTIONS(2452), - [sym_float_literal] = ACTIONS(2452), + [671] = { + [sym_line_comment] = STATE(671), + [sym_block_comment] = STATE(671), + [ts_builtin_sym_end] = ACTIONS(1232), + [sym_identifier] = ACTIONS(1234), + [anon_sym_SEMI] = ACTIONS(1232), + [anon_sym_macro_rules_BANG] = ACTIONS(1232), + [anon_sym_LPAREN] = ACTIONS(1232), + [anon_sym_LBRACK] = ACTIONS(1232), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_RBRACE] = ACTIONS(1232), + [anon_sym_STAR] = ACTIONS(1232), + [anon_sym_u8] = ACTIONS(1234), + [anon_sym_i8] = ACTIONS(1234), + [anon_sym_u16] = ACTIONS(1234), + [anon_sym_i16] = ACTIONS(1234), + [anon_sym_u32] = ACTIONS(1234), + [anon_sym_i32] = ACTIONS(1234), + [anon_sym_u64] = ACTIONS(1234), + [anon_sym_i64] = ACTIONS(1234), + [anon_sym_u128] = ACTIONS(1234), + [anon_sym_i128] = ACTIONS(1234), + [anon_sym_isize] = ACTIONS(1234), + [anon_sym_usize] = ACTIONS(1234), + [anon_sym_f32] = ACTIONS(1234), + [anon_sym_f64] = ACTIONS(1234), + [anon_sym_bool] = ACTIONS(1234), + [anon_sym_str] = ACTIONS(1234), + [anon_sym_char] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1232), + [anon_sym_BANG] = ACTIONS(1232), + [anon_sym_AMP] = ACTIONS(1232), + [anon_sym_PIPE] = ACTIONS(1232), + [anon_sym_LT] = ACTIONS(1232), + [anon_sym_DOT_DOT] = ACTIONS(1232), + [anon_sym_COLON_COLON] = ACTIONS(1232), + [anon_sym_POUND] = ACTIONS(1232), + [anon_sym_SQUOTE] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1234), + [anon_sym_break] = ACTIONS(1234), + [anon_sym_const] = ACTIONS(1234), + [anon_sym_continue] = ACTIONS(1234), + [anon_sym_default] = ACTIONS(1234), + [anon_sym_enum] = ACTIONS(1234), + [anon_sym_fn] = ACTIONS(1234), + [anon_sym_for] = ACTIONS(1234), + [anon_sym_if] = ACTIONS(1234), + [anon_sym_impl] = ACTIONS(1234), + [anon_sym_let] = ACTIONS(1234), + [anon_sym_loop] = ACTIONS(1234), + [anon_sym_match] = ACTIONS(1234), + [anon_sym_mod] = ACTIONS(1234), + [anon_sym_pub] = ACTIONS(1234), + [anon_sym_return] = ACTIONS(1234), + [anon_sym_static] = ACTIONS(1234), + [anon_sym_struct] = ACTIONS(1234), + [anon_sym_trait] = ACTIONS(1234), + [anon_sym_type] = ACTIONS(1234), + [anon_sym_union] = ACTIONS(1234), + [anon_sym_unsafe] = ACTIONS(1234), + [anon_sym_use] = ACTIONS(1234), + [anon_sym_while] = ACTIONS(1234), + [anon_sym_extern] = ACTIONS(1234), + [anon_sym_yield] = ACTIONS(1234), + [anon_sym_move] = ACTIONS(1234), + [anon_sym_try] = ACTIONS(1234), + [sym_integer_literal] = ACTIONS(1232), + [aux_sym_string_literal_token1] = ACTIONS(1232), + [sym_char_literal] = ACTIONS(1232), + [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(1234), + [sym_super] = ACTIONS(1234), + [sym_crate] = ACTIONS(1234), + [sym_metavariable] = ACTIONS(1232), + [sym__raw_string_literal_start] = ACTIONS(1232), + [sym_float_literal] = ACTIONS(1232), }, - [656] = { - [sym_line_comment] = STATE(656), - [sym_block_comment] = STATE(656), - [ts_builtin_sym_end] = ACTIONS(2456), - [sym_identifier] = ACTIONS(2458), - [anon_sym_SEMI] = ACTIONS(2456), - [anon_sym_macro_rules_BANG] = ACTIONS(2456), - [anon_sym_LPAREN] = ACTIONS(2456), - [anon_sym_LBRACK] = ACTIONS(2456), - [anon_sym_LBRACE] = ACTIONS(2456), - [anon_sym_RBRACE] = ACTIONS(2456), - [anon_sym_STAR] = ACTIONS(2456), - [anon_sym_u8] = ACTIONS(2458), - [anon_sym_i8] = ACTIONS(2458), - [anon_sym_u16] = ACTIONS(2458), - [anon_sym_i16] = ACTIONS(2458), - [anon_sym_u32] = ACTIONS(2458), - [anon_sym_i32] = ACTIONS(2458), - [anon_sym_u64] = ACTIONS(2458), - [anon_sym_i64] = ACTIONS(2458), - [anon_sym_u128] = ACTIONS(2458), - [anon_sym_i128] = ACTIONS(2458), - [anon_sym_isize] = ACTIONS(2458), - [anon_sym_usize] = ACTIONS(2458), - [anon_sym_f32] = ACTIONS(2458), - [anon_sym_f64] = ACTIONS(2458), - [anon_sym_bool] = ACTIONS(2458), - [anon_sym_str] = ACTIONS(2458), - [anon_sym_char] = ACTIONS(2458), - [anon_sym_DASH] = ACTIONS(2456), - [anon_sym_BANG] = ACTIONS(2456), - [anon_sym_AMP] = ACTIONS(2456), - [anon_sym_PIPE] = ACTIONS(2456), - [anon_sym_LT] = ACTIONS(2456), - [anon_sym_DOT_DOT] = ACTIONS(2456), - [anon_sym_COLON_COLON] = ACTIONS(2456), - [anon_sym_POUND] = ACTIONS(2456), - [anon_sym_SQUOTE] = ACTIONS(2458), - [anon_sym_async] = ACTIONS(2458), - [anon_sym_break] = ACTIONS(2458), - [anon_sym_const] = ACTIONS(2458), - [anon_sym_continue] = ACTIONS(2458), - [anon_sym_default] = ACTIONS(2458), - [anon_sym_enum] = ACTIONS(2458), - [anon_sym_fn] = ACTIONS(2458), - [anon_sym_for] = ACTIONS(2458), - [anon_sym_if] = ACTIONS(2458), - [anon_sym_impl] = ACTIONS(2458), - [anon_sym_let] = ACTIONS(2458), - [anon_sym_loop] = ACTIONS(2458), - [anon_sym_match] = ACTIONS(2458), - [anon_sym_mod] = ACTIONS(2458), - [anon_sym_pub] = ACTIONS(2458), - [anon_sym_return] = ACTIONS(2458), - [anon_sym_static] = ACTIONS(2458), - [anon_sym_struct] = ACTIONS(2458), - [anon_sym_trait] = ACTIONS(2458), - [anon_sym_type] = ACTIONS(2458), - [anon_sym_union] = ACTIONS(2458), - [anon_sym_unsafe] = ACTIONS(2458), - [anon_sym_use] = ACTIONS(2458), - [anon_sym_while] = ACTIONS(2458), - [anon_sym_extern] = ACTIONS(2458), - [anon_sym_yield] = ACTIONS(2458), - [anon_sym_move] = ACTIONS(2458), - [anon_sym_try] = ACTIONS(2458), - [sym_integer_literal] = ACTIONS(2456), - [aux_sym_string_literal_token1] = ACTIONS(2456), - [sym_char_literal] = ACTIONS(2456), - [anon_sym_true] = ACTIONS(2458), - [anon_sym_false] = ACTIONS(2458), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2458), - [sym_super] = ACTIONS(2458), - [sym_crate] = ACTIONS(2458), - [sym_metavariable] = ACTIONS(2456), - [sym__raw_string_literal_start] = ACTIONS(2456), - [sym_float_literal] = ACTIONS(2456), + [672] = { + [sym_line_comment] = STATE(672), + [sym_block_comment] = STATE(672), + [ts_builtin_sym_end] = ACTIONS(1236), + [sym_identifier] = ACTIONS(1238), + [anon_sym_SEMI] = ACTIONS(1236), + [anon_sym_macro_rules_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1236), + [anon_sym_LBRACK] = ACTIONS(1236), + [anon_sym_LBRACE] = ACTIONS(1236), + [anon_sym_RBRACE] = ACTIONS(1236), + [anon_sym_STAR] = ACTIONS(1236), + [anon_sym_u8] = ACTIONS(1238), + [anon_sym_i8] = ACTIONS(1238), + [anon_sym_u16] = ACTIONS(1238), + [anon_sym_i16] = ACTIONS(1238), + [anon_sym_u32] = ACTIONS(1238), + [anon_sym_i32] = ACTIONS(1238), + [anon_sym_u64] = ACTIONS(1238), + [anon_sym_i64] = ACTIONS(1238), + [anon_sym_u128] = ACTIONS(1238), + [anon_sym_i128] = ACTIONS(1238), + [anon_sym_isize] = ACTIONS(1238), + [anon_sym_usize] = ACTIONS(1238), + [anon_sym_f32] = ACTIONS(1238), + [anon_sym_f64] = ACTIONS(1238), + [anon_sym_bool] = ACTIONS(1238), + [anon_sym_str] = ACTIONS(1238), + [anon_sym_char] = ACTIONS(1238), + [anon_sym_DASH] = ACTIONS(1236), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_AMP] = ACTIONS(1236), + [anon_sym_PIPE] = ACTIONS(1236), + [anon_sym_LT] = ACTIONS(1236), + [anon_sym_DOT_DOT] = ACTIONS(1236), + [anon_sym_COLON_COLON] = ACTIONS(1236), + [anon_sym_POUND] = ACTIONS(1236), + [anon_sym_SQUOTE] = ACTIONS(1238), + [anon_sym_async] = ACTIONS(1238), + [anon_sym_break] = ACTIONS(1238), + [anon_sym_const] = ACTIONS(1238), + [anon_sym_continue] = ACTIONS(1238), + [anon_sym_default] = ACTIONS(1238), + [anon_sym_enum] = ACTIONS(1238), + [anon_sym_fn] = ACTIONS(1238), + [anon_sym_for] = ACTIONS(1238), + [anon_sym_if] = ACTIONS(1238), + [anon_sym_impl] = ACTIONS(1238), + [anon_sym_let] = ACTIONS(1238), + [anon_sym_loop] = ACTIONS(1238), + [anon_sym_match] = ACTIONS(1238), + [anon_sym_mod] = ACTIONS(1238), + [anon_sym_pub] = ACTIONS(1238), + [anon_sym_return] = ACTIONS(1238), + [anon_sym_static] = ACTIONS(1238), + [anon_sym_struct] = ACTIONS(1238), + [anon_sym_trait] = ACTIONS(1238), + [anon_sym_type] = ACTIONS(1238), + [anon_sym_union] = ACTIONS(1238), + [anon_sym_unsafe] = ACTIONS(1238), + [anon_sym_use] = ACTIONS(1238), + [anon_sym_while] = ACTIONS(1238), + [anon_sym_extern] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1238), + [anon_sym_move] = ACTIONS(1238), + [anon_sym_try] = ACTIONS(1238), + [sym_integer_literal] = ACTIONS(1236), + [aux_sym_string_literal_token1] = ACTIONS(1236), + [sym_char_literal] = ACTIONS(1236), + [anon_sym_true] = ACTIONS(1238), + [anon_sym_false] = ACTIONS(1238), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1238), + [sym_super] = ACTIONS(1238), + [sym_crate] = ACTIONS(1238), + [sym_metavariable] = ACTIONS(1236), + [sym__raw_string_literal_start] = ACTIONS(1236), + [sym_float_literal] = ACTIONS(1236), }, - [657] = { - [sym_line_comment] = STATE(657), - [sym_block_comment] = STATE(657), - [ts_builtin_sym_end] = ACTIONS(2460), - [sym_identifier] = ACTIONS(2462), - [anon_sym_SEMI] = ACTIONS(2460), - [anon_sym_macro_rules_BANG] = ACTIONS(2460), - [anon_sym_LPAREN] = ACTIONS(2460), - [anon_sym_LBRACK] = ACTIONS(2460), - [anon_sym_LBRACE] = ACTIONS(2460), - [anon_sym_RBRACE] = ACTIONS(2460), - [anon_sym_STAR] = ACTIONS(2460), - [anon_sym_u8] = ACTIONS(2462), - [anon_sym_i8] = ACTIONS(2462), - [anon_sym_u16] = ACTIONS(2462), - [anon_sym_i16] = ACTIONS(2462), - [anon_sym_u32] = ACTIONS(2462), - [anon_sym_i32] = ACTIONS(2462), - [anon_sym_u64] = ACTIONS(2462), - [anon_sym_i64] = ACTIONS(2462), - [anon_sym_u128] = ACTIONS(2462), - [anon_sym_i128] = ACTIONS(2462), - [anon_sym_isize] = ACTIONS(2462), - [anon_sym_usize] = ACTIONS(2462), - [anon_sym_f32] = ACTIONS(2462), - [anon_sym_f64] = ACTIONS(2462), - [anon_sym_bool] = ACTIONS(2462), - [anon_sym_str] = ACTIONS(2462), - [anon_sym_char] = ACTIONS(2462), - [anon_sym_DASH] = ACTIONS(2460), - [anon_sym_BANG] = ACTIONS(2460), - [anon_sym_AMP] = ACTIONS(2460), - [anon_sym_PIPE] = ACTIONS(2460), - [anon_sym_LT] = ACTIONS(2460), - [anon_sym_DOT_DOT] = ACTIONS(2460), - [anon_sym_COLON_COLON] = ACTIONS(2460), - [anon_sym_POUND] = ACTIONS(2460), - [anon_sym_SQUOTE] = ACTIONS(2462), - [anon_sym_async] = ACTIONS(2462), - [anon_sym_break] = ACTIONS(2462), - [anon_sym_const] = ACTIONS(2462), - [anon_sym_continue] = ACTIONS(2462), - [anon_sym_default] = ACTIONS(2462), - [anon_sym_enum] = ACTIONS(2462), - [anon_sym_fn] = ACTIONS(2462), - [anon_sym_for] = ACTIONS(2462), - [anon_sym_if] = ACTIONS(2462), - [anon_sym_impl] = ACTIONS(2462), - [anon_sym_let] = ACTIONS(2462), - [anon_sym_loop] = ACTIONS(2462), - [anon_sym_match] = ACTIONS(2462), - [anon_sym_mod] = ACTIONS(2462), - [anon_sym_pub] = ACTIONS(2462), - [anon_sym_return] = ACTIONS(2462), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_struct] = ACTIONS(2462), - [anon_sym_trait] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_union] = ACTIONS(2462), - [anon_sym_unsafe] = ACTIONS(2462), - [anon_sym_use] = ACTIONS(2462), - [anon_sym_while] = ACTIONS(2462), - [anon_sym_extern] = ACTIONS(2462), - [anon_sym_yield] = ACTIONS(2462), - [anon_sym_move] = ACTIONS(2462), - [anon_sym_try] = ACTIONS(2462), - [sym_integer_literal] = ACTIONS(2460), - [aux_sym_string_literal_token1] = ACTIONS(2460), - [sym_char_literal] = ACTIONS(2460), - [anon_sym_true] = ACTIONS(2462), - [anon_sym_false] = ACTIONS(2462), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2462), - [sym_super] = ACTIONS(2462), - [sym_crate] = ACTIONS(2462), - [sym_metavariable] = ACTIONS(2460), - [sym__raw_string_literal_start] = ACTIONS(2460), - [sym_float_literal] = ACTIONS(2460), + [673] = { + [sym_line_comment] = STATE(673), + [sym_block_comment] = STATE(673), + [ts_builtin_sym_end] = ACTIONS(2458), + [sym_identifier] = ACTIONS(2460), + [anon_sym_SEMI] = ACTIONS(2458), + [anon_sym_macro_rules_BANG] = ACTIONS(2458), + [anon_sym_LPAREN] = ACTIONS(2458), + [anon_sym_LBRACK] = ACTIONS(2458), + [anon_sym_LBRACE] = ACTIONS(2458), + [anon_sym_RBRACE] = ACTIONS(2458), + [anon_sym_STAR] = ACTIONS(2458), + [anon_sym_u8] = ACTIONS(2460), + [anon_sym_i8] = ACTIONS(2460), + [anon_sym_u16] = ACTIONS(2460), + [anon_sym_i16] = ACTIONS(2460), + [anon_sym_u32] = ACTIONS(2460), + [anon_sym_i32] = ACTIONS(2460), + [anon_sym_u64] = ACTIONS(2460), + [anon_sym_i64] = ACTIONS(2460), + [anon_sym_u128] = ACTIONS(2460), + [anon_sym_i128] = ACTIONS(2460), + [anon_sym_isize] = ACTIONS(2460), + [anon_sym_usize] = ACTIONS(2460), + [anon_sym_f32] = ACTIONS(2460), + [anon_sym_f64] = ACTIONS(2460), + [anon_sym_bool] = ACTIONS(2460), + [anon_sym_str] = ACTIONS(2460), + [anon_sym_char] = ACTIONS(2460), + [anon_sym_DASH] = ACTIONS(2458), + [anon_sym_BANG] = ACTIONS(2458), + [anon_sym_AMP] = ACTIONS(2458), + [anon_sym_PIPE] = ACTIONS(2458), + [anon_sym_LT] = ACTIONS(2458), + [anon_sym_DOT_DOT] = ACTIONS(2458), + [anon_sym_COLON_COLON] = ACTIONS(2458), + [anon_sym_POUND] = ACTIONS(2458), + [anon_sym_SQUOTE] = ACTIONS(2460), + [anon_sym_async] = ACTIONS(2460), + [anon_sym_break] = ACTIONS(2460), + [anon_sym_const] = ACTIONS(2460), + [anon_sym_continue] = ACTIONS(2460), + [anon_sym_default] = ACTIONS(2460), + [anon_sym_enum] = ACTIONS(2460), + [anon_sym_fn] = ACTIONS(2460), + [anon_sym_for] = ACTIONS(2460), + [anon_sym_if] = ACTIONS(2460), + [anon_sym_impl] = ACTIONS(2460), + [anon_sym_let] = ACTIONS(2460), + [anon_sym_loop] = ACTIONS(2460), + [anon_sym_match] = ACTIONS(2460), + [anon_sym_mod] = ACTIONS(2460), + [anon_sym_pub] = ACTIONS(2460), + [anon_sym_return] = ACTIONS(2460), + [anon_sym_static] = ACTIONS(2460), + [anon_sym_struct] = ACTIONS(2460), + [anon_sym_trait] = ACTIONS(2460), + [anon_sym_type] = ACTIONS(2460), + [anon_sym_union] = ACTIONS(2460), + [anon_sym_unsafe] = ACTIONS(2460), + [anon_sym_use] = ACTIONS(2460), + [anon_sym_while] = ACTIONS(2460), + [anon_sym_extern] = ACTIONS(2460), + [anon_sym_yield] = ACTIONS(2460), + [anon_sym_move] = ACTIONS(2460), + [anon_sym_try] = ACTIONS(2460), + [sym_integer_literal] = ACTIONS(2458), + [aux_sym_string_literal_token1] = ACTIONS(2458), + [sym_char_literal] = ACTIONS(2458), + [anon_sym_true] = ACTIONS(2460), + [anon_sym_false] = ACTIONS(2460), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2460), + [sym_super] = ACTIONS(2460), + [sym_crate] = ACTIONS(2460), + [sym_metavariable] = ACTIONS(2458), + [sym__raw_string_literal_start] = ACTIONS(2458), + [sym_float_literal] = ACTIONS(2458), }, - [658] = { - [sym_line_comment] = STATE(658), - [sym_block_comment] = STATE(658), - [ts_builtin_sym_end] = ACTIONS(2464), - [sym_identifier] = ACTIONS(2466), - [anon_sym_SEMI] = ACTIONS(2464), - [anon_sym_macro_rules_BANG] = ACTIONS(2464), - [anon_sym_LPAREN] = ACTIONS(2464), - [anon_sym_LBRACK] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(2464), - [anon_sym_RBRACE] = ACTIONS(2464), - [anon_sym_STAR] = ACTIONS(2464), - [anon_sym_u8] = ACTIONS(2466), - [anon_sym_i8] = ACTIONS(2466), - [anon_sym_u16] = ACTIONS(2466), - [anon_sym_i16] = ACTIONS(2466), - [anon_sym_u32] = ACTIONS(2466), - [anon_sym_i32] = ACTIONS(2466), - [anon_sym_u64] = ACTIONS(2466), - [anon_sym_i64] = ACTIONS(2466), - [anon_sym_u128] = ACTIONS(2466), - [anon_sym_i128] = ACTIONS(2466), - [anon_sym_isize] = ACTIONS(2466), - [anon_sym_usize] = ACTIONS(2466), - [anon_sym_f32] = ACTIONS(2466), - [anon_sym_f64] = ACTIONS(2466), - [anon_sym_bool] = ACTIONS(2466), - [anon_sym_str] = ACTIONS(2466), - [anon_sym_char] = ACTIONS(2466), - [anon_sym_DASH] = ACTIONS(2464), - [anon_sym_BANG] = ACTIONS(2464), - [anon_sym_AMP] = ACTIONS(2464), - [anon_sym_PIPE] = ACTIONS(2464), - [anon_sym_LT] = ACTIONS(2464), - [anon_sym_DOT_DOT] = ACTIONS(2464), - [anon_sym_COLON_COLON] = ACTIONS(2464), - [anon_sym_POUND] = ACTIONS(2464), - [anon_sym_SQUOTE] = ACTIONS(2466), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_break] = ACTIONS(2466), - [anon_sym_const] = ACTIONS(2466), - [anon_sym_continue] = ACTIONS(2466), - [anon_sym_default] = ACTIONS(2466), - [anon_sym_enum] = ACTIONS(2466), - [anon_sym_fn] = ACTIONS(2466), - [anon_sym_for] = ACTIONS(2466), - [anon_sym_if] = ACTIONS(2466), - [anon_sym_impl] = ACTIONS(2466), - [anon_sym_let] = ACTIONS(2466), - [anon_sym_loop] = ACTIONS(2466), - [anon_sym_match] = ACTIONS(2466), - [anon_sym_mod] = ACTIONS(2466), - [anon_sym_pub] = ACTIONS(2466), - [anon_sym_return] = ACTIONS(2466), - [anon_sym_static] = ACTIONS(2466), - [anon_sym_struct] = ACTIONS(2466), - [anon_sym_trait] = ACTIONS(2466), - [anon_sym_type] = ACTIONS(2466), - [anon_sym_union] = ACTIONS(2466), - [anon_sym_unsafe] = ACTIONS(2466), - [anon_sym_use] = ACTIONS(2466), - [anon_sym_while] = ACTIONS(2466), - [anon_sym_extern] = ACTIONS(2466), - [anon_sym_yield] = ACTIONS(2466), - [anon_sym_move] = ACTIONS(2466), - [anon_sym_try] = ACTIONS(2466), - [sym_integer_literal] = ACTIONS(2464), - [aux_sym_string_literal_token1] = ACTIONS(2464), - [sym_char_literal] = ACTIONS(2464), - [anon_sym_true] = ACTIONS(2466), - [anon_sym_false] = ACTIONS(2466), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2466), - [sym_super] = ACTIONS(2466), - [sym_crate] = ACTIONS(2466), - [sym_metavariable] = ACTIONS(2464), - [sym__raw_string_literal_start] = ACTIONS(2464), - [sym_float_literal] = ACTIONS(2464), + [674] = { + [sym_line_comment] = STATE(674), + [sym_block_comment] = STATE(674), + [ts_builtin_sym_end] = ACTIONS(2462), + [sym_identifier] = ACTIONS(2464), + [anon_sym_SEMI] = ACTIONS(2462), + [anon_sym_macro_rules_BANG] = ACTIONS(2462), + [anon_sym_LPAREN] = ACTIONS(2462), + [anon_sym_LBRACK] = ACTIONS(2462), + [anon_sym_LBRACE] = ACTIONS(2462), + [anon_sym_RBRACE] = ACTIONS(2462), + [anon_sym_STAR] = ACTIONS(2462), + [anon_sym_u8] = ACTIONS(2464), + [anon_sym_i8] = ACTIONS(2464), + [anon_sym_u16] = ACTIONS(2464), + [anon_sym_i16] = ACTIONS(2464), + [anon_sym_u32] = ACTIONS(2464), + [anon_sym_i32] = ACTIONS(2464), + [anon_sym_u64] = ACTIONS(2464), + [anon_sym_i64] = ACTIONS(2464), + [anon_sym_u128] = ACTIONS(2464), + [anon_sym_i128] = ACTIONS(2464), + [anon_sym_isize] = ACTIONS(2464), + [anon_sym_usize] = ACTIONS(2464), + [anon_sym_f32] = ACTIONS(2464), + [anon_sym_f64] = ACTIONS(2464), + [anon_sym_bool] = ACTIONS(2464), + [anon_sym_str] = ACTIONS(2464), + [anon_sym_char] = ACTIONS(2464), + [anon_sym_DASH] = ACTIONS(2462), + [anon_sym_BANG] = ACTIONS(2462), + [anon_sym_AMP] = ACTIONS(2462), + [anon_sym_PIPE] = ACTIONS(2462), + [anon_sym_LT] = ACTIONS(2462), + [anon_sym_DOT_DOT] = ACTIONS(2462), + [anon_sym_COLON_COLON] = ACTIONS(2462), + [anon_sym_POUND] = ACTIONS(2462), + [anon_sym_SQUOTE] = ACTIONS(2464), + [anon_sym_async] = ACTIONS(2464), + [anon_sym_break] = ACTIONS(2464), + [anon_sym_const] = ACTIONS(2464), + [anon_sym_continue] = ACTIONS(2464), + [anon_sym_default] = ACTIONS(2464), + [anon_sym_enum] = ACTIONS(2464), + [anon_sym_fn] = ACTIONS(2464), + [anon_sym_for] = ACTIONS(2464), + [anon_sym_if] = ACTIONS(2464), + [anon_sym_impl] = ACTIONS(2464), + [anon_sym_let] = ACTIONS(2464), + [anon_sym_loop] = ACTIONS(2464), + [anon_sym_match] = ACTIONS(2464), + [anon_sym_mod] = ACTIONS(2464), + [anon_sym_pub] = ACTIONS(2464), + [anon_sym_return] = ACTIONS(2464), + [anon_sym_static] = ACTIONS(2464), + [anon_sym_struct] = ACTIONS(2464), + [anon_sym_trait] = ACTIONS(2464), + [anon_sym_type] = ACTIONS(2464), + [anon_sym_union] = ACTIONS(2464), + [anon_sym_unsafe] = ACTIONS(2464), + [anon_sym_use] = ACTIONS(2464), + [anon_sym_while] = ACTIONS(2464), + [anon_sym_extern] = ACTIONS(2464), + [anon_sym_yield] = ACTIONS(2464), + [anon_sym_move] = ACTIONS(2464), + [anon_sym_try] = ACTIONS(2464), + [sym_integer_literal] = ACTIONS(2462), + [aux_sym_string_literal_token1] = ACTIONS(2462), + [sym_char_literal] = ACTIONS(2462), + [anon_sym_true] = ACTIONS(2464), + [anon_sym_false] = ACTIONS(2464), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2464), + [sym_super] = ACTIONS(2464), + [sym_crate] = ACTIONS(2464), + [sym_metavariable] = ACTIONS(2462), + [sym__raw_string_literal_start] = ACTIONS(2462), + [sym_float_literal] = ACTIONS(2462), }, - [659] = { - [sym_line_comment] = STATE(659), - [sym_block_comment] = STATE(659), - [ts_builtin_sym_end] = ACTIONS(2468), - [sym_identifier] = ACTIONS(2470), - [anon_sym_SEMI] = ACTIONS(2468), - [anon_sym_macro_rules_BANG] = ACTIONS(2468), - [anon_sym_LPAREN] = ACTIONS(2468), - [anon_sym_LBRACK] = ACTIONS(2468), - [anon_sym_LBRACE] = ACTIONS(2468), - [anon_sym_RBRACE] = ACTIONS(2468), - [anon_sym_STAR] = ACTIONS(2468), - [anon_sym_u8] = ACTIONS(2470), - [anon_sym_i8] = ACTIONS(2470), - [anon_sym_u16] = ACTIONS(2470), - [anon_sym_i16] = ACTIONS(2470), - [anon_sym_u32] = ACTIONS(2470), - [anon_sym_i32] = ACTIONS(2470), - [anon_sym_u64] = ACTIONS(2470), - [anon_sym_i64] = ACTIONS(2470), - [anon_sym_u128] = ACTIONS(2470), - [anon_sym_i128] = ACTIONS(2470), - [anon_sym_isize] = ACTIONS(2470), - [anon_sym_usize] = ACTIONS(2470), - [anon_sym_f32] = ACTIONS(2470), - [anon_sym_f64] = ACTIONS(2470), - [anon_sym_bool] = ACTIONS(2470), - [anon_sym_str] = ACTIONS(2470), - [anon_sym_char] = ACTIONS(2470), - [anon_sym_DASH] = ACTIONS(2468), - [anon_sym_BANG] = ACTIONS(2468), - [anon_sym_AMP] = ACTIONS(2468), - [anon_sym_PIPE] = ACTIONS(2468), - [anon_sym_LT] = ACTIONS(2468), - [anon_sym_DOT_DOT] = ACTIONS(2468), - [anon_sym_COLON_COLON] = ACTIONS(2468), - [anon_sym_POUND] = ACTIONS(2468), - [anon_sym_SQUOTE] = ACTIONS(2470), - [anon_sym_async] = ACTIONS(2470), - [anon_sym_break] = ACTIONS(2470), - [anon_sym_const] = ACTIONS(2470), - [anon_sym_continue] = ACTIONS(2470), - [anon_sym_default] = ACTIONS(2470), - [anon_sym_enum] = ACTIONS(2470), - [anon_sym_fn] = ACTIONS(2470), - [anon_sym_for] = ACTIONS(2470), - [anon_sym_if] = ACTIONS(2470), - [anon_sym_impl] = ACTIONS(2470), - [anon_sym_let] = ACTIONS(2470), - [anon_sym_loop] = ACTIONS(2470), - [anon_sym_match] = ACTIONS(2470), - [anon_sym_mod] = ACTIONS(2470), - [anon_sym_pub] = ACTIONS(2470), - [anon_sym_return] = ACTIONS(2470), - [anon_sym_static] = ACTIONS(2470), - [anon_sym_struct] = ACTIONS(2470), - [anon_sym_trait] = ACTIONS(2470), - [anon_sym_type] = ACTIONS(2470), - [anon_sym_union] = ACTIONS(2470), - [anon_sym_unsafe] = ACTIONS(2470), - [anon_sym_use] = ACTIONS(2470), - [anon_sym_while] = ACTIONS(2470), - [anon_sym_extern] = ACTIONS(2470), - [anon_sym_yield] = ACTIONS(2470), - [anon_sym_move] = ACTIONS(2470), - [anon_sym_try] = ACTIONS(2470), - [sym_integer_literal] = ACTIONS(2468), - [aux_sym_string_literal_token1] = ACTIONS(2468), - [sym_char_literal] = ACTIONS(2468), - [anon_sym_true] = ACTIONS(2470), - [anon_sym_false] = ACTIONS(2470), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2470), - [sym_super] = ACTIONS(2470), - [sym_crate] = ACTIONS(2470), - [sym_metavariable] = ACTIONS(2468), - [sym__raw_string_literal_start] = ACTIONS(2468), - [sym_float_literal] = ACTIONS(2468), + [675] = { + [sym_line_comment] = STATE(675), + [sym_block_comment] = STATE(675), + [ts_builtin_sym_end] = ACTIONS(2466), + [sym_identifier] = ACTIONS(2468), + [anon_sym_SEMI] = ACTIONS(2466), + [anon_sym_macro_rules_BANG] = ACTIONS(2466), + [anon_sym_LPAREN] = ACTIONS(2466), + [anon_sym_LBRACK] = ACTIONS(2466), + [anon_sym_LBRACE] = ACTIONS(2466), + [anon_sym_RBRACE] = ACTIONS(2466), + [anon_sym_STAR] = ACTIONS(2466), + [anon_sym_u8] = ACTIONS(2468), + [anon_sym_i8] = ACTIONS(2468), + [anon_sym_u16] = ACTIONS(2468), + [anon_sym_i16] = ACTIONS(2468), + [anon_sym_u32] = ACTIONS(2468), + [anon_sym_i32] = ACTIONS(2468), + [anon_sym_u64] = ACTIONS(2468), + [anon_sym_i64] = ACTIONS(2468), + [anon_sym_u128] = ACTIONS(2468), + [anon_sym_i128] = ACTIONS(2468), + [anon_sym_isize] = ACTIONS(2468), + [anon_sym_usize] = ACTIONS(2468), + [anon_sym_f32] = ACTIONS(2468), + [anon_sym_f64] = ACTIONS(2468), + [anon_sym_bool] = ACTIONS(2468), + [anon_sym_str] = ACTIONS(2468), + [anon_sym_char] = ACTIONS(2468), + [anon_sym_DASH] = ACTIONS(2466), + [anon_sym_BANG] = ACTIONS(2466), + [anon_sym_AMP] = ACTIONS(2466), + [anon_sym_PIPE] = ACTIONS(2466), + [anon_sym_LT] = ACTIONS(2466), + [anon_sym_DOT_DOT] = ACTIONS(2466), + [anon_sym_COLON_COLON] = ACTIONS(2466), + [anon_sym_POUND] = ACTIONS(2466), + [anon_sym_SQUOTE] = ACTIONS(2468), + [anon_sym_async] = ACTIONS(2468), + [anon_sym_break] = ACTIONS(2468), + [anon_sym_const] = ACTIONS(2468), + [anon_sym_continue] = ACTIONS(2468), + [anon_sym_default] = ACTIONS(2468), + [anon_sym_enum] = ACTIONS(2468), + [anon_sym_fn] = ACTIONS(2468), + [anon_sym_for] = ACTIONS(2468), + [anon_sym_if] = ACTIONS(2468), + [anon_sym_impl] = ACTIONS(2468), + [anon_sym_let] = ACTIONS(2468), + [anon_sym_loop] = ACTIONS(2468), + [anon_sym_match] = ACTIONS(2468), + [anon_sym_mod] = ACTIONS(2468), + [anon_sym_pub] = ACTIONS(2468), + [anon_sym_return] = ACTIONS(2468), + [anon_sym_static] = ACTIONS(2468), + [anon_sym_struct] = ACTIONS(2468), + [anon_sym_trait] = ACTIONS(2468), + [anon_sym_type] = ACTIONS(2468), + [anon_sym_union] = ACTIONS(2468), + [anon_sym_unsafe] = ACTIONS(2468), + [anon_sym_use] = ACTIONS(2468), + [anon_sym_while] = ACTIONS(2468), + [anon_sym_extern] = ACTIONS(2468), + [anon_sym_yield] = ACTIONS(2468), + [anon_sym_move] = ACTIONS(2468), + [anon_sym_try] = ACTIONS(2468), + [sym_integer_literal] = ACTIONS(2466), + [aux_sym_string_literal_token1] = ACTIONS(2466), + [sym_char_literal] = ACTIONS(2466), + [anon_sym_true] = ACTIONS(2468), + [anon_sym_false] = ACTIONS(2468), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2468), + [sym_super] = ACTIONS(2468), + [sym_crate] = ACTIONS(2468), + [sym_metavariable] = ACTIONS(2466), + [sym__raw_string_literal_start] = ACTIONS(2466), + [sym_float_literal] = ACTIONS(2466), }, - [660] = { - [sym_line_comment] = STATE(660), - [sym_block_comment] = STATE(660), - [ts_builtin_sym_end] = ACTIONS(2472), - [sym_identifier] = ACTIONS(2474), - [anon_sym_SEMI] = ACTIONS(2472), - [anon_sym_macro_rules_BANG] = ACTIONS(2472), - [anon_sym_LPAREN] = ACTIONS(2472), - [anon_sym_LBRACK] = ACTIONS(2472), - [anon_sym_LBRACE] = ACTIONS(2472), - [anon_sym_RBRACE] = ACTIONS(2472), - [anon_sym_STAR] = ACTIONS(2472), - [anon_sym_u8] = ACTIONS(2474), - [anon_sym_i8] = ACTIONS(2474), - [anon_sym_u16] = ACTIONS(2474), - [anon_sym_i16] = ACTIONS(2474), - [anon_sym_u32] = ACTIONS(2474), - [anon_sym_i32] = ACTIONS(2474), - [anon_sym_u64] = ACTIONS(2474), - [anon_sym_i64] = ACTIONS(2474), - [anon_sym_u128] = ACTIONS(2474), - [anon_sym_i128] = ACTIONS(2474), - [anon_sym_isize] = ACTIONS(2474), - [anon_sym_usize] = ACTIONS(2474), - [anon_sym_f32] = ACTIONS(2474), - [anon_sym_f64] = ACTIONS(2474), - [anon_sym_bool] = ACTIONS(2474), - [anon_sym_str] = ACTIONS(2474), - [anon_sym_char] = ACTIONS(2474), - [anon_sym_DASH] = ACTIONS(2472), - [anon_sym_BANG] = ACTIONS(2472), - [anon_sym_AMP] = ACTIONS(2472), - [anon_sym_PIPE] = ACTIONS(2472), - [anon_sym_LT] = ACTIONS(2472), - [anon_sym_DOT_DOT] = ACTIONS(2472), - [anon_sym_COLON_COLON] = ACTIONS(2472), - [anon_sym_POUND] = ACTIONS(2472), - [anon_sym_SQUOTE] = ACTIONS(2474), - [anon_sym_async] = ACTIONS(2474), - [anon_sym_break] = ACTIONS(2474), - [anon_sym_const] = ACTIONS(2474), - [anon_sym_continue] = ACTIONS(2474), - [anon_sym_default] = ACTIONS(2474), - [anon_sym_enum] = ACTIONS(2474), - [anon_sym_fn] = ACTIONS(2474), - [anon_sym_for] = ACTIONS(2474), - [anon_sym_if] = ACTIONS(2474), - [anon_sym_impl] = ACTIONS(2474), - [anon_sym_let] = ACTIONS(2474), - [anon_sym_loop] = ACTIONS(2474), - [anon_sym_match] = ACTIONS(2474), - [anon_sym_mod] = ACTIONS(2474), - [anon_sym_pub] = ACTIONS(2474), - [anon_sym_return] = ACTIONS(2474), - [anon_sym_static] = ACTIONS(2474), - [anon_sym_struct] = ACTIONS(2474), - [anon_sym_trait] = ACTIONS(2474), - [anon_sym_type] = ACTIONS(2474), - [anon_sym_union] = ACTIONS(2474), - [anon_sym_unsafe] = ACTIONS(2474), - [anon_sym_use] = ACTIONS(2474), - [anon_sym_while] = ACTIONS(2474), - [anon_sym_extern] = ACTIONS(2474), - [anon_sym_yield] = ACTIONS(2474), - [anon_sym_move] = ACTIONS(2474), - [anon_sym_try] = ACTIONS(2474), - [sym_integer_literal] = ACTIONS(2472), - [aux_sym_string_literal_token1] = ACTIONS(2472), - [sym_char_literal] = ACTIONS(2472), - [anon_sym_true] = ACTIONS(2474), - [anon_sym_false] = ACTIONS(2474), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2474), - [sym_super] = ACTIONS(2474), - [sym_crate] = ACTIONS(2474), - [sym_metavariable] = ACTIONS(2472), - [sym__raw_string_literal_start] = ACTIONS(2472), - [sym_float_literal] = ACTIONS(2472), + [676] = { + [sym_line_comment] = STATE(676), + [sym_block_comment] = STATE(676), + [ts_builtin_sym_end] = ACTIONS(2470), + [sym_identifier] = ACTIONS(2472), + [anon_sym_SEMI] = ACTIONS(2470), + [anon_sym_macro_rules_BANG] = ACTIONS(2470), + [anon_sym_LPAREN] = ACTIONS(2470), + [anon_sym_LBRACK] = ACTIONS(2470), + [anon_sym_LBRACE] = ACTIONS(2470), + [anon_sym_RBRACE] = ACTIONS(2470), + [anon_sym_STAR] = ACTIONS(2470), + [anon_sym_u8] = ACTIONS(2472), + [anon_sym_i8] = ACTIONS(2472), + [anon_sym_u16] = ACTIONS(2472), + [anon_sym_i16] = ACTIONS(2472), + [anon_sym_u32] = ACTIONS(2472), + [anon_sym_i32] = ACTIONS(2472), + [anon_sym_u64] = ACTIONS(2472), + [anon_sym_i64] = ACTIONS(2472), + [anon_sym_u128] = ACTIONS(2472), + [anon_sym_i128] = ACTIONS(2472), + [anon_sym_isize] = ACTIONS(2472), + [anon_sym_usize] = ACTIONS(2472), + [anon_sym_f32] = ACTIONS(2472), + [anon_sym_f64] = ACTIONS(2472), + [anon_sym_bool] = ACTIONS(2472), + [anon_sym_str] = ACTIONS(2472), + [anon_sym_char] = ACTIONS(2472), + [anon_sym_DASH] = ACTIONS(2470), + [anon_sym_BANG] = ACTIONS(2470), + [anon_sym_AMP] = ACTIONS(2470), + [anon_sym_PIPE] = ACTIONS(2470), + [anon_sym_LT] = ACTIONS(2470), + [anon_sym_DOT_DOT] = ACTIONS(2470), + [anon_sym_COLON_COLON] = ACTIONS(2470), + [anon_sym_POUND] = ACTIONS(2470), + [anon_sym_SQUOTE] = ACTIONS(2472), + [anon_sym_async] = ACTIONS(2472), + [anon_sym_break] = ACTIONS(2472), + [anon_sym_const] = ACTIONS(2472), + [anon_sym_continue] = ACTIONS(2472), + [anon_sym_default] = ACTIONS(2472), + [anon_sym_enum] = ACTIONS(2472), + [anon_sym_fn] = ACTIONS(2472), + [anon_sym_for] = ACTIONS(2472), + [anon_sym_if] = ACTIONS(2472), + [anon_sym_impl] = ACTIONS(2472), + [anon_sym_let] = ACTIONS(2472), + [anon_sym_loop] = ACTIONS(2472), + [anon_sym_match] = ACTIONS(2472), + [anon_sym_mod] = ACTIONS(2472), + [anon_sym_pub] = ACTIONS(2472), + [anon_sym_return] = ACTIONS(2472), + [anon_sym_static] = ACTIONS(2472), + [anon_sym_struct] = ACTIONS(2472), + [anon_sym_trait] = ACTIONS(2472), + [anon_sym_type] = ACTIONS(2472), + [anon_sym_union] = ACTIONS(2472), + [anon_sym_unsafe] = ACTIONS(2472), + [anon_sym_use] = ACTIONS(2472), + [anon_sym_while] = ACTIONS(2472), + [anon_sym_extern] = ACTIONS(2472), + [anon_sym_yield] = ACTIONS(2472), + [anon_sym_move] = ACTIONS(2472), + [anon_sym_try] = ACTIONS(2472), + [sym_integer_literal] = ACTIONS(2470), + [aux_sym_string_literal_token1] = ACTIONS(2470), + [sym_char_literal] = ACTIONS(2470), + [anon_sym_true] = ACTIONS(2472), + [anon_sym_false] = ACTIONS(2472), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2472), + [sym_super] = ACTIONS(2472), + [sym_crate] = ACTIONS(2472), + [sym_metavariable] = ACTIONS(2470), + [sym__raw_string_literal_start] = ACTIONS(2470), + [sym_float_literal] = ACTIONS(2470), }, - [661] = { - [sym_line_comment] = STATE(661), - [sym_block_comment] = STATE(661), - [ts_builtin_sym_end] = ACTIONS(2476), - [sym_identifier] = ACTIONS(2478), - [anon_sym_SEMI] = ACTIONS(2476), - [anon_sym_macro_rules_BANG] = ACTIONS(2476), - [anon_sym_LPAREN] = ACTIONS(2476), - [anon_sym_LBRACK] = ACTIONS(2476), - [anon_sym_LBRACE] = ACTIONS(2476), - [anon_sym_RBRACE] = ACTIONS(2476), - [anon_sym_STAR] = ACTIONS(2476), - [anon_sym_u8] = ACTIONS(2478), - [anon_sym_i8] = ACTIONS(2478), - [anon_sym_u16] = ACTIONS(2478), - [anon_sym_i16] = ACTIONS(2478), - [anon_sym_u32] = ACTIONS(2478), - [anon_sym_i32] = ACTIONS(2478), - [anon_sym_u64] = ACTIONS(2478), - [anon_sym_i64] = ACTIONS(2478), - [anon_sym_u128] = ACTIONS(2478), - [anon_sym_i128] = ACTIONS(2478), - [anon_sym_isize] = ACTIONS(2478), - [anon_sym_usize] = ACTIONS(2478), - [anon_sym_f32] = ACTIONS(2478), - [anon_sym_f64] = ACTIONS(2478), - [anon_sym_bool] = ACTIONS(2478), - [anon_sym_str] = ACTIONS(2478), - [anon_sym_char] = ACTIONS(2478), - [anon_sym_DASH] = ACTIONS(2476), - [anon_sym_BANG] = ACTIONS(2476), - [anon_sym_AMP] = ACTIONS(2476), - [anon_sym_PIPE] = ACTIONS(2476), - [anon_sym_LT] = ACTIONS(2476), - [anon_sym_DOT_DOT] = ACTIONS(2476), - [anon_sym_COLON_COLON] = ACTIONS(2476), - [anon_sym_POUND] = ACTIONS(2476), - [anon_sym_SQUOTE] = ACTIONS(2478), - [anon_sym_async] = ACTIONS(2478), - [anon_sym_break] = ACTIONS(2478), - [anon_sym_const] = ACTIONS(2478), - [anon_sym_continue] = ACTIONS(2478), - [anon_sym_default] = ACTIONS(2478), - [anon_sym_enum] = ACTIONS(2478), - [anon_sym_fn] = ACTIONS(2478), - [anon_sym_for] = ACTIONS(2478), - [anon_sym_if] = ACTIONS(2478), - [anon_sym_impl] = ACTIONS(2478), - [anon_sym_let] = ACTIONS(2478), - [anon_sym_loop] = ACTIONS(2478), - [anon_sym_match] = ACTIONS(2478), - [anon_sym_mod] = ACTIONS(2478), - [anon_sym_pub] = ACTIONS(2478), - [anon_sym_return] = ACTIONS(2478), - [anon_sym_static] = ACTIONS(2478), - [anon_sym_struct] = ACTIONS(2478), - [anon_sym_trait] = ACTIONS(2478), - [anon_sym_type] = ACTIONS(2478), - [anon_sym_union] = ACTIONS(2478), - [anon_sym_unsafe] = ACTIONS(2478), - [anon_sym_use] = ACTIONS(2478), - [anon_sym_while] = ACTIONS(2478), - [anon_sym_extern] = ACTIONS(2478), - [anon_sym_yield] = ACTIONS(2478), - [anon_sym_move] = ACTIONS(2478), - [anon_sym_try] = ACTIONS(2478), - [sym_integer_literal] = ACTIONS(2476), - [aux_sym_string_literal_token1] = ACTIONS(2476), - [sym_char_literal] = ACTIONS(2476), - [anon_sym_true] = ACTIONS(2478), - [anon_sym_false] = ACTIONS(2478), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2478), - [sym_super] = ACTIONS(2478), - [sym_crate] = ACTIONS(2478), - [sym_metavariable] = ACTIONS(2476), - [sym__raw_string_literal_start] = ACTIONS(2476), - [sym_float_literal] = ACTIONS(2476), + [677] = { + [sym_line_comment] = STATE(677), + [sym_block_comment] = STATE(677), + [ts_builtin_sym_end] = ACTIONS(2474), + [sym_identifier] = ACTIONS(2476), + [anon_sym_SEMI] = ACTIONS(2474), + [anon_sym_macro_rules_BANG] = ACTIONS(2474), + [anon_sym_LPAREN] = ACTIONS(2474), + [anon_sym_LBRACK] = ACTIONS(2474), + [anon_sym_LBRACE] = ACTIONS(2474), + [anon_sym_RBRACE] = ACTIONS(2474), + [anon_sym_STAR] = ACTIONS(2474), + [anon_sym_u8] = ACTIONS(2476), + [anon_sym_i8] = ACTIONS(2476), + [anon_sym_u16] = ACTIONS(2476), + [anon_sym_i16] = ACTIONS(2476), + [anon_sym_u32] = ACTIONS(2476), + [anon_sym_i32] = ACTIONS(2476), + [anon_sym_u64] = ACTIONS(2476), + [anon_sym_i64] = ACTIONS(2476), + [anon_sym_u128] = ACTIONS(2476), + [anon_sym_i128] = ACTIONS(2476), + [anon_sym_isize] = ACTIONS(2476), + [anon_sym_usize] = ACTIONS(2476), + [anon_sym_f32] = ACTIONS(2476), + [anon_sym_f64] = ACTIONS(2476), + [anon_sym_bool] = ACTIONS(2476), + [anon_sym_str] = ACTIONS(2476), + [anon_sym_char] = ACTIONS(2476), + [anon_sym_DASH] = ACTIONS(2474), + [anon_sym_BANG] = ACTIONS(2474), + [anon_sym_AMP] = ACTIONS(2474), + [anon_sym_PIPE] = ACTIONS(2474), + [anon_sym_LT] = ACTIONS(2474), + [anon_sym_DOT_DOT] = ACTIONS(2474), + [anon_sym_COLON_COLON] = ACTIONS(2474), + [anon_sym_POUND] = ACTIONS(2474), + [anon_sym_SQUOTE] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_break] = ACTIONS(2476), + [anon_sym_const] = ACTIONS(2476), + [anon_sym_continue] = ACTIONS(2476), + [anon_sym_default] = ACTIONS(2476), + [anon_sym_enum] = ACTIONS(2476), + [anon_sym_fn] = ACTIONS(2476), + [anon_sym_for] = ACTIONS(2476), + [anon_sym_if] = ACTIONS(2476), + [anon_sym_impl] = ACTIONS(2476), + [anon_sym_let] = ACTIONS(2476), + [anon_sym_loop] = ACTIONS(2476), + [anon_sym_match] = ACTIONS(2476), + [anon_sym_mod] = ACTIONS(2476), + [anon_sym_pub] = ACTIONS(2476), + [anon_sym_return] = ACTIONS(2476), + [anon_sym_static] = ACTIONS(2476), + [anon_sym_struct] = ACTIONS(2476), + [anon_sym_trait] = ACTIONS(2476), + [anon_sym_type] = ACTIONS(2476), + [anon_sym_union] = ACTIONS(2476), + [anon_sym_unsafe] = ACTIONS(2476), + [anon_sym_use] = ACTIONS(2476), + [anon_sym_while] = ACTIONS(2476), + [anon_sym_extern] = ACTIONS(2476), + [anon_sym_yield] = ACTIONS(2476), + [anon_sym_move] = ACTIONS(2476), + [anon_sym_try] = ACTIONS(2476), + [sym_integer_literal] = ACTIONS(2474), + [aux_sym_string_literal_token1] = ACTIONS(2474), + [sym_char_literal] = ACTIONS(2474), + [anon_sym_true] = ACTIONS(2476), + [anon_sym_false] = ACTIONS(2476), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2476), + [sym_super] = ACTIONS(2476), + [sym_crate] = ACTIONS(2476), + [sym_metavariable] = ACTIONS(2474), + [sym__raw_string_literal_start] = ACTIONS(2474), + [sym_float_literal] = ACTIONS(2474), }, - [662] = { - [sym_line_comment] = STATE(662), - [sym_block_comment] = STATE(662), - [ts_builtin_sym_end] = ACTIONS(2480), - [sym_identifier] = ACTIONS(2482), - [anon_sym_SEMI] = ACTIONS(2480), - [anon_sym_macro_rules_BANG] = ACTIONS(2480), - [anon_sym_LPAREN] = ACTIONS(2480), - [anon_sym_LBRACK] = ACTIONS(2480), - [anon_sym_LBRACE] = ACTIONS(2480), - [anon_sym_RBRACE] = ACTIONS(2480), - [anon_sym_STAR] = ACTIONS(2480), - [anon_sym_u8] = ACTIONS(2482), - [anon_sym_i8] = ACTIONS(2482), - [anon_sym_u16] = ACTIONS(2482), - [anon_sym_i16] = ACTIONS(2482), - [anon_sym_u32] = ACTIONS(2482), - [anon_sym_i32] = ACTIONS(2482), - [anon_sym_u64] = ACTIONS(2482), - [anon_sym_i64] = ACTIONS(2482), - [anon_sym_u128] = ACTIONS(2482), - [anon_sym_i128] = ACTIONS(2482), - [anon_sym_isize] = ACTIONS(2482), - [anon_sym_usize] = ACTIONS(2482), - [anon_sym_f32] = ACTIONS(2482), - [anon_sym_f64] = ACTIONS(2482), - [anon_sym_bool] = ACTIONS(2482), - [anon_sym_str] = ACTIONS(2482), - [anon_sym_char] = ACTIONS(2482), - [anon_sym_DASH] = ACTIONS(2480), - [anon_sym_BANG] = ACTIONS(2480), - [anon_sym_AMP] = ACTIONS(2480), - [anon_sym_PIPE] = ACTIONS(2480), - [anon_sym_LT] = ACTIONS(2480), - [anon_sym_DOT_DOT] = ACTIONS(2480), - [anon_sym_COLON_COLON] = ACTIONS(2480), - [anon_sym_POUND] = ACTIONS(2480), - [anon_sym_SQUOTE] = ACTIONS(2482), - [anon_sym_async] = ACTIONS(2482), - [anon_sym_break] = ACTIONS(2482), - [anon_sym_const] = ACTIONS(2482), - [anon_sym_continue] = ACTIONS(2482), - [anon_sym_default] = ACTIONS(2482), - [anon_sym_enum] = ACTIONS(2482), - [anon_sym_fn] = ACTIONS(2482), - [anon_sym_for] = ACTIONS(2482), - [anon_sym_if] = ACTIONS(2482), - [anon_sym_impl] = ACTIONS(2482), - [anon_sym_let] = ACTIONS(2482), - [anon_sym_loop] = ACTIONS(2482), - [anon_sym_match] = ACTIONS(2482), - [anon_sym_mod] = ACTIONS(2482), - [anon_sym_pub] = ACTIONS(2482), - [anon_sym_return] = ACTIONS(2482), - [anon_sym_static] = ACTIONS(2482), - [anon_sym_struct] = ACTIONS(2482), - [anon_sym_trait] = ACTIONS(2482), - [anon_sym_type] = ACTIONS(2482), - [anon_sym_union] = ACTIONS(2482), - [anon_sym_unsafe] = ACTIONS(2482), - [anon_sym_use] = ACTIONS(2482), - [anon_sym_while] = ACTIONS(2482), - [anon_sym_extern] = ACTIONS(2482), - [anon_sym_yield] = ACTIONS(2482), - [anon_sym_move] = ACTIONS(2482), - [anon_sym_try] = ACTIONS(2482), - [sym_integer_literal] = ACTIONS(2480), - [aux_sym_string_literal_token1] = ACTIONS(2480), - [sym_char_literal] = ACTIONS(2480), - [anon_sym_true] = ACTIONS(2482), - [anon_sym_false] = ACTIONS(2482), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2482), - [sym_super] = ACTIONS(2482), - [sym_crate] = ACTIONS(2482), - [sym_metavariable] = ACTIONS(2480), - [sym__raw_string_literal_start] = ACTIONS(2480), - [sym_float_literal] = ACTIONS(2480), + [678] = { + [sym_line_comment] = STATE(678), + [sym_block_comment] = STATE(678), + [ts_builtin_sym_end] = ACTIONS(2478), + [sym_identifier] = ACTIONS(2480), + [anon_sym_SEMI] = ACTIONS(2478), + [anon_sym_macro_rules_BANG] = ACTIONS(2478), + [anon_sym_LPAREN] = ACTIONS(2478), + [anon_sym_LBRACK] = ACTIONS(2478), + [anon_sym_LBRACE] = ACTIONS(2478), + [anon_sym_RBRACE] = ACTIONS(2478), + [anon_sym_STAR] = ACTIONS(2478), + [anon_sym_u8] = ACTIONS(2480), + [anon_sym_i8] = ACTIONS(2480), + [anon_sym_u16] = ACTIONS(2480), + [anon_sym_i16] = ACTIONS(2480), + [anon_sym_u32] = ACTIONS(2480), + [anon_sym_i32] = ACTIONS(2480), + [anon_sym_u64] = ACTIONS(2480), + [anon_sym_i64] = ACTIONS(2480), + [anon_sym_u128] = ACTIONS(2480), + [anon_sym_i128] = ACTIONS(2480), + [anon_sym_isize] = ACTIONS(2480), + [anon_sym_usize] = ACTIONS(2480), + [anon_sym_f32] = ACTIONS(2480), + [anon_sym_f64] = ACTIONS(2480), + [anon_sym_bool] = ACTIONS(2480), + [anon_sym_str] = ACTIONS(2480), + [anon_sym_char] = ACTIONS(2480), + [anon_sym_DASH] = ACTIONS(2478), + [anon_sym_BANG] = ACTIONS(2478), + [anon_sym_AMP] = ACTIONS(2478), + [anon_sym_PIPE] = ACTIONS(2478), + [anon_sym_LT] = ACTIONS(2478), + [anon_sym_DOT_DOT] = ACTIONS(2478), + [anon_sym_COLON_COLON] = ACTIONS(2478), + [anon_sym_POUND] = ACTIONS(2478), + [anon_sym_SQUOTE] = ACTIONS(2480), + [anon_sym_async] = ACTIONS(2480), + [anon_sym_break] = ACTIONS(2480), + [anon_sym_const] = ACTIONS(2480), + [anon_sym_continue] = ACTIONS(2480), + [anon_sym_default] = ACTIONS(2480), + [anon_sym_enum] = ACTIONS(2480), + [anon_sym_fn] = ACTIONS(2480), + [anon_sym_for] = ACTIONS(2480), + [anon_sym_if] = ACTIONS(2480), + [anon_sym_impl] = ACTIONS(2480), + [anon_sym_let] = ACTIONS(2480), + [anon_sym_loop] = ACTIONS(2480), + [anon_sym_match] = ACTIONS(2480), + [anon_sym_mod] = ACTIONS(2480), + [anon_sym_pub] = ACTIONS(2480), + [anon_sym_return] = ACTIONS(2480), + [anon_sym_static] = ACTIONS(2480), + [anon_sym_struct] = ACTIONS(2480), + [anon_sym_trait] = ACTIONS(2480), + [anon_sym_type] = ACTIONS(2480), + [anon_sym_union] = ACTIONS(2480), + [anon_sym_unsafe] = ACTIONS(2480), + [anon_sym_use] = ACTIONS(2480), + [anon_sym_while] = ACTIONS(2480), + [anon_sym_extern] = ACTIONS(2480), + [anon_sym_yield] = ACTIONS(2480), + [anon_sym_move] = ACTIONS(2480), + [anon_sym_try] = ACTIONS(2480), + [sym_integer_literal] = ACTIONS(2478), + [aux_sym_string_literal_token1] = ACTIONS(2478), + [sym_char_literal] = ACTIONS(2478), + [anon_sym_true] = ACTIONS(2480), + [anon_sym_false] = ACTIONS(2480), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2480), + [sym_super] = ACTIONS(2480), + [sym_crate] = ACTIONS(2480), + [sym_metavariable] = ACTIONS(2478), + [sym__raw_string_literal_start] = ACTIONS(2478), + [sym_float_literal] = ACTIONS(2478), }, - [663] = { - [sym_line_comment] = STATE(663), - [sym_block_comment] = STATE(663), - [ts_builtin_sym_end] = ACTIONS(2484), - [sym_identifier] = ACTIONS(2486), - [anon_sym_SEMI] = ACTIONS(2484), - [anon_sym_macro_rules_BANG] = ACTIONS(2484), - [anon_sym_LPAREN] = ACTIONS(2484), - [anon_sym_LBRACK] = ACTIONS(2484), - [anon_sym_LBRACE] = ACTIONS(2484), - [anon_sym_RBRACE] = ACTIONS(2484), - [anon_sym_STAR] = ACTIONS(2484), - [anon_sym_u8] = ACTIONS(2486), - [anon_sym_i8] = ACTIONS(2486), - [anon_sym_u16] = ACTIONS(2486), - [anon_sym_i16] = ACTIONS(2486), - [anon_sym_u32] = ACTIONS(2486), - [anon_sym_i32] = ACTIONS(2486), - [anon_sym_u64] = ACTIONS(2486), - [anon_sym_i64] = ACTIONS(2486), - [anon_sym_u128] = ACTIONS(2486), - [anon_sym_i128] = ACTIONS(2486), - [anon_sym_isize] = ACTIONS(2486), - [anon_sym_usize] = ACTIONS(2486), - [anon_sym_f32] = ACTIONS(2486), - [anon_sym_f64] = ACTIONS(2486), - [anon_sym_bool] = ACTIONS(2486), - [anon_sym_str] = ACTIONS(2486), - [anon_sym_char] = ACTIONS(2486), - [anon_sym_DASH] = ACTIONS(2484), - [anon_sym_BANG] = ACTIONS(2484), - [anon_sym_AMP] = ACTIONS(2484), - [anon_sym_PIPE] = ACTIONS(2484), - [anon_sym_LT] = ACTIONS(2484), - [anon_sym_DOT_DOT] = ACTIONS(2484), - [anon_sym_COLON_COLON] = ACTIONS(2484), - [anon_sym_POUND] = ACTIONS(2484), - [anon_sym_SQUOTE] = ACTIONS(2486), - [anon_sym_async] = ACTIONS(2486), - [anon_sym_break] = ACTIONS(2486), - [anon_sym_const] = ACTIONS(2486), - [anon_sym_continue] = ACTIONS(2486), - [anon_sym_default] = ACTIONS(2486), - [anon_sym_enum] = ACTIONS(2486), - [anon_sym_fn] = ACTIONS(2486), - [anon_sym_for] = ACTIONS(2486), - [anon_sym_if] = ACTIONS(2486), - [anon_sym_impl] = ACTIONS(2486), - [anon_sym_let] = ACTIONS(2486), - [anon_sym_loop] = ACTIONS(2486), - [anon_sym_match] = ACTIONS(2486), - [anon_sym_mod] = ACTIONS(2486), - [anon_sym_pub] = ACTIONS(2486), - [anon_sym_return] = ACTIONS(2486), - [anon_sym_static] = ACTIONS(2486), - [anon_sym_struct] = ACTIONS(2486), - [anon_sym_trait] = ACTIONS(2486), - [anon_sym_type] = ACTIONS(2486), - [anon_sym_union] = ACTIONS(2486), - [anon_sym_unsafe] = ACTIONS(2486), - [anon_sym_use] = ACTIONS(2486), - [anon_sym_while] = ACTIONS(2486), - [anon_sym_extern] = ACTIONS(2486), - [anon_sym_yield] = ACTIONS(2486), - [anon_sym_move] = ACTIONS(2486), - [anon_sym_try] = ACTIONS(2486), - [sym_integer_literal] = ACTIONS(2484), - [aux_sym_string_literal_token1] = ACTIONS(2484), - [sym_char_literal] = ACTIONS(2484), - [anon_sym_true] = ACTIONS(2486), - [anon_sym_false] = ACTIONS(2486), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2486), - [sym_super] = ACTIONS(2486), - [sym_crate] = ACTIONS(2486), - [sym_metavariable] = ACTIONS(2484), - [sym__raw_string_literal_start] = ACTIONS(2484), - [sym_float_literal] = ACTIONS(2484), + [679] = { + [sym_line_comment] = STATE(679), + [sym_block_comment] = STATE(679), + [ts_builtin_sym_end] = ACTIONS(2482), + [sym_identifier] = ACTIONS(2484), + [anon_sym_SEMI] = ACTIONS(2482), + [anon_sym_macro_rules_BANG] = ACTIONS(2482), + [anon_sym_LPAREN] = ACTIONS(2482), + [anon_sym_LBRACK] = ACTIONS(2482), + [anon_sym_LBRACE] = ACTIONS(2482), + [anon_sym_RBRACE] = ACTIONS(2482), + [anon_sym_STAR] = ACTIONS(2482), + [anon_sym_u8] = ACTIONS(2484), + [anon_sym_i8] = ACTIONS(2484), + [anon_sym_u16] = ACTIONS(2484), + [anon_sym_i16] = ACTIONS(2484), + [anon_sym_u32] = ACTIONS(2484), + [anon_sym_i32] = ACTIONS(2484), + [anon_sym_u64] = ACTIONS(2484), + [anon_sym_i64] = ACTIONS(2484), + [anon_sym_u128] = ACTIONS(2484), + [anon_sym_i128] = ACTIONS(2484), + [anon_sym_isize] = ACTIONS(2484), + [anon_sym_usize] = ACTIONS(2484), + [anon_sym_f32] = ACTIONS(2484), + [anon_sym_f64] = ACTIONS(2484), + [anon_sym_bool] = ACTIONS(2484), + [anon_sym_str] = ACTIONS(2484), + [anon_sym_char] = ACTIONS(2484), + [anon_sym_DASH] = ACTIONS(2482), + [anon_sym_BANG] = ACTIONS(2482), + [anon_sym_AMP] = ACTIONS(2482), + [anon_sym_PIPE] = ACTIONS(2482), + [anon_sym_LT] = ACTIONS(2482), + [anon_sym_DOT_DOT] = ACTIONS(2482), + [anon_sym_COLON_COLON] = ACTIONS(2482), + [anon_sym_POUND] = ACTIONS(2482), + [anon_sym_SQUOTE] = ACTIONS(2484), + [anon_sym_async] = ACTIONS(2484), + [anon_sym_break] = ACTIONS(2484), + [anon_sym_const] = ACTIONS(2484), + [anon_sym_continue] = ACTIONS(2484), + [anon_sym_default] = ACTIONS(2484), + [anon_sym_enum] = ACTIONS(2484), + [anon_sym_fn] = ACTIONS(2484), + [anon_sym_for] = ACTIONS(2484), + [anon_sym_if] = ACTIONS(2484), + [anon_sym_impl] = ACTIONS(2484), + [anon_sym_let] = ACTIONS(2484), + [anon_sym_loop] = ACTIONS(2484), + [anon_sym_match] = ACTIONS(2484), + [anon_sym_mod] = ACTIONS(2484), + [anon_sym_pub] = ACTIONS(2484), + [anon_sym_return] = ACTIONS(2484), + [anon_sym_static] = ACTIONS(2484), + [anon_sym_struct] = ACTIONS(2484), + [anon_sym_trait] = ACTIONS(2484), + [anon_sym_type] = ACTIONS(2484), + [anon_sym_union] = ACTIONS(2484), + [anon_sym_unsafe] = ACTIONS(2484), + [anon_sym_use] = ACTIONS(2484), + [anon_sym_while] = ACTIONS(2484), + [anon_sym_extern] = ACTIONS(2484), + [anon_sym_yield] = ACTIONS(2484), + [anon_sym_move] = ACTIONS(2484), + [anon_sym_try] = ACTIONS(2484), + [sym_integer_literal] = ACTIONS(2482), + [aux_sym_string_literal_token1] = ACTIONS(2482), + [sym_char_literal] = ACTIONS(2482), + [anon_sym_true] = ACTIONS(2484), + [anon_sym_false] = ACTIONS(2484), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2484), + [sym_super] = ACTIONS(2484), + [sym_crate] = ACTIONS(2484), + [sym_metavariable] = ACTIONS(2482), + [sym__raw_string_literal_start] = ACTIONS(2482), + [sym_float_literal] = ACTIONS(2482), }, - [664] = { - [sym_line_comment] = STATE(664), - [sym_block_comment] = STATE(664), - [ts_builtin_sym_end] = ACTIONS(2488), - [sym_identifier] = ACTIONS(2490), - [anon_sym_SEMI] = ACTIONS(2488), - [anon_sym_macro_rules_BANG] = ACTIONS(2488), - [anon_sym_LPAREN] = ACTIONS(2488), - [anon_sym_LBRACK] = ACTIONS(2488), - [anon_sym_LBRACE] = ACTIONS(2488), - [anon_sym_RBRACE] = ACTIONS(2488), - [anon_sym_STAR] = ACTIONS(2488), - [anon_sym_u8] = ACTIONS(2490), - [anon_sym_i8] = ACTIONS(2490), - [anon_sym_u16] = ACTIONS(2490), - [anon_sym_i16] = ACTIONS(2490), - [anon_sym_u32] = ACTIONS(2490), - [anon_sym_i32] = ACTIONS(2490), - [anon_sym_u64] = ACTIONS(2490), - [anon_sym_i64] = ACTIONS(2490), - [anon_sym_u128] = ACTIONS(2490), - [anon_sym_i128] = ACTIONS(2490), - [anon_sym_isize] = ACTIONS(2490), - [anon_sym_usize] = ACTIONS(2490), - [anon_sym_f32] = ACTIONS(2490), - [anon_sym_f64] = ACTIONS(2490), - [anon_sym_bool] = ACTIONS(2490), - [anon_sym_str] = ACTIONS(2490), - [anon_sym_char] = ACTIONS(2490), - [anon_sym_DASH] = ACTIONS(2488), - [anon_sym_BANG] = ACTIONS(2488), - [anon_sym_AMP] = ACTIONS(2488), - [anon_sym_PIPE] = ACTIONS(2488), - [anon_sym_LT] = ACTIONS(2488), - [anon_sym_DOT_DOT] = ACTIONS(2488), - [anon_sym_COLON_COLON] = ACTIONS(2488), - [anon_sym_POUND] = ACTIONS(2488), - [anon_sym_SQUOTE] = ACTIONS(2490), - [anon_sym_async] = ACTIONS(2490), - [anon_sym_break] = ACTIONS(2490), - [anon_sym_const] = ACTIONS(2490), - [anon_sym_continue] = ACTIONS(2490), - [anon_sym_default] = ACTIONS(2490), - [anon_sym_enum] = ACTIONS(2490), - [anon_sym_fn] = ACTIONS(2490), - [anon_sym_for] = ACTIONS(2490), - [anon_sym_if] = ACTIONS(2490), - [anon_sym_impl] = ACTIONS(2490), - [anon_sym_let] = ACTIONS(2490), - [anon_sym_loop] = ACTIONS(2490), - [anon_sym_match] = ACTIONS(2490), - [anon_sym_mod] = ACTIONS(2490), - [anon_sym_pub] = ACTIONS(2490), - [anon_sym_return] = ACTIONS(2490), - [anon_sym_static] = ACTIONS(2490), - [anon_sym_struct] = ACTIONS(2490), - [anon_sym_trait] = ACTIONS(2490), - [anon_sym_type] = ACTIONS(2490), - [anon_sym_union] = ACTIONS(2490), - [anon_sym_unsafe] = ACTIONS(2490), - [anon_sym_use] = ACTIONS(2490), - [anon_sym_while] = ACTIONS(2490), - [anon_sym_extern] = ACTIONS(2490), - [anon_sym_yield] = ACTIONS(2490), - [anon_sym_move] = ACTIONS(2490), - [anon_sym_try] = ACTIONS(2490), - [sym_integer_literal] = ACTIONS(2488), - [aux_sym_string_literal_token1] = ACTIONS(2488), - [sym_char_literal] = ACTIONS(2488), - [anon_sym_true] = ACTIONS(2490), - [anon_sym_false] = ACTIONS(2490), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2490), - [sym_super] = ACTIONS(2490), - [sym_crate] = ACTIONS(2490), - [sym_metavariable] = ACTIONS(2488), - [sym__raw_string_literal_start] = ACTIONS(2488), - [sym_float_literal] = ACTIONS(2488), + [680] = { + [sym_line_comment] = STATE(680), + [sym_block_comment] = STATE(680), + [ts_builtin_sym_end] = ACTIONS(2486), + [sym_identifier] = ACTIONS(2488), + [anon_sym_SEMI] = ACTIONS(2486), + [anon_sym_macro_rules_BANG] = ACTIONS(2486), + [anon_sym_LPAREN] = ACTIONS(2486), + [anon_sym_LBRACK] = ACTIONS(2486), + [anon_sym_LBRACE] = ACTIONS(2486), + [anon_sym_RBRACE] = ACTIONS(2486), + [anon_sym_STAR] = ACTIONS(2486), + [anon_sym_u8] = ACTIONS(2488), + [anon_sym_i8] = ACTIONS(2488), + [anon_sym_u16] = ACTIONS(2488), + [anon_sym_i16] = ACTIONS(2488), + [anon_sym_u32] = ACTIONS(2488), + [anon_sym_i32] = ACTIONS(2488), + [anon_sym_u64] = ACTIONS(2488), + [anon_sym_i64] = ACTIONS(2488), + [anon_sym_u128] = ACTIONS(2488), + [anon_sym_i128] = ACTIONS(2488), + [anon_sym_isize] = ACTIONS(2488), + [anon_sym_usize] = ACTIONS(2488), + [anon_sym_f32] = ACTIONS(2488), + [anon_sym_f64] = ACTIONS(2488), + [anon_sym_bool] = ACTIONS(2488), + [anon_sym_str] = ACTIONS(2488), + [anon_sym_char] = ACTIONS(2488), + [anon_sym_DASH] = ACTIONS(2486), + [anon_sym_BANG] = ACTIONS(2486), + [anon_sym_AMP] = ACTIONS(2486), + [anon_sym_PIPE] = ACTIONS(2486), + [anon_sym_LT] = ACTIONS(2486), + [anon_sym_DOT_DOT] = ACTIONS(2486), + [anon_sym_COLON_COLON] = ACTIONS(2486), + [anon_sym_POUND] = ACTIONS(2486), + [anon_sym_SQUOTE] = ACTIONS(2488), + [anon_sym_async] = ACTIONS(2488), + [anon_sym_break] = ACTIONS(2488), + [anon_sym_const] = ACTIONS(2488), + [anon_sym_continue] = ACTIONS(2488), + [anon_sym_default] = ACTIONS(2488), + [anon_sym_enum] = ACTIONS(2488), + [anon_sym_fn] = ACTIONS(2488), + [anon_sym_for] = ACTIONS(2488), + [anon_sym_if] = ACTIONS(2488), + [anon_sym_impl] = ACTIONS(2488), + [anon_sym_let] = ACTIONS(2488), + [anon_sym_loop] = ACTIONS(2488), + [anon_sym_match] = ACTIONS(2488), + [anon_sym_mod] = ACTIONS(2488), + [anon_sym_pub] = ACTIONS(2488), + [anon_sym_return] = ACTIONS(2488), + [anon_sym_static] = ACTIONS(2488), + [anon_sym_struct] = ACTIONS(2488), + [anon_sym_trait] = ACTIONS(2488), + [anon_sym_type] = ACTIONS(2488), + [anon_sym_union] = ACTIONS(2488), + [anon_sym_unsafe] = ACTIONS(2488), + [anon_sym_use] = ACTIONS(2488), + [anon_sym_while] = ACTIONS(2488), + [anon_sym_extern] = ACTIONS(2488), + [anon_sym_yield] = ACTIONS(2488), + [anon_sym_move] = ACTIONS(2488), + [anon_sym_try] = ACTIONS(2488), + [sym_integer_literal] = ACTIONS(2486), + [aux_sym_string_literal_token1] = ACTIONS(2486), + [sym_char_literal] = ACTIONS(2486), + [anon_sym_true] = ACTIONS(2488), + [anon_sym_false] = ACTIONS(2488), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2488), + [sym_super] = ACTIONS(2488), + [sym_crate] = ACTIONS(2488), + [sym_metavariable] = ACTIONS(2486), + [sym__raw_string_literal_start] = ACTIONS(2486), + [sym_float_literal] = ACTIONS(2486), }, - [665] = { - [sym_line_comment] = STATE(665), - [sym_block_comment] = STATE(665), - [ts_builtin_sym_end] = ACTIONS(2492), - [sym_identifier] = ACTIONS(2494), - [anon_sym_SEMI] = ACTIONS(2492), - [anon_sym_macro_rules_BANG] = ACTIONS(2492), - [anon_sym_LPAREN] = ACTIONS(2492), - [anon_sym_LBRACK] = ACTIONS(2492), - [anon_sym_LBRACE] = ACTIONS(2492), - [anon_sym_RBRACE] = ACTIONS(2492), - [anon_sym_STAR] = ACTIONS(2492), - [anon_sym_u8] = ACTIONS(2494), - [anon_sym_i8] = ACTIONS(2494), - [anon_sym_u16] = ACTIONS(2494), - [anon_sym_i16] = ACTIONS(2494), - [anon_sym_u32] = ACTIONS(2494), - [anon_sym_i32] = ACTIONS(2494), - [anon_sym_u64] = ACTIONS(2494), - [anon_sym_i64] = ACTIONS(2494), - [anon_sym_u128] = ACTIONS(2494), - [anon_sym_i128] = ACTIONS(2494), - [anon_sym_isize] = ACTIONS(2494), - [anon_sym_usize] = ACTIONS(2494), - [anon_sym_f32] = ACTIONS(2494), - [anon_sym_f64] = ACTIONS(2494), - [anon_sym_bool] = ACTIONS(2494), - [anon_sym_str] = ACTIONS(2494), - [anon_sym_char] = ACTIONS(2494), - [anon_sym_DASH] = ACTIONS(2492), - [anon_sym_BANG] = ACTIONS(2492), - [anon_sym_AMP] = ACTIONS(2492), - [anon_sym_PIPE] = ACTIONS(2492), - [anon_sym_LT] = ACTIONS(2492), - [anon_sym_DOT_DOT] = ACTIONS(2492), - [anon_sym_COLON_COLON] = ACTIONS(2492), - [anon_sym_POUND] = ACTIONS(2492), - [anon_sym_SQUOTE] = ACTIONS(2494), - [anon_sym_async] = ACTIONS(2494), - [anon_sym_break] = ACTIONS(2494), - [anon_sym_const] = ACTIONS(2494), - [anon_sym_continue] = ACTIONS(2494), - [anon_sym_default] = ACTIONS(2494), - [anon_sym_enum] = ACTIONS(2494), - [anon_sym_fn] = ACTIONS(2494), - [anon_sym_for] = ACTIONS(2494), - [anon_sym_if] = ACTIONS(2494), - [anon_sym_impl] = ACTIONS(2494), - [anon_sym_let] = ACTIONS(2494), - [anon_sym_loop] = ACTIONS(2494), - [anon_sym_match] = ACTIONS(2494), - [anon_sym_mod] = ACTIONS(2494), - [anon_sym_pub] = ACTIONS(2494), - [anon_sym_return] = ACTIONS(2494), - [anon_sym_static] = ACTIONS(2494), - [anon_sym_struct] = ACTIONS(2494), - [anon_sym_trait] = ACTIONS(2494), - [anon_sym_type] = ACTIONS(2494), - [anon_sym_union] = ACTIONS(2494), - [anon_sym_unsafe] = ACTIONS(2494), - [anon_sym_use] = ACTIONS(2494), - [anon_sym_while] = ACTIONS(2494), - [anon_sym_extern] = ACTIONS(2494), - [anon_sym_yield] = ACTIONS(2494), - [anon_sym_move] = ACTIONS(2494), - [anon_sym_try] = ACTIONS(2494), - [sym_integer_literal] = ACTIONS(2492), - [aux_sym_string_literal_token1] = ACTIONS(2492), - [sym_char_literal] = ACTIONS(2492), - [anon_sym_true] = ACTIONS(2494), - [anon_sym_false] = ACTIONS(2494), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2494), - [sym_super] = ACTIONS(2494), - [sym_crate] = ACTIONS(2494), - [sym_metavariable] = ACTIONS(2492), - [sym__raw_string_literal_start] = ACTIONS(2492), - [sym_float_literal] = ACTIONS(2492), + [681] = { + [sym_line_comment] = STATE(681), + [sym_block_comment] = STATE(681), + [ts_builtin_sym_end] = ACTIONS(2490), + [sym_identifier] = ACTIONS(2492), + [anon_sym_SEMI] = ACTIONS(2490), + [anon_sym_macro_rules_BANG] = ACTIONS(2490), + [anon_sym_LPAREN] = ACTIONS(2490), + [anon_sym_LBRACK] = ACTIONS(2490), + [anon_sym_LBRACE] = ACTIONS(2490), + [anon_sym_RBRACE] = ACTIONS(2490), + [anon_sym_STAR] = ACTIONS(2490), + [anon_sym_u8] = ACTIONS(2492), + [anon_sym_i8] = ACTIONS(2492), + [anon_sym_u16] = ACTIONS(2492), + [anon_sym_i16] = ACTIONS(2492), + [anon_sym_u32] = ACTIONS(2492), + [anon_sym_i32] = ACTIONS(2492), + [anon_sym_u64] = ACTIONS(2492), + [anon_sym_i64] = ACTIONS(2492), + [anon_sym_u128] = ACTIONS(2492), + [anon_sym_i128] = ACTIONS(2492), + [anon_sym_isize] = ACTIONS(2492), + [anon_sym_usize] = ACTIONS(2492), + [anon_sym_f32] = ACTIONS(2492), + [anon_sym_f64] = ACTIONS(2492), + [anon_sym_bool] = ACTIONS(2492), + [anon_sym_str] = ACTIONS(2492), + [anon_sym_char] = ACTIONS(2492), + [anon_sym_DASH] = ACTIONS(2490), + [anon_sym_BANG] = ACTIONS(2490), + [anon_sym_AMP] = ACTIONS(2490), + [anon_sym_PIPE] = ACTIONS(2490), + [anon_sym_LT] = ACTIONS(2490), + [anon_sym_DOT_DOT] = ACTIONS(2490), + [anon_sym_COLON_COLON] = ACTIONS(2490), + [anon_sym_POUND] = ACTIONS(2490), + [anon_sym_SQUOTE] = ACTIONS(2492), + [anon_sym_async] = ACTIONS(2492), + [anon_sym_break] = ACTIONS(2492), + [anon_sym_const] = ACTIONS(2492), + [anon_sym_continue] = ACTIONS(2492), + [anon_sym_default] = ACTIONS(2492), + [anon_sym_enum] = ACTIONS(2492), + [anon_sym_fn] = ACTIONS(2492), + [anon_sym_for] = ACTIONS(2492), + [anon_sym_if] = ACTIONS(2492), + [anon_sym_impl] = ACTIONS(2492), + [anon_sym_let] = ACTIONS(2492), + [anon_sym_loop] = ACTIONS(2492), + [anon_sym_match] = ACTIONS(2492), + [anon_sym_mod] = ACTIONS(2492), + [anon_sym_pub] = ACTIONS(2492), + [anon_sym_return] = ACTIONS(2492), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_struct] = ACTIONS(2492), + [anon_sym_trait] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_union] = ACTIONS(2492), + [anon_sym_unsafe] = ACTIONS(2492), + [anon_sym_use] = ACTIONS(2492), + [anon_sym_while] = ACTIONS(2492), + [anon_sym_extern] = ACTIONS(2492), + [anon_sym_yield] = ACTIONS(2492), + [anon_sym_move] = ACTIONS(2492), + [anon_sym_try] = ACTIONS(2492), + [sym_integer_literal] = ACTIONS(2490), + [aux_sym_string_literal_token1] = ACTIONS(2490), + [sym_char_literal] = ACTIONS(2490), + [anon_sym_true] = ACTIONS(2492), + [anon_sym_false] = ACTIONS(2492), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2492), + [sym_super] = ACTIONS(2492), + [sym_crate] = ACTIONS(2492), + [sym_metavariable] = ACTIONS(2490), + [sym__raw_string_literal_start] = ACTIONS(2490), + [sym_float_literal] = ACTIONS(2490), }, - [666] = { - [sym_line_comment] = STATE(666), - [sym_block_comment] = STATE(666), - [ts_builtin_sym_end] = ACTIONS(2496), - [sym_identifier] = ACTIONS(2498), - [anon_sym_SEMI] = ACTIONS(2496), - [anon_sym_macro_rules_BANG] = ACTIONS(2496), - [anon_sym_LPAREN] = ACTIONS(2496), - [anon_sym_LBRACK] = ACTIONS(2496), - [anon_sym_LBRACE] = ACTIONS(2496), - [anon_sym_RBRACE] = ACTIONS(2496), - [anon_sym_STAR] = ACTIONS(2496), - [anon_sym_u8] = ACTIONS(2498), - [anon_sym_i8] = ACTIONS(2498), - [anon_sym_u16] = ACTIONS(2498), - [anon_sym_i16] = ACTIONS(2498), - [anon_sym_u32] = ACTIONS(2498), - [anon_sym_i32] = ACTIONS(2498), - [anon_sym_u64] = ACTIONS(2498), - [anon_sym_i64] = ACTIONS(2498), - [anon_sym_u128] = ACTIONS(2498), - [anon_sym_i128] = ACTIONS(2498), - [anon_sym_isize] = ACTIONS(2498), - [anon_sym_usize] = ACTIONS(2498), - [anon_sym_f32] = ACTIONS(2498), - [anon_sym_f64] = ACTIONS(2498), - [anon_sym_bool] = ACTIONS(2498), - [anon_sym_str] = ACTIONS(2498), - [anon_sym_char] = ACTIONS(2498), - [anon_sym_DASH] = ACTIONS(2496), - [anon_sym_BANG] = ACTIONS(2496), - [anon_sym_AMP] = ACTIONS(2496), - [anon_sym_PIPE] = ACTIONS(2496), - [anon_sym_LT] = ACTIONS(2496), - [anon_sym_DOT_DOT] = ACTIONS(2496), - [anon_sym_COLON_COLON] = ACTIONS(2496), - [anon_sym_POUND] = ACTIONS(2496), - [anon_sym_SQUOTE] = ACTIONS(2498), - [anon_sym_async] = ACTIONS(2498), - [anon_sym_break] = ACTIONS(2498), - [anon_sym_const] = ACTIONS(2498), - [anon_sym_continue] = ACTIONS(2498), - [anon_sym_default] = ACTIONS(2498), - [anon_sym_enum] = ACTIONS(2498), - [anon_sym_fn] = ACTIONS(2498), - [anon_sym_for] = ACTIONS(2498), - [anon_sym_if] = ACTIONS(2498), - [anon_sym_impl] = ACTIONS(2498), - [anon_sym_let] = ACTIONS(2498), - [anon_sym_loop] = ACTIONS(2498), - [anon_sym_match] = ACTIONS(2498), - [anon_sym_mod] = ACTIONS(2498), - [anon_sym_pub] = ACTIONS(2498), - [anon_sym_return] = ACTIONS(2498), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_struct] = ACTIONS(2498), - [anon_sym_trait] = ACTIONS(2498), - [anon_sym_type] = ACTIONS(2498), - [anon_sym_union] = ACTIONS(2498), - [anon_sym_unsafe] = ACTIONS(2498), - [anon_sym_use] = ACTIONS(2498), - [anon_sym_while] = ACTIONS(2498), - [anon_sym_extern] = ACTIONS(2498), - [anon_sym_yield] = ACTIONS(2498), - [anon_sym_move] = ACTIONS(2498), - [anon_sym_try] = ACTIONS(2498), - [sym_integer_literal] = ACTIONS(2496), - [aux_sym_string_literal_token1] = ACTIONS(2496), - [sym_char_literal] = ACTIONS(2496), - [anon_sym_true] = ACTIONS(2498), - [anon_sym_false] = ACTIONS(2498), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2498), - [sym_super] = ACTIONS(2498), - [sym_crate] = ACTIONS(2498), - [sym_metavariable] = ACTIONS(2496), - [sym__raw_string_literal_start] = ACTIONS(2496), - [sym_float_literal] = ACTIONS(2496), + [682] = { + [sym_line_comment] = STATE(682), + [sym_block_comment] = STATE(682), + [ts_builtin_sym_end] = ACTIONS(2494), + [sym_identifier] = ACTIONS(2496), + [anon_sym_SEMI] = ACTIONS(2494), + [anon_sym_macro_rules_BANG] = ACTIONS(2494), + [anon_sym_LPAREN] = ACTIONS(2494), + [anon_sym_LBRACK] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(2494), + [anon_sym_RBRACE] = ACTIONS(2494), + [anon_sym_STAR] = ACTIONS(2494), + [anon_sym_u8] = ACTIONS(2496), + [anon_sym_i8] = ACTIONS(2496), + [anon_sym_u16] = ACTIONS(2496), + [anon_sym_i16] = ACTIONS(2496), + [anon_sym_u32] = ACTIONS(2496), + [anon_sym_i32] = ACTIONS(2496), + [anon_sym_u64] = ACTIONS(2496), + [anon_sym_i64] = ACTIONS(2496), + [anon_sym_u128] = ACTIONS(2496), + [anon_sym_i128] = ACTIONS(2496), + [anon_sym_isize] = ACTIONS(2496), + [anon_sym_usize] = ACTIONS(2496), + [anon_sym_f32] = ACTIONS(2496), + [anon_sym_f64] = ACTIONS(2496), + [anon_sym_bool] = ACTIONS(2496), + [anon_sym_str] = ACTIONS(2496), + [anon_sym_char] = ACTIONS(2496), + [anon_sym_DASH] = ACTIONS(2494), + [anon_sym_BANG] = ACTIONS(2494), + [anon_sym_AMP] = ACTIONS(2494), + [anon_sym_PIPE] = ACTIONS(2494), + [anon_sym_LT] = ACTIONS(2494), + [anon_sym_DOT_DOT] = ACTIONS(2494), + [anon_sym_COLON_COLON] = ACTIONS(2494), + [anon_sym_POUND] = ACTIONS(2494), + [anon_sym_SQUOTE] = ACTIONS(2496), + [anon_sym_async] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_default] = ACTIONS(2496), + [anon_sym_enum] = ACTIONS(2496), + [anon_sym_fn] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_impl] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_loop] = ACTIONS(2496), + [anon_sym_match] = ACTIONS(2496), + [anon_sym_mod] = ACTIONS(2496), + [anon_sym_pub] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_static] = ACTIONS(2496), + [anon_sym_struct] = ACTIONS(2496), + [anon_sym_trait] = ACTIONS(2496), + [anon_sym_type] = ACTIONS(2496), + [anon_sym_union] = ACTIONS(2496), + [anon_sym_unsafe] = ACTIONS(2496), + [anon_sym_use] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_yield] = ACTIONS(2496), + [anon_sym_move] = ACTIONS(2496), + [anon_sym_try] = ACTIONS(2496), + [sym_integer_literal] = ACTIONS(2494), + [aux_sym_string_literal_token1] = ACTIONS(2494), + [sym_char_literal] = ACTIONS(2494), + [anon_sym_true] = ACTIONS(2496), + [anon_sym_false] = ACTIONS(2496), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2496), + [sym_super] = ACTIONS(2496), + [sym_crate] = ACTIONS(2496), + [sym_metavariable] = ACTIONS(2494), + [sym__raw_string_literal_start] = ACTIONS(2494), + [sym_float_literal] = ACTIONS(2494), }, - [667] = { - [sym_line_comment] = STATE(667), - [sym_block_comment] = STATE(667), - [ts_builtin_sym_end] = ACTIONS(2500), - [sym_identifier] = ACTIONS(2502), - [anon_sym_SEMI] = ACTIONS(2500), - [anon_sym_macro_rules_BANG] = ACTIONS(2500), - [anon_sym_LPAREN] = ACTIONS(2500), - [anon_sym_LBRACK] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(2500), - [anon_sym_RBRACE] = ACTIONS(2500), - [anon_sym_STAR] = ACTIONS(2500), - [anon_sym_u8] = ACTIONS(2502), - [anon_sym_i8] = ACTIONS(2502), - [anon_sym_u16] = ACTIONS(2502), - [anon_sym_i16] = ACTIONS(2502), - [anon_sym_u32] = ACTIONS(2502), - [anon_sym_i32] = ACTIONS(2502), - [anon_sym_u64] = ACTIONS(2502), - [anon_sym_i64] = ACTIONS(2502), - [anon_sym_u128] = ACTIONS(2502), - [anon_sym_i128] = ACTIONS(2502), - [anon_sym_isize] = ACTIONS(2502), - [anon_sym_usize] = ACTIONS(2502), - [anon_sym_f32] = ACTIONS(2502), - [anon_sym_f64] = ACTIONS(2502), - [anon_sym_bool] = ACTIONS(2502), - [anon_sym_str] = ACTIONS(2502), - [anon_sym_char] = ACTIONS(2502), - [anon_sym_DASH] = ACTIONS(2500), - [anon_sym_BANG] = ACTIONS(2500), - [anon_sym_AMP] = ACTIONS(2500), - [anon_sym_PIPE] = ACTIONS(2500), - [anon_sym_LT] = ACTIONS(2500), - [anon_sym_DOT_DOT] = ACTIONS(2500), - [anon_sym_COLON_COLON] = ACTIONS(2500), - [anon_sym_POUND] = ACTIONS(2500), - [anon_sym_SQUOTE] = ACTIONS(2502), - [anon_sym_async] = ACTIONS(2502), - [anon_sym_break] = ACTIONS(2502), - [anon_sym_const] = ACTIONS(2502), - [anon_sym_continue] = ACTIONS(2502), - [anon_sym_default] = ACTIONS(2502), - [anon_sym_enum] = ACTIONS(2502), - [anon_sym_fn] = ACTIONS(2502), - [anon_sym_for] = ACTIONS(2502), - [anon_sym_if] = ACTIONS(2502), - [anon_sym_impl] = ACTIONS(2502), - [anon_sym_let] = ACTIONS(2502), - [anon_sym_loop] = ACTIONS(2502), - [anon_sym_match] = ACTIONS(2502), - [anon_sym_mod] = ACTIONS(2502), - [anon_sym_pub] = ACTIONS(2502), - [anon_sym_return] = ACTIONS(2502), - [anon_sym_static] = ACTIONS(2502), - [anon_sym_struct] = ACTIONS(2502), - [anon_sym_trait] = ACTIONS(2502), - [anon_sym_type] = ACTIONS(2502), - [anon_sym_union] = ACTIONS(2502), - [anon_sym_unsafe] = ACTIONS(2502), - [anon_sym_use] = ACTIONS(2502), - [anon_sym_while] = ACTIONS(2502), - [anon_sym_extern] = ACTIONS(2502), - [anon_sym_yield] = ACTIONS(2502), - [anon_sym_move] = ACTIONS(2502), - [anon_sym_try] = ACTIONS(2502), - [sym_integer_literal] = ACTIONS(2500), - [aux_sym_string_literal_token1] = ACTIONS(2500), - [sym_char_literal] = ACTIONS(2500), - [anon_sym_true] = ACTIONS(2502), - [anon_sym_false] = ACTIONS(2502), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2502), - [sym_super] = ACTIONS(2502), - [sym_crate] = ACTIONS(2502), - [sym_metavariable] = ACTIONS(2500), - [sym__raw_string_literal_start] = ACTIONS(2500), - [sym_float_literal] = ACTIONS(2500), + [683] = { + [sym_line_comment] = STATE(683), + [sym_block_comment] = STATE(683), + [ts_builtin_sym_end] = ACTIONS(2498), + [sym_identifier] = ACTIONS(2500), + [anon_sym_SEMI] = ACTIONS(2498), + [anon_sym_macro_rules_BANG] = ACTIONS(2498), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_LBRACK] = ACTIONS(2498), + [anon_sym_LBRACE] = ACTIONS(2498), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_STAR] = ACTIONS(2498), + [anon_sym_u8] = ACTIONS(2500), + [anon_sym_i8] = ACTIONS(2500), + [anon_sym_u16] = ACTIONS(2500), + [anon_sym_i16] = ACTIONS(2500), + [anon_sym_u32] = ACTIONS(2500), + [anon_sym_i32] = ACTIONS(2500), + [anon_sym_u64] = ACTIONS(2500), + [anon_sym_i64] = ACTIONS(2500), + [anon_sym_u128] = ACTIONS(2500), + [anon_sym_i128] = ACTIONS(2500), + [anon_sym_isize] = ACTIONS(2500), + [anon_sym_usize] = ACTIONS(2500), + [anon_sym_f32] = ACTIONS(2500), + [anon_sym_f64] = ACTIONS(2500), + [anon_sym_bool] = ACTIONS(2500), + [anon_sym_str] = ACTIONS(2500), + [anon_sym_char] = ACTIONS(2500), + [anon_sym_DASH] = ACTIONS(2498), + [anon_sym_BANG] = ACTIONS(2498), + [anon_sym_AMP] = ACTIONS(2498), + [anon_sym_PIPE] = ACTIONS(2498), + [anon_sym_LT] = ACTIONS(2498), + [anon_sym_DOT_DOT] = ACTIONS(2498), + [anon_sym_COLON_COLON] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(2498), + [anon_sym_SQUOTE] = ACTIONS(2500), + [anon_sym_async] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_const] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_default] = ACTIONS(2500), + [anon_sym_enum] = ACTIONS(2500), + [anon_sym_fn] = ACTIONS(2500), + [anon_sym_for] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_impl] = ACTIONS(2500), + [anon_sym_let] = ACTIONS(2500), + [anon_sym_loop] = ACTIONS(2500), + [anon_sym_match] = ACTIONS(2500), + [anon_sym_mod] = ACTIONS(2500), + [anon_sym_pub] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_struct] = ACTIONS(2500), + [anon_sym_trait] = ACTIONS(2500), + [anon_sym_type] = ACTIONS(2500), + [anon_sym_union] = ACTIONS(2500), + [anon_sym_unsafe] = ACTIONS(2500), + [anon_sym_use] = ACTIONS(2500), + [anon_sym_while] = ACTIONS(2500), + [anon_sym_extern] = ACTIONS(2500), + [anon_sym_yield] = ACTIONS(2500), + [anon_sym_move] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2500), + [sym_integer_literal] = ACTIONS(2498), + [aux_sym_string_literal_token1] = ACTIONS(2498), + [sym_char_literal] = ACTIONS(2498), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2500), + [sym_super] = ACTIONS(2500), + [sym_crate] = ACTIONS(2500), + [sym_metavariable] = ACTIONS(2498), + [sym__raw_string_literal_start] = ACTIONS(2498), + [sym_float_literal] = ACTIONS(2498), }, - [668] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3599), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2139), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3323), - [sym_generic_type_with_turbofish] = STATE(3349), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3208), - [sym_line_comment] = STATE(668), - [sym_block_comment] = STATE(668), - [aux_sym_declaration_list_repeat1] = STATE(629), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(2504), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1890), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1902), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1918), + [684] = { + [sym_line_comment] = STATE(684), + [sym_block_comment] = STATE(684), + [ts_builtin_sym_end] = ACTIONS(2502), + [sym_identifier] = ACTIONS(2504), + [anon_sym_SEMI] = ACTIONS(2502), + [anon_sym_macro_rules_BANG] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_LBRACK] = ACTIONS(2502), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_RBRACE] = ACTIONS(2502), + [anon_sym_STAR] = ACTIONS(2502), + [anon_sym_u8] = ACTIONS(2504), + [anon_sym_i8] = ACTIONS(2504), + [anon_sym_u16] = ACTIONS(2504), + [anon_sym_i16] = ACTIONS(2504), + [anon_sym_u32] = ACTIONS(2504), + [anon_sym_i32] = ACTIONS(2504), + [anon_sym_u64] = ACTIONS(2504), + [anon_sym_i64] = ACTIONS(2504), + [anon_sym_u128] = ACTIONS(2504), + [anon_sym_i128] = ACTIONS(2504), + [anon_sym_isize] = ACTIONS(2504), + [anon_sym_usize] = ACTIONS(2504), + [anon_sym_f32] = ACTIONS(2504), + [anon_sym_f64] = ACTIONS(2504), + [anon_sym_bool] = ACTIONS(2504), + [anon_sym_str] = ACTIONS(2504), + [anon_sym_char] = ACTIONS(2504), + [anon_sym_DASH] = ACTIONS(2502), + [anon_sym_BANG] = ACTIONS(2502), + [anon_sym_AMP] = ACTIONS(2502), + [anon_sym_PIPE] = ACTIONS(2502), + [anon_sym_LT] = ACTIONS(2502), + [anon_sym_DOT_DOT] = ACTIONS(2502), + [anon_sym_COLON_COLON] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(2502), + [anon_sym_SQUOTE] = ACTIONS(2504), + [anon_sym_async] = ACTIONS(2504), + [anon_sym_break] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_continue] = ACTIONS(2504), + [anon_sym_default] = ACTIONS(2504), + [anon_sym_enum] = ACTIONS(2504), + [anon_sym_fn] = ACTIONS(2504), + [anon_sym_for] = ACTIONS(2504), + [anon_sym_if] = ACTIONS(2504), + [anon_sym_impl] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_loop] = ACTIONS(2504), + [anon_sym_match] = ACTIONS(2504), + [anon_sym_mod] = ACTIONS(2504), + [anon_sym_pub] = ACTIONS(2504), + [anon_sym_return] = ACTIONS(2504), + [anon_sym_static] = ACTIONS(2504), + [anon_sym_struct] = ACTIONS(2504), + [anon_sym_trait] = ACTIONS(2504), + [anon_sym_type] = ACTIONS(2504), + [anon_sym_union] = ACTIONS(2504), + [anon_sym_unsafe] = ACTIONS(2504), + [anon_sym_use] = ACTIONS(2504), + [anon_sym_while] = ACTIONS(2504), + [anon_sym_extern] = ACTIONS(2504), + [anon_sym_yield] = ACTIONS(2504), + [anon_sym_move] = ACTIONS(2504), + [anon_sym_try] = ACTIONS(2504), + [sym_integer_literal] = ACTIONS(2502), + [aux_sym_string_literal_token1] = ACTIONS(2502), + [sym_char_literal] = ACTIONS(2502), + [anon_sym_true] = ACTIONS(2504), + [anon_sym_false] = ACTIONS(2504), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2504), + [sym_super] = ACTIONS(2504), + [sym_crate] = ACTIONS(2504), + [sym_metavariable] = ACTIONS(2502), + [sym__raw_string_literal_start] = ACTIONS(2502), + [sym_float_literal] = ACTIONS(2502), }, - [669] = { - [sym_line_comment] = STATE(669), - [sym_block_comment] = STATE(669), + [685] = { + [sym_line_comment] = STATE(685), + [sym_block_comment] = STATE(685), [ts_builtin_sym_end] = ACTIONS(2506), [sym_identifier] = ACTIONS(2508), [anon_sym_SEMI] = ACTIONS(2506), @@ -83784,9 +85085,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2506), [sym_float_literal] = ACTIONS(2506), }, - [670] = { - [sym_line_comment] = STATE(670), - [sym_block_comment] = STATE(670), + [686] = { + [sym_line_comment] = STATE(686), + [sym_block_comment] = STATE(686), [ts_builtin_sym_end] = ACTIONS(2510), [sym_identifier] = ACTIONS(2512), [anon_sym_SEMI] = ACTIONS(2510), @@ -83864,9 +85165,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2510), [sym_float_literal] = ACTIONS(2510), }, - [671] = { - [sym_line_comment] = STATE(671), - [sym_block_comment] = STATE(671), + [687] = { + [sym_line_comment] = STATE(687), + [sym_block_comment] = STATE(687), [ts_builtin_sym_end] = ACTIONS(2514), [sym_identifier] = ACTIONS(2516), [anon_sym_SEMI] = ACTIONS(2514), @@ -83944,9 +85245,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2514), [sym_float_literal] = ACTIONS(2514), }, - [672] = { - [sym_line_comment] = STATE(672), - [sym_block_comment] = STATE(672), + [688] = { + [sym_line_comment] = STATE(688), + [sym_block_comment] = STATE(688), [ts_builtin_sym_end] = ACTIONS(2518), [sym_identifier] = ACTIONS(2520), [anon_sym_SEMI] = ACTIONS(2518), @@ -84024,9 +85325,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2518), [sym_float_literal] = ACTIONS(2518), }, - [673] = { - [sym_line_comment] = STATE(673), - [sym_block_comment] = STATE(673), + [689] = { + [sym_line_comment] = STATE(689), + [sym_block_comment] = STATE(689), [ts_builtin_sym_end] = ACTIONS(2522), [sym_identifier] = ACTIONS(2524), [anon_sym_SEMI] = ACTIONS(2522), @@ -84104,3769 +85405,2569 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2522), [sym_float_literal] = ACTIONS(2522), }, - [674] = { - [sym_line_comment] = STATE(674), - [sym_block_comment] = STATE(674), - [ts_builtin_sym_end] = ACTIONS(2526), - [sym_identifier] = ACTIONS(2528), - [anon_sym_SEMI] = ACTIONS(2526), - [anon_sym_macro_rules_BANG] = ACTIONS(2526), - [anon_sym_LPAREN] = ACTIONS(2526), - [anon_sym_LBRACK] = ACTIONS(2526), - [anon_sym_LBRACE] = ACTIONS(2526), - [anon_sym_RBRACE] = ACTIONS(2526), - [anon_sym_STAR] = ACTIONS(2526), - [anon_sym_u8] = ACTIONS(2528), - [anon_sym_i8] = ACTIONS(2528), - [anon_sym_u16] = ACTIONS(2528), - [anon_sym_i16] = ACTIONS(2528), - [anon_sym_u32] = ACTIONS(2528), - [anon_sym_i32] = ACTIONS(2528), - [anon_sym_u64] = ACTIONS(2528), - [anon_sym_i64] = ACTIONS(2528), - [anon_sym_u128] = ACTIONS(2528), - [anon_sym_i128] = ACTIONS(2528), - [anon_sym_isize] = ACTIONS(2528), - [anon_sym_usize] = ACTIONS(2528), - [anon_sym_f32] = ACTIONS(2528), - [anon_sym_f64] = ACTIONS(2528), - [anon_sym_bool] = ACTIONS(2528), - [anon_sym_str] = ACTIONS(2528), - [anon_sym_char] = ACTIONS(2528), - [anon_sym_DASH] = ACTIONS(2526), - [anon_sym_BANG] = ACTIONS(2526), - [anon_sym_AMP] = ACTIONS(2526), - [anon_sym_PIPE] = ACTIONS(2526), - [anon_sym_LT] = ACTIONS(2526), - [anon_sym_DOT_DOT] = ACTIONS(2526), - [anon_sym_COLON_COLON] = ACTIONS(2526), - [anon_sym_POUND] = ACTIONS(2526), - [anon_sym_SQUOTE] = ACTIONS(2528), - [anon_sym_async] = ACTIONS(2528), - [anon_sym_break] = ACTIONS(2528), - [anon_sym_const] = ACTIONS(2528), - [anon_sym_continue] = ACTIONS(2528), - [anon_sym_default] = ACTIONS(2528), - [anon_sym_enum] = ACTIONS(2528), - [anon_sym_fn] = ACTIONS(2528), - [anon_sym_for] = ACTIONS(2528), - [anon_sym_if] = ACTIONS(2528), - [anon_sym_impl] = ACTIONS(2528), - [anon_sym_let] = ACTIONS(2528), - [anon_sym_loop] = ACTIONS(2528), - [anon_sym_match] = ACTIONS(2528), - [anon_sym_mod] = ACTIONS(2528), - [anon_sym_pub] = ACTIONS(2528), - [anon_sym_return] = ACTIONS(2528), - [anon_sym_static] = ACTIONS(2528), - [anon_sym_struct] = ACTIONS(2528), - [anon_sym_trait] = ACTIONS(2528), - [anon_sym_type] = ACTIONS(2528), - [anon_sym_union] = ACTIONS(2528), - [anon_sym_unsafe] = ACTIONS(2528), - [anon_sym_use] = ACTIONS(2528), - [anon_sym_while] = ACTIONS(2528), - [anon_sym_extern] = ACTIONS(2528), - [anon_sym_yield] = ACTIONS(2528), - [anon_sym_move] = ACTIONS(2528), - [anon_sym_try] = ACTIONS(2528), - [sym_integer_literal] = ACTIONS(2526), - [aux_sym_string_literal_token1] = ACTIONS(2526), - [sym_char_literal] = ACTIONS(2526), - [anon_sym_true] = ACTIONS(2528), - [anon_sym_false] = ACTIONS(2528), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2528), - [sym_super] = ACTIONS(2528), - [sym_crate] = ACTIONS(2528), - [sym_metavariable] = ACTIONS(2526), - [sym__raw_string_literal_start] = ACTIONS(2526), - [sym_float_literal] = ACTIONS(2526), - }, - [675] = { - [sym_line_comment] = STATE(675), - [sym_block_comment] = STATE(675), - [ts_builtin_sym_end] = ACTIONS(2530), - [sym_identifier] = ACTIONS(2532), - [anon_sym_SEMI] = ACTIONS(2530), - [anon_sym_macro_rules_BANG] = ACTIONS(2530), - [anon_sym_LPAREN] = ACTIONS(2530), - [anon_sym_LBRACK] = ACTIONS(2530), - [anon_sym_LBRACE] = ACTIONS(2530), - [anon_sym_RBRACE] = ACTIONS(2530), - [anon_sym_STAR] = ACTIONS(2530), - [anon_sym_u8] = ACTIONS(2532), - [anon_sym_i8] = ACTIONS(2532), - [anon_sym_u16] = ACTIONS(2532), - [anon_sym_i16] = ACTIONS(2532), - [anon_sym_u32] = ACTIONS(2532), - [anon_sym_i32] = ACTIONS(2532), - [anon_sym_u64] = ACTIONS(2532), - [anon_sym_i64] = ACTIONS(2532), - [anon_sym_u128] = ACTIONS(2532), - [anon_sym_i128] = ACTIONS(2532), - [anon_sym_isize] = ACTIONS(2532), - [anon_sym_usize] = ACTIONS(2532), - [anon_sym_f32] = ACTIONS(2532), - [anon_sym_f64] = ACTIONS(2532), - [anon_sym_bool] = ACTIONS(2532), - [anon_sym_str] = ACTIONS(2532), - [anon_sym_char] = ACTIONS(2532), - [anon_sym_DASH] = ACTIONS(2530), - [anon_sym_BANG] = ACTIONS(2530), - [anon_sym_AMP] = ACTIONS(2530), - [anon_sym_PIPE] = ACTIONS(2530), - [anon_sym_LT] = ACTIONS(2530), - [anon_sym_DOT_DOT] = ACTIONS(2530), - [anon_sym_COLON_COLON] = ACTIONS(2530), - [anon_sym_POUND] = ACTIONS(2530), - [anon_sym_SQUOTE] = ACTIONS(2532), - [anon_sym_async] = ACTIONS(2532), - [anon_sym_break] = ACTIONS(2532), - [anon_sym_const] = ACTIONS(2532), - [anon_sym_continue] = ACTIONS(2532), - [anon_sym_default] = ACTIONS(2532), - [anon_sym_enum] = ACTIONS(2532), - [anon_sym_fn] = ACTIONS(2532), - [anon_sym_for] = ACTIONS(2532), - [anon_sym_if] = ACTIONS(2532), - [anon_sym_impl] = ACTIONS(2532), - [anon_sym_let] = ACTIONS(2532), - [anon_sym_loop] = ACTIONS(2532), - [anon_sym_match] = ACTIONS(2532), - [anon_sym_mod] = ACTIONS(2532), - [anon_sym_pub] = ACTIONS(2532), - [anon_sym_return] = ACTIONS(2532), - [anon_sym_static] = ACTIONS(2532), - [anon_sym_struct] = ACTIONS(2532), - [anon_sym_trait] = ACTIONS(2532), - [anon_sym_type] = ACTIONS(2532), - [anon_sym_union] = ACTIONS(2532), - [anon_sym_unsafe] = ACTIONS(2532), - [anon_sym_use] = ACTIONS(2532), - [anon_sym_while] = ACTIONS(2532), - [anon_sym_extern] = ACTIONS(2532), - [anon_sym_yield] = ACTIONS(2532), - [anon_sym_move] = ACTIONS(2532), - [anon_sym_try] = ACTIONS(2532), - [sym_integer_literal] = ACTIONS(2530), - [aux_sym_string_literal_token1] = ACTIONS(2530), - [sym_char_literal] = ACTIONS(2530), - [anon_sym_true] = ACTIONS(2532), - [anon_sym_false] = ACTIONS(2532), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2532), - [sym_super] = ACTIONS(2532), - [sym_crate] = ACTIONS(2532), - [sym_metavariable] = ACTIONS(2530), - [sym__raw_string_literal_start] = ACTIONS(2530), - [sym_float_literal] = ACTIONS(2530), - }, - [676] = { - [sym_line_comment] = STATE(676), - [sym_block_comment] = STATE(676), - [ts_builtin_sym_end] = ACTIONS(2534), - [sym_identifier] = ACTIONS(2536), - [anon_sym_SEMI] = ACTIONS(2534), - [anon_sym_macro_rules_BANG] = ACTIONS(2534), - [anon_sym_LPAREN] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2534), - [anon_sym_LBRACE] = ACTIONS(2534), - [anon_sym_RBRACE] = ACTIONS(2534), - [anon_sym_STAR] = ACTIONS(2534), - [anon_sym_u8] = ACTIONS(2536), - [anon_sym_i8] = ACTIONS(2536), - [anon_sym_u16] = ACTIONS(2536), - [anon_sym_i16] = ACTIONS(2536), - [anon_sym_u32] = ACTIONS(2536), - [anon_sym_i32] = ACTIONS(2536), - [anon_sym_u64] = ACTIONS(2536), - [anon_sym_i64] = ACTIONS(2536), - [anon_sym_u128] = ACTIONS(2536), - [anon_sym_i128] = ACTIONS(2536), - [anon_sym_isize] = ACTIONS(2536), - [anon_sym_usize] = ACTIONS(2536), - [anon_sym_f32] = ACTIONS(2536), - [anon_sym_f64] = ACTIONS(2536), - [anon_sym_bool] = ACTIONS(2536), - [anon_sym_str] = ACTIONS(2536), - [anon_sym_char] = ACTIONS(2536), - [anon_sym_DASH] = ACTIONS(2534), - [anon_sym_BANG] = ACTIONS(2534), - [anon_sym_AMP] = ACTIONS(2534), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_LT] = ACTIONS(2534), - [anon_sym_DOT_DOT] = ACTIONS(2534), - [anon_sym_COLON_COLON] = ACTIONS(2534), - [anon_sym_POUND] = ACTIONS(2534), - [anon_sym_SQUOTE] = ACTIONS(2536), - [anon_sym_async] = ACTIONS(2536), - [anon_sym_break] = ACTIONS(2536), - [anon_sym_const] = ACTIONS(2536), - [anon_sym_continue] = ACTIONS(2536), - [anon_sym_default] = ACTIONS(2536), - [anon_sym_enum] = ACTIONS(2536), - [anon_sym_fn] = ACTIONS(2536), - [anon_sym_for] = ACTIONS(2536), - [anon_sym_if] = ACTIONS(2536), - [anon_sym_impl] = ACTIONS(2536), - [anon_sym_let] = ACTIONS(2536), - [anon_sym_loop] = ACTIONS(2536), - [anon_sym_match] = ACTIONS(2536), - [anon_sym_mod] = ACTIONS(2536), - [anon_sym_pub] = ACTIONS(2536), - [anon_sym_return] = ACTIONS(2536), - [anon_sym_static] = ACTIONS(2536), - [anon_sym_struct] = ACTIONS(2536), - [anon_sym_trait] = ACTIONS(2536), - [anon_sym_type] = ACTIONS(2536), - [anon_sym_union] = ACTIONS(2536), - [anon_sym_unsafe] = ACTIONS(2536), - [anon_sym_use] = ACTIONS(2536), - [anon_sym_while] = ACTIONS(2536), - [anon_sym_extern] = ACTIONS(2536), - [anon_sym_yield] = ACTIONS(2536), - [anon_sym_move] = ACTIONS(2536), - [anon_sym_try] = ACTIONS(2536), - [sym_integer_literal] = ACTIONS(2534), - [aux_sym_string_literal_token1] = ACTIONS(2534), - [sym_char_literal] = ACTIONS(2534), - [anon_sym_true] = ACTIONS(2536), - [anon_sym_false] = ACTIONS(2536), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2536), - [sym_super] = ACTIONS(2536), - [sym_crate] = ACTIONS(2536), - [sym_metavariable] = ACTIONS(2534), - [sym__raw_string_literal_start] = ACTIONS(2534), - [sym_float_literal] = ACTIONS(2534), - }, - [677] = { - [sym_line_comment] = STATE(677), - [sym_block_comment] = STATE(677), - [ts_builtin_sym_end] = ACTIONS(2538), - [sym_identifier] = ACTIONS(2540), - [anon_sym_SEMI] = ACTIONS(2538), - [anon_sym_macro_rules_BANG] = ACTIONS(2538), - [anon_sym_LPAREN] = ACTIONS(2538), - [anon_sym_LBRACK] = ACTIONS(2538), - [anon_sym_LBRACE] = ACTIONS(2538), - [anon_sym_RBRACE] = ACTIONS(2538), - [anon_sym_STAR] = ACTIONS(2538), - [anon_sym_u8] = ACTIONS(2540), - [anon_sym_i8] = ACTIONS(2540), - [anon_sym_u16] = ACTIONS(2540), - [anon_sym_i16] = ACTIONS(2540), - [anon_sym_u32] = ACTIONS(2540), - [anon_sym_i32] = ACTIONS(2540), - [anon_sym_u64] = ACTIONS(2540), - [anon_sym_i64] = ACTIONS(2540), - [anon_sym_u128] = ACTIONS(2540), - [anon_sym_i128] = ACTIONS(2540), - [anon_sym_isize] = ACTIONS(2540), - [anon_sym_usize] = ACTIONS(2540), - [anon_sym_f32] = ACTIONS(2540), - [anon_sym_f64] = ACTIONS(2540), - [anon_sym_bool] = ACTIONS(2540), - [anon_sym_str] = ACTIONS(2540), - [anon_sym_char] = ACTIONS(2540), - [anon_sym_DASH] = ACTIONS(2538), - [anon_sym_BANG] = ACTIONS(2538), - [anon_sym_AMP] = ACTIONS(2538), - [anon_sym_PIPE] = ACTIONS(2538), - [anon_sym_LT] = ACTIONS(2538), - [anon_sym_DOT_DOT] = ACTIONS(2538), - [anon_sym_COLON_COLON] = ACTIONS(2538), - [anon_sym_POUND] = ACTIONS(2538), - [anon_sym_SQUOTE] = ACTIONS(2540), - [anon_sym_async] = ACTIONS(2540), - [anon_sym_break] = ACTIONS(2540), - [anon_sym_const] = ACTIONS(2540), - [anon_sym_continue] = ACTIONS(2540), - [anon_sym_default] = ACTIONS(2540), - [anon_sym_enum] = ACTIONS(2540), - [anon_sym_fn] = ACTIONS(2540), - [anon_sym_for] = ACTIONS(2540), - [anon_sym_if] = ACTIONS(2540), - [anon_sym_impl] = ACTIONS(2540), - [anon_sym_let] = ACTIONS(2540), - [anon_sym_loop] = ACTIONS(2540), - [anon_sym_match] = ACTIONS(2540), - [anon_sym_mod] = ACTIONS(2540), - [anon_sym_pub] = ACTIONS(2540), - [anon_sym_return] = ACTIONS(2540), - [anon_sym_static] = ACTIONS(2540), - [anon_sym_struct] = ACTIONS(2540), - [anon_sym_trait] = ACTIONS(2540), - [anon_sym_type] = ACTIONS(2540), - [anon_sym_union] = ACTIONS(2540), - [anon_sym_unsafe] = ACTIONS(2540), - [anon_sym_use] = ACTIONS(2540), - [anon_sym_while] = ACTIONS(2540), - [anon_sym_extern] = ACTIONS(2540), - [anon_sym_yield] = ACTIONS(2540), - [anon_sym_move] = ACTIONS(2540), - [anon_sym_try] = ACTIONS(2540), - [sym_integer_literal] = ACTIONS(2538), - [aux_sym_string_literal_token1] = ACTIONS(2538), - [sym_char_literal] = ACTIONS(2538), - [anon_sym_true] = ACTIONS(2540), - [anon_sym_false] = ACTIONS(2540), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2540), - [sym_super] = ACTIONS(2540), - [sym_crate] = ACTIONS(2540), - [sym_metavariable] = ACTIONS(2538), - [sym__raw_string_literal_start] = ACTIONS(2538), - [sym_float_literal] = ACTIONS(2538), - }, - [678] = { - [sym_line_comment] = STATE(678), - [sym_block_comment] = STATE(678), - [ts_builtin_sym_end] = ACTIONS(2542), - [sym_identifier] = ACTIONS(2544), - [anon_sym_SEMI] = ACTIONS(2542), - [anon_sym_macro_rules_BANG] = ACTIONS(2542), - [anon_sym_LPAREN] = ACTIONS(2542), - [anon_sym_LBRACK] = ACTIONS(2542), - [anon_sym_LBRACE] = ACTIONS(2542), - [anon_sym_RBRACE] = ACTIONS(2542), - [anon_sym_STAR] = ACTIONS(2542), - [anon_sym_u8] = ACTIONS(2544), - [anon_sym_i8] = ACTIONS(2544), - [anon_sym_u16] = ACTIONS(2544), - [anon_sym_i16] = ACTIONS(2544), - [anon_sym_u32] = ACTIONS(2544), - [anon_sym_i32] = ACTIONS(2544), - [anon_sym_u64] = ACTIONS(2544), - [anon_sym_i64] = ACTIONS(2544), - [anon_sym_u128] = ACTIONS(2544), - [anon_sym_i128] = ACTIONS(2544), - [anon_sym_isize] = ACTIONS(2544), - [anon_sym_usize] = ACTIONS(2544), - [anon_sym_f32] = ACTIONS(2544), - [anon_sym_f64] = ACTIONS(2544), - [anon_sym_bool] = ACTIONS(2544), - [anon_sym_str] = ACTIONS(2544), - [anon_sym_char] = ACTIONS(2544), - [anon_sym_DASH] = ACTIONS(2542), - [anon_sym_BANG] = ACTIONS(2542), - [anon_sym_AMP] = ACTIONS(2542), - [anon_sym_PIPE] = ACTIONS(2542), - [anon_sym_LT] = ACTIONS(2542), - [anon_sym_DOT_DOT] = ACTIONS(2542), - [anon_sym_COLON_COLON] = ACTIONS(2542), - [anon_sym_POUND] = ACTIONS(2542), - [anon_sym_SQUOTE] = ACTIONS(2544), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_break] = ACTIONS(2544), - [anon_sym_const] = ACTIONS(2544), - [anon_sym_continue] = ACTIONS(2544), - [anon_sym_default] = ACTIONS(2544), - [anon_sym_enum] = ACTIONS(2544), - [anon_sym_fn] = ACTIONS(2544), - [anon_sym_for] = ACTIONS(2544), - [anon_sym_if] = ACTIONS(2544), - [anon_sym_impl] = ACTIONS(2544), - [anon_sym_let] = ACTIONS(2544), - [anon_sym_loop] = ACTIONS(2544), - [anon_sym_match] = ACTIONS(2544), - [anon_sym_mod] = ACTIONS(2544), - [anon_sym_pub] = ACTIONS(2544), - [anon_sym_return] = ACTIONS(2544), - [anon_sym_static] = ACTIONS(2544), - [anon_sym_struct] = ACTIONS(2544), - [anon_sym_trait] = ACTIONS(2544), - [anon_sym_type] = ACTIONS(2544), - [anon_sym_union] = ACTIONS(2544), - [anon_sym_unsafe] = ACTIONS(2544), - [anon_sym_use] = ACTIONS(2544), - [anon_sym_while] = ACTIONS(2544), - [anon_sym_extern] = ACTIONS(2544), - [anon_sym_yield] = ACTIONS(2544), - [anon_sym_move] = ACTIONS(2544), - [anon_sym_try] = ACTIONS(2544), - [sym_integer_literal] = ACTIONS(2542), - [aux_sym_string_literal_token1] = ACTIONS(2542), - [sym_char_literal] = ACTIONS(2542), - [anon_sym_true] = ACTIONS(2544), - [anon_sym_false] = ACTIONS(2544), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2544), - [sym_super] = ACTIONS(2544), - [sym_crate] = ACTIONS(2544), - [sym_metavariable] = ACTIONS(2542), - [sym__raw_string_literal_start] = ACTIONS(2542), - [sym_float_literal] = ACTIONS(2542), - }, - [679] = { - [sym_line_comment] = STATE(679), - [sym_block_comment] = STATE(679), - [ts_builtin_sym_end] = ACTIONS(2546), - [sym_identifier] = ACTIONS(2548), - [anon_sym_SEMI] = ACTIONS(2546), - [anon_sym_macro_rules_BANG] = ACTIONS(2546), - [anon_sym_LPAREN] = ACTIONS(2546), - [anon_sym_LBRACK] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(2546), - [anon_sym_RBRACE] = ACTIONS(2546), - [anon_sym_STAR] = ACTIONS(2546), - [anon_sym_u8] = ACTIONS(2548), - [anon_sym_i8] = ACTIONS(2548), - [anon_sym_u16] = ACTIONS(2548), - [anon_sym_i16] = ACTIONS(2548), - [anon_sym_u32] = ACTIONS(2548), - [anon_sym_i32] = ACTIONS(2548), - [anon_sym_u64] = ACTIONS(2548), - [anon_sym_i64] = ACTIONS(2548), - [anon_sym_u128] = ACTIONS(2548), - [anon_sym_i128] = ACTIONS(2548), - [anon_sym_isize] = ACTIONS(2548), - [anon_sym_usize] = ACTIONS(2548), - [anon_sym_f32] = ACTIONS(2548), - [anon_sym_f64] = ACTIONS(2548), - [anon_sym_bool] = ACTIONS(2548), - [anon_sym_str] = ACTIONS(2548), - [anon_sym_char] = ACTIONS(2548), - [anon_sym_DASH] = ACTIONS(2546), - [anon_sym_BANG] = ACTIONS(2546), - [anon_sym_AMP] = ACTIONS(2546), - [anon_sym_PIPE] = ACTIONS(2546), - [anon_sym_LT] = ACTIONS(2546), - [anon_sym_DOT_DOT] = ACTIONS(2546), - [anon_sym_COLON_COLON] = ACTIONS(2546), - [anon_sym_POUND] = ACTIONS(2546), - [anon_sym_SQUOTE] = ACTIONS(2548), - [anon_sym_async] = ACTIONS(2548), - [anon_sym_break] = ACTIONS(2548), - [anon_sym_const] = ACTIONS(2548), - [anon_sym_continue] = ACTIONS(2548), - [anon_sym_default] = ACTIONS(2548), - [anon_sym_enum] = ACTIONS(2548), - [anon_sym_fn] = ACTIONS(2548), - [anon_sym_for] = ACTIONS(2548), - [anon_sym_if] = ACTIONS(2548), - [anon_sym_impl] = ACTIONS(2548), - [anon_sym_let] = ACTIONS(2548), - [anon_sym_loop] = ACTIONS(2548), - [anon_sym_match] = ACTIONS(2548), - [anon_sym_mod] = ACTIONS(2548), - [anon_sym_pub] = ACTIONS(2548), - [anon_sym_return] = ACTIONS(2548), - [anon_sym_static] = ACTIONS(2548), - [anon_sym_struct] = ACTIONS(2548), - [anon_sym_trait] = ACTIONS(2548), - [anon_sym_type] = ACTIONS(2548), - [anon_sym_union] = ACTIONS(2548), - [anon_sym_unsafe] = ACTIONS(2548), - [anon_sym_use] = ACTIONS(2548), - [anon_sym_while] = ACTIONS(2548), - [anon_sym_extern] = ACTIONS(2548), - [anon_sym_yield] = ACTIONS(2548), - [anon_sym_move] = ACTIONS(2548), - [anon_sym_try] = ACTIONS(2548), - [sym_integer_literal] = ACTIONS(2546), - [aux_sym_string_literal_token1] = ACTIONS(2546), - [sym_char_literal] = ACTIONS(2546), - [anon_sym_true] = ACTIONS(2548), - [anon_sym_false] = ACTIONS(2548), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2548), - [sym_super] = ACTIONS(2548), - [sym_crate] = ACTIONS(2548), - [sym_metavariable] = ACTIONS(2546), - [sym__raw_string_literal_start] = ACTIONS(2546), - [sym_float_literal] = ACTIONS(2546), - }, - [680] = { - [sym_line_comment] = STATE(680), - [sym_block_comment] = STATE(680), - [ts_builtin_sym_end] = ACTIONS(2550), - [sym_identifier] = ACTIONS(2552), - [anon_sym_SEMI] = ACTIONS(2550), - [anon_sym_macro_rules_BANG] = ACTIONS(2550), - [anon_sym_LPAREN] = ACTIONS(2550), - [anon_sym_LBRACK] = ACTIONS(2550), - [anon_sym_LBRACE] = ACTIONS(2550), - [anon_sym_RBRACE] = ACTIONS(2550), - [anon_sym_STAR] = ACTIONS(2550), - [anon_sym_u8] = ACTIONS(2552), - [anon_sym_i8] = ACTIONS(2552), - [anon_sym_u16] = ACTIONS(2552), - [anon_sym_i16] = ACTIONS(2552), - [anon_sym_u32] = ACTIONS(2552), - [anon_sym_i32] = ACTIONS(2552), - [anon_sym_u64] = ACTIONS(2552), - [anon_sym_i64] = ACTIONS(2552), - [anon_sym_u128] = ACTIONS(2552), - [anon_sym_i128] = ACTIONS(2552), - [anon_sym_isize] = ACTIONS(2552), - [anon_sym_usize] = ACTIONS(2552), - [anon_sym_f32] = ACTIONS(2552), - [anon_sym_f64] = ACTIONS(2552), - [anon_sym_bool] = ACTIONS(2552), - [anon_sym_str] = ACTIONS(2552), - [anon_sym_char] = ACTIONS(2552), - [anon_sym_DASH] = ACTIONS(2550), - [anon_sym_BANG] = ACTIONS(2550), - [anon_sym_AMP] = ACTIONS(2550), - [anon_sym_PIPE] = ACTIONS(2550), - [anon_sym_LT] = ACTIONS(2550), - [anon_sym_DOT_DOT] = ACTIONS(2550), - [anon_sym_COLON_COLON] = ACTIONS(2550), - [anon_sym_POUND] = ACTIONS(2550), - [anon_sym_SQUOTE] = ACTIONS(2552), - [anon_sym_async] = ACTIONS(2552), - [anon_sym_break] = ACTIONS(2552), - [anon_sym_const] = ACTIONS(2552), - [anon_sym_continue] = ACTIONS(2552), - [anon_sym_default] = ACTIONS(2552), - [anon_sym_enum] = ACTIONS(2552), - [anon_sym_fn] = ACTIONS(2552), - [anon_sym_for] = ACTIONS(2552), - [anon_sym_if] = ACTIONS(2552), - [anon_sym_impl] = ACTIONS(2552), - [anon_sym_let] = ACTIONS(2552), - [anon_sym_loop] = ACTIONS(2552), - [anon_sym_match] = ACTIONS(2552), - [anon_sym_mod] = ACTIONS(2552), - [anon_sym_pub] = ACTIONS(2552), - [anon_sym_return] = ACTIONS(2552), - [anon_sym_static] = ACTIONS(2552), - [anon_sym_struct] = ACTIONS(2552), - [anon_sym_trait] = ACTIONS(2552), - [anon_sym_type] = ACTIONS(2552), - [anon_sym_union] = ACTIONS(2552), - [anon_sym_unsafe] = ACTIONS(2552), - [anon_sym_use] = ACTIONS(2552), - [anon_sym_while] = ACTIONS(2552), - [anon_sym_extern] = ACTIONS(2552), - [anon_sym_yield] = ACTIONS(2552), - [anon_sym_move] = ACTIONS(2552), - [anon_sym_try] = ACTIONS(2552), - [sym_integer_literal] = ACTIONS(2550), - [aux_sym_string_literal_token1] = ACTIONS(2550), - [sym_char_literal] = ACTIONS(2550), - [anon_sym_true] = ACTIONS(2552), - [anon_sym_false] = ACTIONS(2552), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2552), - [sym_super] = ACTIONS(2552), - [sym_crate] = ACTIONS(2552), - [sym_metavariable] = ACTIONS(2550), - [sym__raw_string_literal_start] = ACTIONS(2550), - [sym_float_literal] = ACTIONS(2550), - }, - [681] = { - [sym_line_comment] = STATE(681), - [sym_block_comment] = STATE(681), - [ts_builtin_sym_end] = ACTIONS(2554), - [sym_identifier] = ACTIONS(2556), - [anon_sym_SEMI] = ACTIONS(2554), - [anon_sym_macro_rules_BANG] = ACTIONS(2554), - [anon_sym_LPAREN] = ACTIONS(2554), - [anon_sym_LBRACK] = ACTIONS(2554), - [anon_sym_LBRACE] = ACTIONS(2554), - [anon_sym_RBRACE] = ACTIONS(2554), - [anon_sym_STAR] = ACTIONS(2554), - [anon_sym_u8] = ACTIONS(2556), - [anon_sym_i8] = ACTIONS(2556), - [anon_sym_u16] = ACTIONS(2556), - [anon_sym_i16] = ACTIONS(2556), - [anon_sym_u32] = ACTIONS(2556), - [anon_sym_i32] = ACTIONS(2556), - [anon_sym_u64] = ACTIONS(2556), - [anon_sym_i64] = ACTIONS(2556), - [anon_sym_u128] = ACTIONS(2556), - [anon_sym_i128] = ACTIONS(2556), - [anon_sym_isize] = ACTIONS(2556), - [anon_sym_usize] = ACTIONS(2556), - [anon_sym_f32] = ACTIONS(2556), - [anon_sym_f64] = ACTIONS(2556), - [anon_sym_bool] = ACTIONS(2556), - [anon_sym_str] = ACTIONS(2556), - [anon_sym_char] = ACTIONS(2556), - [anon_sym_DASH] = ACTIONS(2554), - [anon_sym_BANG] = ACTIONS(2554), - [anon_sym_AMP] = ACTIONS(2554), - [anon_sym_PIPE] = ACTIONS(2554), - [anon_sym_LT] = ACTIONS(2554), - [anon_sym_DOT_DOT] = ACTIONS(2554), - [anon_sym_COLON_COLON] = ACTIONS(2554), - [anon_sym_POUND] = ACTIONS(2554), - [anon_sym_SQUOTE] = ACTIONS(2556), - [anon_sym_async] = ACTIONS(2556), - [anon_sym_break] = ACTIONS(2556), - [anon_sym_const] = ACTIONS(2556), - [anon_sym_continue] = ACTIONS(2556), - [anon_sym_default] = ACTIONS(2556), - [anon_sym_enum] = ACTIONS(2556), - [anon_sym_fn] = ACTIONS(2556), - [anon_sym_for] = ACTIONS(2556), - [anon_sym_if] = ACTIONS(2556), - [anon_sym_impl] = ACTIONS(2556), - [anon_sym_let] = ACTIONS(2556), - [anon_sym_loop] = ACTIONS(2556), - [anon_sym_match] = ACTIONS(2556), - [anon_sym_mod] = ACTIONS(2556), - [anon_sym_pub] = ACTIONS(2556), - [anon_sym_return] = ACTIONS(2556), - [anon_sym_static] = ACTIONS(2556), - [anon_sym_struct] = ACTIONS(2556), - [anon_sym_trait] = ACTIONS(2556), - [anon_sym_type] = ACTIONS(2556), - [anon_sym_union] = ACTIONS(2556), - [anon_sym_unsafe] = ACTIONS(2556), - [anon_sym_use] = ACTIONS(2556), - [anon_sym_while] = ACTIONS(2556), - [anon_sym_extern] = ACTIONS(2556), - [anon_sym_yield] = ACTIONS(2556), - [anon_sym_move] = ACTIONS(2556), - [anon_sym_try] = ACTIONS(2556), - [sym_integer_literal] = ACTIONS(2554), - [aux_sym_string_literal_token1] = ACTIONS(2554), - [sym_char_literal] = ACTIONS(2554), - [anon_sym_true] = ACTIONS(2556), - [anon_sym_false] = ACTIONS(2556), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2556), - [sym_super] = ACTIONS(2556), - [sym_crate] = ACTIONS(2556), - [sym_metavariable] = ACTIONS(2554), - [sym__raw_string_literal_start] = ACTIONS(2554), - [sym_float_literal] = ACTIONS(2554), - }, - [682] = { - [sym_line_comment] = STATE(682), - [sym_block_comment] = STATE(682), - [ts_builtin_sym_end] = ACTIONS(2558), - [sym_identifier] = ACTIONS(2560), - [anon_sym_SEMI] = ACTIONS(2558), - [anon_sym_macro_rules_BANG] = ACTIONS(2558), - [anon_sym_LPAREN] = ACTIONS(2558), - [anon_sym_LBRACK] = ACTIONS(2558), - [anon_sym_LBRACE] = ACTIONS(2558), - [anon_sym_RBRACE] = ACTIONS(2558), - [anon_sym_STAR] = ACTIONS(2558), - [anon_sym_u8] = ACTIONS(2560), - [anon_sym_i8] = ACTIONS(2560), - [anon_sym_u16] = ACTIONS(2560), - [anon_sym_i16] = ACTIONS(2560), - [anon_sym_u32] = ACTIONS(2560), - [anon_sym_i32] = ACTIONS(2560), - [anon_sym_u64] = ACTIONS(2560), - [anon_sym_i64] = ACTIONS(2560), - [anon_sym_u128] = ACTIONS(2560), - [anon_sym_i128] = ACTIONS(2560), - [anon_sym_isize] = ACTIONS(2560), - [anon_sym_usize] = ACTIONS(2560), - [anon_sym_f32] = ACTIONS(2560), - [anon_sym_f64] = ACTIONS(2560), - [anon_sym_bool] = ACTIONS(2560), - [anon_sym_str] = ACTIONS(2560), - [anon_sym_char] = ACTIONS(2560), - [anon_sym_DASH] = ACTIONS(2558), - [anon_sym_BANG] = ACTIONS(2558), - [anon_sym_AMP] = ACTIONS(2558), - [anon_sym_PIPE] = ACTIONS(2558), - [anon_sym_LT] = ACTIONS(2558), - [anon_sym_DOT_DOT] = ACTIONS(2558), - [anon_sym_COLON_COLON] = ACTIONS(2558), - [anon_sym_POUND] = ACTIONS(2558), - [anon_sym_SQUOTE] = ACTIONS(2560), - [anon_sym_async] = ACTIONS(2560), - [anon_sym_break] = ACTIONS(2560), - [anon_sym_const] = ACTIONS(2560), - [anon_sym_continue] = ACTIONS(2560), - [anon_sym_default] = ACTIONS(2560), - [anon_sym_enum] = ACTIONS(2560), - [anon_sym_fn] = ACTIONS(2560), - [anon_sym_for] = ACTIONS(2560), - [anon_sym_if] = ACTIONS(2560), - [anon_sym_impl] = ACTIONS(2560), - [anon_sym_let] = ACTIONS(2560), - [anon_sym_loop] = ACTIONS(2560), - [anon_sym_match] = ACTIONS(2560), - [anon_sym_mod] = ACTIONS(2560), - [anon_sym_pub] = ACTIONS(2560), - [anon_sym_return] = ACTIONS(2560), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_struct] = ACTIONS(2560), - [anon_sym_trait] = ACTIONS(2560), - [anon_sym_type] = ACTIONS(2560), - [anon_sym_union] = ACTIONS(2560), - [anon_sym_unsafe] = ACTIONS(2560), - [anon_sym_use] = ACTIONS(2560), - [anon_sym_while] = ACTIONS(2560), - [anon_sym_extern] = ACTIONS(2560), - [anon_sym_yield] = ACTIONS(2560), - [anon_sym_move] = ACTIONS(2560), - [anon_sym_try] = ACTIONS(2560), - [sym_integer_literal] = ACTIONS(2558), - [aux_sym_string_literal_token1] = ACTIONS(2558), - [sym_char_literal] = ACTIONS(2558), - [anon_sym_true] = ACTIONS(2560), - [anon_sym_false] = ACTIONS(2560), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2560), - [sym_super] = ACTIONS(2560), - [sym_crate] = ACTIONS(2560), - [sym_metavariable] = ACTIONS(2558), - [sym__raw_string_literal_start] = ACTIONS(2558), - [sym_float_literal] = ACTIONS(2558), - }, - [683] = { - [sym_line_comment] = STATE(683), - [sym_block_comment] = STATE(683), - [ts_builtin_sym_end] = ACTIONS(2562), - [sym_identifier] = ACTIONS(2564), - [anon_sym_SEMI] = ACTIONS(2562), - [anon_sym_macro_rules_BANG] = ACTIONS(2562), - [anon_sym_LPAREN] = ACTIONS(2562), - [anon_sym_LBRACK] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(2562), - [anon_sym_RBRACE] = ACTIONS(2562), - [anon_sym_STAR] = ACTIONS(2562), - [anon_sym_u8] = ACTIONS(2564), - [anon_sym_i8] = ACTIONS(2564), - [anon_sym_u16] = ACTIONS(2564), - [anon_sym_i16] = ACTIONS(2564), - [anon_sym_u32] = ACTIONS(2564), - [anon_sym_i32] = ACTIONS(2564), - [anon_sym_u64] = ACTIONS(2564), - [anon_sym_i64] = ACTIONS(2564), - [anon_sym_u128] = ACTIONS(2564), - [anon_sym_i128] = ACTIONS(2564), - [anon_sym_isize] = ACTIONS(2564), - [anon_sym_usize] = ACTIONS(2564), - [anon_sym_f32] = ACTIONS(2564), - [anon_sym_f64] = ACTIONS(2564), - [anon_sym_bool] = ACTIONS(2564), - [anon_sym_str] = ACTIONS(2564), - [anon_sym_char] = ACTIONS(2564), - [anon_sym_DASH] = ACTIONS(2562), - [anon_sym_BANG] = ACTIONS(2562), - [anon_sym_AMP] = ACTIONS(2562), - [anon_sym_PIPE] = ACTIONS(2562), - [anon_sym_LT] = ACTIONS(2562), - [anon_sym_DOT_DOT] = ACTIONS(2562), - [anon_sym_COLON_COLON] = ACTIONS(2562), - [anon_sym_POUND] = ACTIONS(2562), - [anon_sym_SQUOTE] = ACTIONS(2564), - [anon_sym_async] = ACTIONS(2564), - [anon_sym_break] = ACTIONS(2564), - [anon_sym_const] = ACTIONS(2564), - [anon_sym_continue] = ACTIONS(2564), - [anon_sym_default] = ACTIONS(2564), - [anon_sym_enum] = ACTIONS(2564), - [anon_sym_fn] = ACTIONS(2564), - [anon_sym_for] = ACTIONS(2564), - [anon_sym_if] = ACTIONS(2564), - [anon_sym_impl] = ACTIONS(2564), - [anon_sym_let] = ACTIONS(2564), - [anon_sym_loop] = ACTIONS(2564), - [anon_sym_match] = ACTIONS(2564), - [anon_sym_mod] = ACTIONS(2564), - [anon_sym_pub] = ACTIONS(2564), - [anon_sym_return] = ACTIONS(2564), - [anon_sym_static] = ACTIONS(2564), - [anon_sym_struct] = ACTIONS(2564), - [anon_sym_trait] = ACTIONS(2564), - [anon_sym_type] = ACTIONS(2564), - [anon_sym_union] = ACTIONS(2564), - [anon_sym_unsafe] = ACTIONS(2564), - [anon_sym_use] = ACTIONS(2564), - [anon_sym_while] = ACTIONS(2564), - [anon_sym_extern] = ACTIONS(2564), - [anon_sym_yield] = ACTIONS(2564), - [anon_sym_move] = ACTIONS(2564), - [anon_sym_try] = ACTIONS(2564), - [sym_integer_literal] = ACTIONS(2562), - [aux_sym_string_literal_token1] = ACTIONS(2562), - [sym_char_literal] = ACTIONS(2562), - [anon_sym_true] = ACTIONS(2564), - [anon_sym_false] = ACTIONS(2564), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2564), - [sym_super] = ACTIONS(2564), - [sym_crate] = ACTIONS(2564), - [sym_metavariable] = ACTIONS(2562), - [sym__raw_string_literal_start] = ACTIONS(2562), - [sym_float_literal] = ACTIONS(2562), - }, - [684] = { - [sym_line_comment] = STATE(684), - [sym_block_comment] = STATE(684), - [ts_builtin_sym_end] = ACTIONS(2566), - [sym_identifier] = ACTIONS(2568), - [anon_sym_SEMI] = ACTIONS(2566), - [anon_sym_macro_rules_BANG] = ACTIONS(2566), - [anon_sym_LPAREN] = ACTIONS(2566), - [anon_sym_LBRACK] = ACTIONS(2566), - [anon_sym_LBRACE] = ACTIONS(2566), - [anon_sym_RBRACE] = ACTIONS(2566), - [anon_sym_STAR] = ACTIONS(2566), - [anon_sym_u8] = ACTIONS(2568), - [anon_sym_i8] = ACTIONS(2568), - [anon_sym_u16] = ACTIONS(2568), - [anon_sym_i16] = ACTIONS(2568), - [anon_sym_u32] = ACTIONS(2568), - [anon_sym_i32] = ACTIONS(2568), - [anon_sym_u64] = ACTIONS(2568), - [anon_sym_i64] = ACTIONS(2568), - [anon_sym_u128] = ACTIONS(2568), - [anon_sym_i128] = ACTIONS(2568), - [anon_sym_isize] = ACTIONS(2568), - [anon_sym_usize] = ACTIONS(2568), - [anon_sym_f32] = ACTIONS(2568), - [anon_sym_f64] = ACTIONS(2568), - [anon_sym_bool] = ACTIONS(2568), - [anon_sym_str] = ACTIONS(2568), - [anon_sym_char] = ACTIONS(2568), - [anon_sym_DASH] = ACTIONS(2566), - [anon_sym_BANG] = ACTIONS(2566), - [anon_sym_AMP] = ACTIONS(2566), - [anon_sym_PIPE] = ACTIONS(2566), - [anon_sym_LT] = ACTIONS(2566), - [anon_sym_DOT_DOT] = ACTIONS(2566), - [anon_sym_COLON_COLON] = ACTIONS(2566), - [anon_sym_POUND] = ACTIONS(2566), - [anon_sym_SQUOTE] = ACTIONS(2568), - [anon_sym_async] = ACTIONS(2568), - [anon_sym_break] = ACTIONS(2568), - [anon_sym_const] = ACTIONS(2568), - [anon_sym_continue] = ACTIONS(2568), - [anon_sym_default] = ACTIONS(2568), - [anon_sym_enum] = ACTIONS(2568), - [anon_sym_fn] = ACTIONS(2568), - [anon_sym_for] = ACTIONS(2568), - [anon_sym_if] = ACTIONS(2568), - [anon_sym_impl] = ACTIONS(2568), - [anon_sym_let] = ACTIONS(2568), - [anon_sym_loop] = ACTIONS(2568), - [anon_sym_match] = ACTIONS(2568), - [anon_sym_mod] = ACTIONS(2568), - [anon_sym_pub] = ACTIONS(2568), - [anon_sym_return] = ACTIONS(2568), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_struct] = ACTIONS(2568), - [anon_sym_trait] = ACTIONS(2568), - [anon_sym_type] = ACTIONS(2568), - [anon_sym_union] = ACTIONS(2568), - [anon_sym_unsafe] = ACTIONS(2568), - [anon_sym_use] = ACTIONS(2568), - [anon_sym_while] = ACTIONS(2568), - [anon_sym_extern] = ACTIONS(2568), - [anon_sym_yield] = ACTIONS(2568), - [anon_sym_move] = ACTIONS(2568), - [anon_sym_try] = ACTIONS(2568), - [sym_integer_literal] = ACTIONS(2566), - [aux_sym_string_literal_token1] = ACTIONS(2566), - [sym_char_literal] = ACTIONS(2566), - [anon_sym_true] = ACTIONS(2568), - [anon_sym_false] = ACTIONS(2568), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2568), - [sym_super] = ACTIONS(2568), - [sym_crate] = ACTIONS(2568), - [sym_metavariable] = ACTIONS(2566), - [sym__raw_string_literal_start] = ACTIONS(2566), - [sym_float_literal] = ACTIONS(2566), - }, - [685] = { - [sym_line_comment] = STATE(685), - [sym_block_comment] = STATE(685), - [ts_builtin_sym_end] = ACTIONS(2570), - [sym_identifier] = ACTIONS(2572), - [anon_sym_SEMI] = ACTIONS(2570), - [anon_sym_macro_rules_BANG] = ACTIONS(2570), - [anon_sym_LPAREN] = ACTIONS(2570), - [anon_sym_LBRACK] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2570), - [anon_sym_RBRACE] = ACTIONS(2570), - [anon_sym_STAR] = ACTIONS(2570), - [anon_sym_u8] = ACTIONS(2572), - [anon_sym_i8] = ACTIONS(2572), - [anon_sym_u16] = ACTIONS(2572), - [anon_sym_i16] = ACTIONS(2572), - [anon_sym_u32] = ACTIONS(2572), - [anon_sym_i32] = ACTIONS(2572), - [anon_sym_u64] = ACTIONS(2572), - [anon_sym_i64] = ACTIONS(2572), - [anon_sym_u128] = ACTIONS(2572), - [anon_sym_i128] = ACTIONS(2572), - [anon_sym_isize] = ACTIONS(2572), - [anon_sym_usize] = ACTIONS(2572), - [anon_sym_f32] = ACTIONS(2572), - [anon_sym_f64] = ACTIONS(2572), - [anon_sym_bool] = ACTIONS(2572), - [anon_sym_str] = ACTIONS(2572), - [anon_sym_char] = ACTIONS(2572), - [anon_sym_DASH] = ACTIONS(2570), - [anon_sym_BANG] = ACTIONS(2570), - [anon_sym_AMP] = ACTIONS(2570), - [anon_sym_PIPE] = ACTIONS(2570), - [anon_sym_LT] = ACTIONS(2570), - [anon_sym_DOT_DOT] = ACTIONS(2570), - [anon_sym_COLON_COLON] = ACTIONS(2570), - [anon_sym_POUND] = ACTIONS(2570), - [anon_sym_SQUOTE] = ACTIONS(2572), - [anon_sym_async] = ACTIONS(2572), - [anon_sym_break] = ACTIONS(2572), - [anon_sym_const] = ACTIONS(2572), - [anon_sym_continue] = ACTIONS(2572), - [anon_sym_default] = ACTIONS(2572), - [anon_sym_enum] = ACTIONS(2572), - [anon_sym_fn] = ACTIONS(2572), - [anon_sym_for] = ACTIONS(2572), - [anon_sym_if] = ACTIONS(2572), - [anon_sym_impl] = ACTIONS(2572), - [anon_sym_let] = ACTIONS(2572), - [anon_sym_loop] = ACTIONS(2572), - [anon_sym_match] = ACTIONS(2572), - [anon_sym_mod] = ACTIONS(2572), - [anon_sym_pub] = ACTIONS(2572), - [anon_sym_return] = ACTIONS(2572), - [anon_sym_static] = ACTIONS(2572), - [anon_sym_struct] = ACTIONS(2572), - [anon_sym_trait] = ACTIONS(2572), - [anon_sym_type] = ACTIONS(2572), - [anon_sym_union] = ACTIONS(2572), - [anon_sym_unsafe] = ACTIONS(2572), - [anon_sym_use] = ACTIONS(2572), - [anon_sym_while] = ACTIONS(2572), - [anon_sym_extern] = ACTIONS(2572), - [anon_sym_yield] = ACTIONS(2572), - [anon_sym_move] = ACTIONS(2572), - [anon_sym_try] = ACTIONS(2572), - [sym_integer_literal] = ACTIONS(2570), - [aux_sym_string_literal_token1] = ACTIONS(2570), - [sym_char_literal] = ACTIONS(2570), - [anon_sym_true] = ACTIONS(2572), - [anon_sym_false] = ACTIONS(2572), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2572), - [sym_super] = ACTIONS(2572), - [sym_crate] = ACTIONS(2572), - [sym_metavariable] = ACTIONS(2570), - [sym__raw_string_literal_start] = ACTIONS(2570), - [sym_float_literal] = ACTIONS(2570), - }, - [686] = { - [sym_line_comment] = STATE(686), - [sym_block_comment] = STATE(686), - [ts_builtin_sym_end] = ACTIONS(2574), - [sym_identifier] = ACTIONS(2576), - [anon_sym_SEMI] = ACTIONS(2574), - [anon_sym_macro_rules_BANG] = ACTIONS(2574), - [anon_sym_LPAREN] = ACTIONS(2574), - [anon_sym_LBRACK] = ACTIONS(2574), - [anon_sym_LBRACE] = ACTIONS(2574), - [anon_sym_RBRACE] = ACTIONS(2574), - [anon_sym_STAR] = ACTIONS(2574), - [anon_sym_u8] = ACTIONS(2576), - [anon_sym_i8] = ACTIONS(2576), - [anon_sym_u16] = ACTIONS(2576), - [anon_sym_i16] = ACTIONS(2576), - [anon_sym_u32] = ACTIONS(2576), - [anon_sym_i32] = ACTIONS(2576), - [anon_sym_u64] = ACTIONS(2576), - [anon_sym_i64] = ACTIONS(2576), - [anon_sym_u128] = ACTIONS(2576), - [anon_sym_i128] = ACTIONS(2576), - [anon_sym_isize] = ACTIONS(2576), - [anon_sym_usize] = ACTIONS(2576), - [anon_sym_f32] = ACTIONS(2576), - [anon_sym_f64] = ACTIONS(2576), - [anon_sym_bool] = ACTIONS(2576), - [anon_sym_str] = ACTIONS(2576), - [anon_sym_char] = ACTIONS(2576), - [anon_sym_DASH] = ACTIONS(2574), - [anon_sym_BANG] = ACTIONS(2574), - [anon_sym_AMP] = ACTIONS(2574), - [anon_sym_PIPE] = ACTIONS(2574), - [anon_sym_LT] = ACTIONS(2574), - [anon_sym_DOT_DOT] = ACTIONS(2574), - [anon_sym_COLON_COLON] = ACTIONS(2574), - [anon_sym_POUND] = ACTIONS(2574), - [anon_sym_SQUOTE] = ACTIONS(2576), - [anon_sym_async] = ACTIONS(2576), - [anon_sym_break] = ACTIONS(2576), - [anon_sym_const] = ACTIONS(2576), - [anon_sym_continue] = ACTIONS(2576), - [anon_sym_default] = ACTIONS(2576), - [anon_sym_enum] = ACTIONS(2576), - [anon_sym_fn] = ACTIONS(2576), - [anon_sym_for] = ACTIONS(2576), - [anon_sym_if] = ACTIONS(2576), - [anon_sym_impl] = ACTIONS(2576), - [anon_sym_let] = ACTIONS(2576), - [anon_sym_loop] = ACTIONS(2576), - [anon_sym_match] = ACTIONS(2576), - [anon_sym_mod] = ACTIONS(2576), - [anon_sym_pub] = ACTIONS(2576), - [anon_sym_return] = ACTIONS(2576), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_struct] = ACTIONS(2576), - [anon_sym_trait] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2576), - [anon_sym_union] = ACTIONS(2576), - [anon_sym_unsafe] = ACTIONS(2576), - [anon_sym_use] = ACTIONS(2576), - [anon_sym_while] = ACTIONS(2576), - [anon_sym_extern] = ACTIONS(2576), - [anon_sym_yield] = ACTIONS(2576), - [anon_sym_move] = ACTIONS(2576), - [anon_sym_try] = ACTIONS(2576), - [sym_integer_literal] = ACTIONS(2574), - [aux_sym_string_literal_token1] = ACTIONS(2574), - [sym_char_literal] = ACTIONS(2574), - [anon_sym_true] = ACTIONS(2576), - [anon_sym_false] = ACTIONS(2576), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2576), - [sym_super] = ACTIONS(2576), - [sym_crate] = ACTIONS(2576), - [sym_metavariable] = ACTIONS(2574), - [sym__raw_string_literal_start] = ACTIONS(2574), - [sym_float_literal] = ACTIONS(2574), - }, - [687] = { - [sym_line_comment] = STATE(687), - [sym_block_comment] = STATE(687), - [ts_builtin_sym_end] = ACTIONS(2578), - [sym_identifier] = ACTIONS(2580), - [anon_sym_SEMI] = ACTIONS(2578), - [anon_sym_macro_rules_BANG] = ACTIONS(2578), - [anon_sym_LPAREN] = ACTIONS(2578), - [anon_sym_LBRACK] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(2578), - [anon_sym_RBRACE] = ACTIONS(2578), - [anon_sym_STAR] = ACTIONS(2578), - [anon_sym_u8] = ACTIONS(2580), - [anon_sym_i8] = ACTIONS(2580), - [anon_sym_u16] = ACTIONS(2580), - [anon_sym_i16] = ACTIONS(2580), - [anon_sym_u32] = ACTIONS(2580), - [anon_sym_i32] = ACTIONS(2580), - [anon_sym_u64] = ACTIONS(2580), - [anon_sym_i64] = ACTIONS(2580), - [anon_sym_u128] = ACTIONS(2580), - [anon_sym_i128] = ACTIONS(2580), - [anon_sym_isize] = ACTIONS(2580), - [anon_sym_usize] = ACTIONS(2580), - [anon_sym_f32] = ACTIONS(2580), - [anon_sym_f64] = ACTIONS(2580), - [anon_sym_bool] = ACTIONS(2580), - [anon_sym_str] = ACTIONS(2580), - [anon_sym_char] = ACTIONS(2580), - [anon_sym_DASH] = ACTIONS(2578), - [anon_sym_BANG] = ACTIONS(2578), - [anon_sym_AMP] = ACTIONS(2578), - [anon_sym_PIPE] = ACTIONS(2578), - [anon_sym_LT] = ACTIONS(2578), - [anon_sym_DOT_DOT] = ACTIONS(2578), - [anon_sym_COLON_COLON] = ACTIONS(2578), - [anon_sym_POUND] = ACTIONS(2578), - [anon_sym_SQUOTE] = ACTIONS(2580), - [anon_sym_async] = ACTIONS(2580), - [anon_sym_break] = ACTIONS(2580), - [anon_sym_const] = ACTIONS(2580), - [anon_sym_continue] = ACTIONS(2580), - [anon_sym_default] = ACTIONS(2580), - [anon_sym_enum] = ACTIONS(2580), - [anon_sym_fn] = ACTIONS(2580), - [anon_sym_for] = ACTIONS(2580), - [anon_sym_if] = ACTIONS(2580), - [anon_sym_impl] = ACTIONS(2580), - [anon_sym_let] = ACTIONS(2580), - [anon_sym_loop] = ACTIONS(2580), - [anon_sym_match] = ACTIONS(2580), - [anon_sym_mod] = ACTIONS(2580), - [anon_sym_pub] = ACTIONS(2580), - [anon_sym_return] = ACTIONS(2580), - [anon_sym_static] = ACTIONS(2580), - [anon_sym_struct] = ACTIONS(2580), - [anon_sym_trait] = ACTIONS(2580), - [anon_sym_type] = ACTIONS(2580), - [anon_sym_union] = ACTIONS(2580), - [anon_sym_unsafe] = ACTIONS(2580), - [anon_sym_use] = ACTIONS(2580), - [anon_sym_while] = ACTIONS(2580), - [anon_sym_extern] = ACTIONS(2580), - [anon_sym_yield] = ACTIONS(2580), - [anon_sym_move] = ACTIONS(2580), - [anon_sym_try] = ACTIONS(2580), - [sym_integer_literal] = ACTIONS(2578), - [aux_sym_string_literal_token1] = ACTIONS(2578), - [sym_char_literal] = ACTIONS(2578), - [anon_sym_true] = ACTIONS(2580), - [anon_sym_false] = ACTIONS(2580), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2580), - [sym_super] = ACTIONS(2580), - [sym_crate] = ACTIONS(2580), - [sym_metavariable] = ACTIONS(2578), - [sym__raw_string_literal_start] = ACTIONS(2578), - [sym_float_literal] = ACTIONS(2578), - }, - [688] = { - [sym_line_comment] = STATE(688), - [sym_block_comment] = STATE(688), - [ts_builtin_sym_end] = ACTIONS(2582), - [sym_identifier] = ACTIONS(2584), - [anon_sym_SEMI] = ACTIONS(2582), - [anon_sym_macro_rules_BANG] = ACTIONS(2582), - [anon_sym_LPAREN] = ACTIONS(2582), - [anon_sym_LBRACK] = ACTIONS(2582), - [anon_sym_LBRACE] = ACTIONS(2582), - [anon_sym_RBRACE] = ACTIONS(2582), - [anon_sym_STAR] = ACTIONS(2582), - [anon_sym_u8] = ACTIONS(2584), - [anon_sym_i8] = ACTIONS(2584), - [anon_sym_u16] = ACTIONS(2584), - [anon_sym_i16] = ACTIONS(2584), - [anon_sym_u32] = ACTIONS(2584), - [anon_sym_i32] = ACTIONS(2584), - [anon_sym_u64] = ACTIONS(2584), - [anon_sym_i64] = ACTIONS(2584), - [anon_sym_u128] = ACTIONS(2584), - [anon_sym_i128] = ACTIONS(2584), - [anon_sym_isize] = ACTIONS(2584), - [anon_sym_usize] = ACTIONS(2584), - [anon_sym_f32] = ACTIONS(2584), - [anon_sym_f64] = ACTIONS(2584), - [anon_sym_bool] = ACTIONS(2584), - [anon_sym_str] = ACTIONS(2584), - [anon_sym_char] = ACTIONS(2584), - [anon_sym_DASH] = ACTIONS(2582), - [anon_sym_BANG] = ACTIONS(2582), - [anon_sym_AMP] = ACTIONS(2582), - [anon_sym_PIPE] = ACTIONS(2582), - [anon_sym_LT] = ACTIONS(2582), - [anon_sym_DOT_DOT] = ACTIONS(2582), - [anon_sym_COLON_COLON] = ACTIONS(2582), - [anon_sym_POUND] = ACTIONS(2582), - [anon_sym_SQUOTE] = ACTIONS(2584), - [anon_sym_async] = ACTIONS(2584), - [anon_sym_break] = ACTIONS(2584), - [anon_sym_const] = ACTIONS(2584), - [anon_sym_continue] = ACTIONS(2584), - [anon_sym_default] = ACTIONS(2584), - [anon_sym_enum] = ACTIONS(2584), - [anon_sym_fn] = ACTIONS(2584), - [anon_sym_for] = ACTIONS(2584), - [anon_sym_if] = ACTIONS(2584), - [anon_sym_impl] = ACTIONS(2584), - [anon_sym_let] = ACTIONS(2584), - [anon_sym_loop] = ACTIONS(2584), - [anon_sym_match] = ACTIONS(2584), - [anon_sym_mod] = ACTIONS(2584), - [anon_sym_pub] = ACTIONS(2584), - [anon_sym_return] = ACTIONS(2584), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_struct] = ACTIONS(2584), - [anon_sym_trait] = ACTIONS(2584), - [anon_sym_type] = ACTIONS(2584), - [anon_sym_union] = ACTIONS(2584), - [anon_sym_unsafe] = ACTIONS(2584), - [anon_sym_use] = ACTIONS(2584), - [anon_sym_while] = ACTIONS(2584), - [anon_sym_extern] = ACTIONS(2584), - [anon_sym_yield] = ACTIONS(2584), - [anon_sym_move] = ACTIONS(2584), - [anon_sym_try] = ACTIONS(2584), - [sym_integer_literal] = ACTIONS(2582), - [aux_sym_string_literal_token1] = ACTIONS(2582), - [sym_char_literal] = ACTIONS(2582), - [anon_sym_true] = ACTIONS(2584), - [anon_sym_false] = ACTIONS(2584), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2584), - [sym_super] = ACTIONS(2584), - [sym_crate] = ACTIONS(2584), - [sym_metavariable] = ACTIONS(2582), - [sym__raw_string_literal_start] = ACTIONS(2582), - [sym_float_literal] = ACTIONS(2582), - }, - [689] = { - [sym_line_comment] = STATE(689), - [sym_block_comment] = STATE(689), - [ts_builtin_sym_end] = ACTIONS(2586), - [sym_identifier] = ACTIONS(2588), - [anon_sym_SEMI] = ACTIONS(2586), - [anon_sym_macro_rules_BANG] = ACTIONS(2586), - [anon_sym_LPAREN] = ACTIONS(2586), - [anon_sym_LBRACK] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2586), - [anon_sym_RBRACE] = ACTIONS(2586), - [anon_sym_STAR] = ACTIONS(2586), - [anon_sym_u8] = ACTIONS(2588), - [anon_sym_i8] = ACTIONS(2588), - [anon_sym_u16] = ACTIONS(2588), - [anon_sym_i16] = ACTIONS(2588), - [anon_sym_u32] = ACTIONS(2588), - [anon_sym_i32] = ACTIONS(2588), - [anon_sym_u64] = ACTIONS(2588), - [anon_sym_i64] = ACTIONS(2588), - [anon_sym_u128] = ACTIONS(2588), - [anon_sym_i128] = ACTIONS(2588), - [anon_sym_isize] = ACTIONS(2588), - [anon_sym_usize] = ACTIONS(2588), - [anon_sym_f32] = ACTIONS(2588), - [anon_sym_f64] = ACTIONS(2588), - [anon_sym_bool] = ACTIONS(2588), - [anon_sym_str] = ACTIONS(2588), - [anon_sym_char] = ACTIONS(2588), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_BANG] = ACTIONS(2586), - [anon_sym_AMP] = ACTIONS(2586), - [anon_sym_PIPE] = ACTIONS(2586), - [anon_sym_LT] = ACTIONS(2586), - [anon_sym_DOT_DOT] = ACTIONS(2586), - [anon_sym_COLON_COLON] = ACTIONS(2586), - [anon_sym_POUND] = ACTIONS(2586), - [anon_sym_SQUOTE] = ACTIONS(2588), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_break] = ACTIONS(2588), - [anon_sym_const] = ACTIONS(2588), - [anon_sym_continue] = ACTIONS(2588), - [anon_sym_default] = ACTIONS(2588), - [anon_sym_enum] = ACTIONS(2588), - [anon_sym_fn] = ACTIONS(2588), - [anon_sym_for] = ACTIONS(2588), - [anon_sym_if] = ACTIONS(2588), - [anon_sym_impl] = ACTIONS(2588), - [anon_sym_let] = ACTIONS(2588), - [anon_sym_loop] = ACTIONS(2588), - [anon_sym_match] = ACTIONS(2588), - [anon_sym_mod] = ACTIONS(2588), - [anon_sym_pub] = ACTIONS(2588), - [anon_sym_return] = ACTIONS(2588), - [anon_sym_static] = ACTIONS(2588), - [anon_sym_struct] = ACTIONS(2588), - [anon_sym_trait] = ACTIONS(2588), - [anon_sym_type] = ACTIONS(2588), - [anon_sym_union] = ACTIONS(2588), - [anon_sym_unsafe] = ACTIONS(2588), - [anon_sym_use] = ACTIONS(2588), - [anon_sym_while] = ACTIONS(2588), - [anon_sym_extern] = ACTIONS(2588), - [anon_sym_yield] = ACTIONS(2588), - [anon_sym_move] = ACTIONS(2588), - [anon_sym_try] = ACTIONS(2588), - [sym_integer_literal] = ACTIONS(2586), - [aux_sym_string_literal_token1] = ACTIONS(2586), - [sym_char_literal] = ACTIONS(2586), - [anon_sym_true] = ACTIONS(2588), - [anon_sym_false] = ACTIONS(2588), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2588), - [sym_super] = ACTIONS(2588), - [sym_crate] = ACTIONS(2588), - [sym_metavariable] = ACTIONS(2586), - [sym__raw_string_literal_start] = ACTIONS(2586), - [sym_float_literal] = ACTIONS(2586), - }, [690] = { + [sym_empty_statement] = STATE(1456), + [sym_macro_definition] = STATE(1456), + [sym_attribute_item] = STATE(1456), + [sym_inner_attribute_item] = STATE(1456), + [sym_mod_item] = STATE(1456), + [sym_foreign_mod_item] = STATE(1456), + [sym_struct_item] = STATE(1456), + [sym_union_item] = STATE(1456), + [sym_enum_item] = STATE(1456), + [sym_extern_crate_declaration] = STATE(1456), + [sym_const_item] = STATE(1456), + [sym_static_item] = STATE(1456), + [sym_type_item] = STATE(1456), + [sym_function_item] = STATE(1456), + [sym_function_signature_item] = STATE(1456), + [sym_function_modifiers] = STATE(3593), + [sym_impl_item] = STATE(1456), + [sym_trait_item] = STATE(1456), + [sym_associated_type] = STATE(1456), + [sym_let_declaration] = STATE(1456), + [sym_use_declaration] = STATE(1456), + [sym_extern_modifier] = STATE(2154), + [sym_visibility_modifier] = STATE(1934), + [sym_bracketed_type] = STATE(3324), + [sym_generic_type_with_turbofish] = STATE(3350), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(690), [sym_block_comment] = STATE(690), - [ts_builtin_sym_end] = ACTIONS(2590), - [sym_identifier] = ACTIONS(2592), - [anon_sym_SEMI] = ACTIONS(2590), - [anon_sym_macro_rules_BANG] = ACTIONS(2590), - [anon_sym_LPAREN] = ACTIONS(2590), - [anon_sym_LBRACK] = ACTIONS(2590), - [anon_sym_LBRACE] = ACTIONS(2590), - [anon_sym_RBRACE] = ACTIONS(2590), - [anon_sym_STAR] = ACTIONS(2590), - [anon_sym_u8] = ACTIONS(2592), - [anon_sym_i8] = ACTIONS(2592), - [anon_sym_u16] = ACTIONS(2592), - [anon_sym_i16] = ACTIONS(2592), - [anon_sym_u32] = ACTIONS(2592), - [anon_sym_i32] = ACTIONS(2592), - [anon_sym_u64] = ACTIONS(2592), - [anon_sym_i64] = ACTIONS(2592), - [anon_sym_u128] = ACTIONS(2592), - [anon_sym_i128] = ACTIONS(2592), - [anon_sym_isize] = ACTIONS(2592), - [anon_sym_usize] = ACTIONS(2592), - [anon_sym_f32] = ACTIONS(2592), - [anon_sym_f64] = ACTIONS(2592), - [anon_sym_bool] = ACTIONS(2592), - [anon_sym_str] = ACTIONS(2592), - [anon_sym_char] = ACTIONS(2592), - [anon_sym_DASH] = ACTIONS(2590), - [anon_sym_BANG] = ACTIONS(2590), - [anon_sym_AMP] = ACTIONS(2590), - [anon_sym_PIPE] = ACTIONS(2590), - [anon_sym_LT] = ACTIONS(2590), - [anon_sym_DOT_DOT] = ACTIONS(2590), - [anon_sym_COLON_COLON] = ACTIONS(2590), - [anon_sym_POUND] = ACTIONS(2590), - [anon_sym_SQUOTE] = ACTIONS(2592), - [anon_sym_async] = ACTIONS(2592), - [anon_sym_break] = ACTIONS(2592), - [anon_sym_const] = ACTIONS(2592), - [anon_sym_continue] = ACTIONS(2592), - [anon_sym_default] = ACTIONS(2592), - [anon_sym_enum] = ACTIONS(2592), - [anon_sym_fn] = ACTIONS(2592), - [anon_sym_for] = ACTIONS(2592), - [anon_sym_if] = ACTIONS(2592), - [anon_sym_impl] = ACTIONS(2592), - [anon_sym_let] = ACTIONS(2592), - [anon_sym_loop] = ACTIONS(2592), - [anon_sym_match] = ACTIONS(2592), - [anon_sym_mod] = ACTIONS(2592), - [anon_sym_pub] = ACTIONS(2592), - [anon_sym_return] = ACTIONS(2592), - [anon_sym_static] = ACTIONS(2592), - [anon_sym_struct] = ACTIONS(2592), - [anon_sym_trait] = ACTIONS(2592), - [anon_sym_type] = ACTIONS(2592), - [anon_sym_union] = ACTIONS(2592), - [anon_sym_unsafe] = ACTIONS(2592), - [anon_sym_use] = ACTIONS(2592), - [anon_sym_while] = ACTIONS(2592), - [anon_sym_extern] = ACTIONS(2592), - [anon_sym_yield] = ACTIONS(2592), - [anon_sym_move] = ACTIONS(2592), - [anon_sym_try] = ACTIONS(2592), - [sym_integer_literal] = ACTIONS(2590), - [aux_sym_string_literal_token1] = ACTIONS(2590), - [sym_char_literal] = ACTIONS(2590), - [anon_sym_true] = ACTIONS(2592), - [anon_sym_false] = ACTIONS(2592), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2592), - [sym_super] = ACTIONS(2592), - [sym_crate] = ACTIONS(2592), - [sym_metavariable] = ACTIONS(2590), - [sym__raw_string_literal_start] = ACTIONS(2590), - [sym_float_literal] = ACTIONS(2590), + [aux_sym_declaration_list_repeat1] = STATE(698), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_macro_rules_BANG] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2526), + [anon_sym_u8] = ACTIONS(2338), + [anon_sym_i8] = ACTIONS(2338), + [anon_sym_u16] = ACTIONS(2338), + [anon_sym_i16] = ACTIONS(2338), + [anon_sym_u32] = ACTIONS(2338), + [anon_sym_i32] = ACTIONS(2338), + [anon_sym_u64] = ACTIONS(2338), + [anon_sym_i64] = ACTIONS(2338), + [anon_sym_u128] = ACTIONS(2338), + [anon_sym_i128] = ACTIONS(2338), + [anon_sym_isize] = ACTIONS(2338), + [anon_sym_usize] = ACTIONS(2338), + [anon_sym_f32] = ACTIONS(2338), + [anon_sym_f64] = ACTIONS(2338), + [anon_sym_bool] = ACTIONS(2338), + [anon_sym_str] = ACTIONS(2338), + [anon_sym_char] = ACTIONS(2338), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(2342), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2348), + [anon_sym_fn] = ACTIONS(2350), + [anon_sym_impl] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_mod] = ACTIONS(2356), + [anon_sym_pub] = ACTIONS(67), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_trait] = ACTIONS(2362), + [anon_sym_type] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2366), + [anon_sym_unsafe] = ACTIONS(2368), + [anon_sym_use] = ACTIONS(2370), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2374), + [sym_super] = ACTIONS(2374), + [sym_crate] = ACTIONS(2376), + [sym_metavariable] = ACTIONS(2378), }, [691] = { [sym_line_comment] = STATE(691), [sym_block_comment] = STATE(691), - [ts_builtin_sym_end] = ACTIONS(2594), - [sym_identifier] = ACTIONS(2596), - [anon_sym_SEMI] = ACTIONS(2594), - [anon_sym_macro_rules_BANG] = ACTIONS(2594), - [anon_sym_LPAREN] = ACTIONS(2594), - [anon_sym_LBRACK] = ACTIONS(2594), - [anon_sym_LBRACE] = ACTIONS(2594), - [anon_sym_RBRACE] = ACTIONS(2594), - [anon_sym_STAR] = ACTIONS(2594), - [anon_sym_u8] = ACTIONS(2596), - [anon_sym_i8] = ACTIONS(2596), - [anon_sym_u16] = ACTIONS(2596), - [anon_sym_i16] = ACTIONS(2596), - [anon_sym_u32] = ACTIONS(2596), - [anon_sym_i32] = ACTIONS(2596), - [anon_sym_u64] = ACTIONS(2596), - [anon_sym_i64] = ACTIONS(2596), - [anon_sym_u128] = ACTIONS(2596), - [anon_sym_i128] = ACTIONS(2596), - [anon_sym_isize] = ACTIONS(2596), - [anon_sym_usize] = ACTIONS(2596), - [anon_sym_f32] = ACTIONS(2596), - [anon_sym_f64] = ACTIONS(2596), - [anon_sym_bool] = ACTIONS(2596), - [anon_sym_str] = ACTIONS(2596), - [anon_sym_char] = ACTIONS(2596), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_BANG] = ACTIONS(2594), - [anon_sym_AMP] = ACTIONS(2594), - [anon_sym_PIPE] = ACTIONS(2594), - [anon_sym_LT] = ACTIONS(2594), - [anon_sym_DOT_DOT] = ACTIONS(2594), - [anon_sym_COLON_COLON] = ACTIONS(2594), - [anon_sym_POUND] = ACTIONS(2594), - [anon_sym_SQUOTE] = ACTIONS(2596), - [anon_sym_async] = ACTIONS(2596), - [anon_sym_break] = ACTIONS(2596), - [anon_sym_const] = ACTIONS(2596), - [anon_sym_continue] = ACTIONS(2596), - [anon_sym_default] = ACTIONS(2596), - [anon_sym_enum] = ACTIONS(2596), - [anon_sym_fn] = ACTIONS(2596), - [anon_sym_for] = ACTIONS(2596), - [anon_sym_if] = ACTIONS(2596), - [anon_sym_impl] = ACTIONS(2596), - [anon_sym_let] = ACTIONS(2596), - [anon_sym_loop] = ACTIONS(2596), - [anon_sym_match] = ACTIONS(2596), - [anon_sym_mod] = ACTIONS(2596), - [anon_sym_pub] = ACTIONS(2596), - [anon_sym_return] = ACTIONS(2596), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_struct] = ACTIONS(2596), - [anon_sym_trait] = ACTIONS(2596), - [anon_sym_type] = ACTIONS(2596), - [anon_sym_union] = ACTIONS(2596), - [anon_sym_unsafe] = ACTIONS(2596), - [anon_sym_use] = ACTIONS(2596), - [anon_sym_while] = ACTIONS(2596), - [anon_sym_extern] = ACTIONS(2596), - [anon_sym_yield] = ACTIONS(2596), - [anon_sym_move] = ACTIONS(2596), - [anon_sym_try] = ACTIONS(2596), - [sym_integer_literal] = ACTIONS(2594), - [aux_sym_string_literal_token1] = ACTIONS(2594), - [sym_char_literal] = ACTIONS(2594), - [anon_sym_true] = ACTIONS(2596), - [anon_sym_false] = ACTIONS(2596), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2596), - [sym_super] = ACTIONS(2596), - [sym_crate] = ACTIONS(2596), - [sym_metavariable] = ACTIONS(2594), - [sym__raw_string_literal_start] = ACTIONS(2594), - [sym_float_literal] = ACTIONS(2594), + [ts_builtin_sym_end] = ACTIONS(2528), + [sym_identifier] = ACTIONS(2530), + [anon_sym_SEMI] = ACTIONS(2528), + [anon_sym_macro_rules_BANG] = ACTIONS(2528), + [anon_sym_LPAREN] = ACTIONS(2528), + [anon_sym_LBRACK] = ACTIONS(2528), + [anon_sym_LBRACE] = ACTIONS(2528), + [anon_sym_RBRACE] = ACTIONS(2528), + [anon_sym_STAR] = ACTIONS(2528), + [anon_sym_u8] = ACTIONS(2530), + [anon_sym_i8] = ACTIONS(2530), + [anon_sym_u16] = ACTIONS(2530), + [anon_sym_i16] = ACTIONS(2530), + [anon_sym_u32] = ACTIONS(2530), + [anon_sym_i32] = ACTIONS(2530), + [anon_sym_u64] = ACTIONS(2530), + [anon_sym_i64] = ACTIONS(2530), + [anon_sym_u128] = ACTIONS(2530), + [anon_sym_i128] = ACTIONS(2530), + [anon_sym_isize] = ACTIONS(2530), + [anon_sym_usize] = ACTIONS(2530), + [anon_sym_f32] = ACTIONS(2530), + [anon_sym_f64] = ACTIONS(2530), + [anon_sym_bool] = ACTIONS(2530), + [anon_sym_str] = ACTIONS(2530), + [anon_sym_char] = ACTIONS(2530), + [anon_sym_DASH] = ACTIONS(2528), + [anon_sym_BANG] = ACTIONS(2528), + [anon_sym_AMP] = ACTIONS(2528), + [anon_sym_PIPE] = ACTIONS(2528), + [anon_sym_LT] = ACTIONS(2528), + [anon_sym_DOT_DOT] = ACTIONS(2528), + [anon_sym_COLON_COLON] = ACTIONS(2528), + [anon_sym_POUND] = ACTIONS(2528), + [anon_sym_SQUOTE] = ACTIONS(2530), + [anon_sym_async] = ACTIONS(2530), + [anon_sym_break] = ACTIONS(2530), + [anon_sym_const] = ACTIONS(2530), + [anon_sym_continue] = ACTIONS(2530), + [anon_sym_default] = ACTIONS(2530), + [anon_sym_enum] = ACTIONS(2530), + [anon_sym_fn] = ACTIONS(2530), + [anon_sym_for] = ACTIONS(2530), + [anon_sym_if] = ACTIONS(2530), + [anon_sym_impl] = ACTIONS(2530), + [anon_sym_let] = ACTIONS(2530), + [anon_sym_loop] = ACTIONS(2530), + [anon_sym_match] = ACTIONS(2530), + [anon_sym_mod] = ACTIONS(2530), + [anon_sym_pub] = ACTIONS(2530), + [anon_sym_return] = ACTIONS(2530), + [anon_sym_static] = ACTIONS(2530), + [anon_sym_struct] = ACTIONS(2530), + [anon_sym_trait] = ACTIONS(2530), + [anon_sym_type] = ACTIONS(2530), + [anon_sym_union] = ACTIONS(2530), + [anon_sym_unsafe] = ACTIONS(2530), + [anon_sym_use] = ACTIONS(2530), + [anon_sym_while] = ACTIONS(2530), + [anon_sym_extern] = ACTIONS(2530), + [anon_sym_yield] = ACTIONS(2530), + [anon_sym_move] = ACTIONS(2530), + [anon_sym_try] = ACTIONS(2530), + [sym_integer_literal] = ACTIONS(2528), + [aux_sym_string_literal_token1] = ACTIONS(2528), + [sym_char_literal] = ACTIONS(2528), + [anon_sym_true] = ACTIONS(2530), + [anon_sym_false] = ACTIONS(2530), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2530), + [sym_super] = ACTIONS(2530), + [sym_crate] = ACTIONS(2530), + [sym_metavariable] = ACTIONS(2528), + [sym__raw_string_literal_start] = ACTIONS(2528), + [sym_float_literal] = ACTIONS(2528), }, [692] = { + [sym_empty_statement] = STATE(1456), + [sym_macro_definition] = STATE(1456), + [sym_attribute_item] = STATE(1456), + [sym_inner_attribute_item] = STATE(1456), + [sym_mod_item] = STATE(1456), + [sym_foreign_mod_item] = STATE(1456), + [sym_struct_item] = STATE(1456), + [sym_union_item] = STATE(1456), + [sym_enum_item] = STATE(1456), + [sym_extern_crate_declaration] = STATE(1456), + [sym_const_item] = STATE(1456), + [sym_static_item] = STATE(1456), + [sym_type_item] = STATE(1456), + [sym_function_item] = STATE(1456), + [sym_function_signature_item] = STATE(1456), + [sym_function_modifiers] = STATE(3593), + [sym_impl_item] = STATE(1456), + [sym_trait_item] = STATE(1456), + [sym_associated_type] = STATE(1456), + [sym_let_declaration] = STATE(1456), + [sym_use_declaration] = STATE(1456), + [sym_extern_modifier] = STATE(2154), + [sym_visibility_modifier] = STATE(1934), + [sym_bracketed_type] = STATE(3324), + [sym_generic_type_with_turbofish] = STATE(3350), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(692), [sym_block_comment] = STATE(692), - [ts_builtin_sym_end] = ACTIONS(2598), - [sym_identifier] = ACTIONS(2600), - [anon_sym_SEMI] = ACTIONS(2598), - [anon_sym_macro_rules_BANG] = ACTIONS(2598), - [anon_sym_LPAREN] = ACTIONS(2598), - [anon_sym_LBRACK] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2598), - [anon_sym_RBRACE] = ACTIONS(2598), - [anon_sym_STAR] = ACTIONS(2598), - [anon_sym_u8] = ACTIONS(2600), - [anon_sym_i8] = ACTIONS(2600), - [anon_sym_u16] = ACTIONS(2600), - [anon_sym_i16] = ACTIONS(2600), - [anon_sym_u32] = ACTIONS(2600), - [anon_sym_i32] = ACTIONS(2600), - [anon_sym_u64] = ACTIONS(2600), - [anon_sym_i64] = ACTIONS(2600), - [anon_sym_u128] = ACTIONS(2600), - [anon_sym_i128] = ACTIONS(2600), - [anon_sym_isize] = ACTIONS(2600), - [anon_sym_usize] = ACTIONS(2600), - [anon_sym_f32] = ACTIONS(2600), - [anon_sym_f64] = ACTIONS(2600), - [anon_sym_bool] = ACTIONS(2600), - [anon_sym_str] = ACTIONS(2600), - [anon_sym_char] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2598), - [anon_sym_BANG] = ACTIONS(2598), - [anon_sym_AMP] = ACTIONS(2598), - [anon_sym_PIPE] = ACTIONS(2598), - [anon_sym_LT] = ACTIONS(2598), - [anon_sym_DOT_DOT] = ACTIONS(2598), - [anon_sym_COLON_COLON] = ACTIONS(2598), - [anon_sym_POUND] = ACTIONS(2598), - [anon_sym_SQUOTE] = ACTIONS(2600), - [anon_sym_async] = ACTIONS(2600), - [anon_sym_break] = ACTIONS(2600), - [anon_sym_const] = ACTIONS(2600), - [anon_sym_continue] = ACTIONS(2600), - [anon_sym_default] = ACTIONS(2600), - [anon_sym_enum] = ACTIONS(2600), - [anon_sym_fn] = ACTIONS(2600), - [anon_sym_for] = ACTIONS(2600), - [anon_sym_if] = ACTIONS(2600), - [anon_sym_impl] = ACTIONS(2600), - [anon_sym_let] = ACTIONS(2600), - [anon_sym_loop] = ACTIONS(2600), - [anon_sym_match] = ACTIONS(2600), - [anon_sym_mod] = ACTIONS(2600), - [anon_sym_pub] = ACTIONS(2600), - [anon_sym_return] = ACTIONS(2600), - [anon_sym_static] = ACTIONS(2600), - [anon_sym_struct] = ACTIONS(2600), - [anon_sym_trait] = ACTIONS(2600), - [anon_sym_type] = ACTIONS(2600), - [anon_sym_union] = ACTIONS(2600), - [anon_sym_unsafe] = ACTIONS(2600), + [aux_sym_declaration_list_repeat1] = STATE(692), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2532), + [anon_sym_SEMI] = ACTIONS(2535), + [anon_sym_macro_rules_BANG] = ACTIONS(2538), + [anon_sym_RBRACE] = ACTIONS(2541), + [anon_sym_u8] = ACTIONS(2543), + [anon_sym_i8] = ACTIONS(2543), + [anon_sym_u16] = ACTIONS(2543), + [anon_sym_i16] = ACTIONS(2543), + [anon_sym_u32] = ACTIONS(2543), + [anon_sym_i32] = ACTIONS(2543), + [anon_sym_u64] = ACTIONS(2543), + [anon_sym_i64] = ACTIONS(2543), + [anon_sym_u128] = ACTIONS(2543), + [anon_sym_i128] = ACTIONS(2543), + [anon_sym_isize] = ACTIONS(2543), + [anon_sym_usize] = ACTIONS(2543), + [anon_sym_f32] = ACTIONS(2543), + [anon_sym_f64] = ACTIONS(2543), + [anon_sym_bool] = ACTIONS(2543), + [anon_sym_str] = ACTIONS(2543), + [anon_sym_char] = ACTIONS(2543), + [anon_sym_LT] = ACTIONS(2546), + [anon_sym_COLON_COLON] = ACTIONS(2549), + [anon_sym_POUND] = ACTIONS(2552), + [anon_sym_async] = ACTIONS(2555), + [anon_sym_const] = ACTIONS(2558), + [anon_sym_default] = ACTIONS(2561), + [anon_sym_enum] = ACTIONS(2564), + [anon_sym_fn] = ACTIONS(2567), + [anon_sym_impl] = ACTIONS(2570), + [anon_sym_let] = ACTIONS(2573), + [anon_sym_mod] = ACTIONS(2576), + [anon_sym_pub] = ACTIONS(2579), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_struct] = ACTIONS(2585), + [anon_sym_trait] = ACTIONS(2588), + [anon_sym_type] = ACTIONS(2591), + [anon_sym_union] = ACTIONS(2594), + [anon_sym_unsafe] = ACTIONS(2597), [anon_sym_use] = ACTIONS(2600), - [anon_sym_while] = ACTIONS(2600), - [anon_sym_extern] = ACTIONS(2600), - [anon_sym_yield] = ACTIONS(2600), - [anon_sym_move] = ACTIONS(2600), - [anon_sym_try] = ACTIONS(2600), - [sym_integer_literal] = ACTIONS(2598), - [aux_sym_string_literal_token1] = ACTIONS(2598), - [sym_char_literal] = ACTIONS(2598), - [anon_sym_true] = ACTIONS(2600), - [anon_sym_false] = ACTIONS(2600), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2600), - [sym_super] = ACTIONS(2600), - [sym_crate] = ACTIONS(2600), - [sym_metavariable] = ACTIONS(2598), - [sym__raw_string_literal_start] = ACTIONS(2598), - [sym_float_literal] = ACTIONS(2598), + [anon_sym_extern] = ACTIONS(2603), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2606), + [sym_super] = ACTIONS(2606), + [sym_crate] = ACTIONS(2609), + [sym_metavariable] = ACTIONS(2612), }, [693] = { [sym_line_comment] = STATE(693), [sym_block_comment] = STATE(693), - [ts_builtin_sym_end] = ACTIONS(2602), - [sym_identifier] = ACTIONS(2604), - [anon_sym_SEMI] = ACTIONS(2602), - [anon_sym_macro_rules_BANG] = ACTIONS(2602), - [anon_sym_LPAREN] = ACTIONS(2602), - [anon_sym_LBRACK] = ACTIONS(2602), - [anon_sym_LBRACE] = ACTIONS(2602), - [anon_sym_RBRACE] = ACTIONS(2602), - [anon_sym_STAR] = ACTIONS(2602), - [anon_sym_u8] = ACTIONS(2604), - [anon_sym_i8] = ACTIONS(2604), - [anon_sym_u16] = ACTIONS(2604), - [anon_sym_i16] = ACTIONS(2604), - [anon_sym_u32] = ACTIONS(2604), - [anon_sym_i32] = ACTIONS(2604), - [anon_sym_u64] = ACTIONS(2604), - [anon_sym_i64] = ACTIONS(2604), - [anon_sym_u128] = ACTIONS(2604), - [anon_sym_i128] = ACTIONS(2604), - [anon_sym_isize] = ACTIONS(2604), - [anon_sym_usize] = ACTIONS(2604), - [anon_sym_f32] = ACTIONS(2604), - [anon_sym_f64] = ACTIONS(2604), - [anon_sym_bool] = ACTIONS(2604), - [anon_sym_str] = ACTIONS(2604), - [anon_sym_char] = ACTIONS(2604), - [anon_sym_DASH] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(2602), - [anon_sym_AMP] = ACTIONS(2602), - [anon_sym_PIPE] = ACTIONS(2602), - [anon_sym_LT] = ACTIONS(2602), - [anon_sym_DOT_DOT] = ACTIONS(2602), - [anon_sym_COLON_COLON] = ACTIONS(2602), - [anon_sym_POUND] = ACTIONS(2602), - [anon_sym_SQUOTE] = ACTIONS(2604), - [anon_sym_async] = ACTIONS(2604), - [anon_sym_break] = ACTIONS(2604), - [anon_sym_const] = ACTIONS(2604), - [anon_sym_continue] = ACTIONS(2604), - [anon_sym_default] = ACTIONS(2604), - [anon_sym_enum] = ACTIONS(2604), - [anon_sym_fn] = ACTIONS(2604), - [anon_sym_for] = ACTIONS(2604), - [anon_sym_if] = ACTIONS(2604), - [anon_sym_impl] = ACTIONS(2604), - [anon_sym_let] = ACTIONS(2604), - [anon_sym_loop] = ACTIONS(2604), - [anon_sym_match] = ACTIONS(2604), - [anon_sym_mod] = ACTIONS(2604), - [anon_sym_pub] = ACTIONS(2604), - [anon_sym_return] = ACTIONS(2604), - [anon_sym_static] = ACTIONS(2604), - [anon_sym_struct] = ACTIONS(2604), - [anon_sym_trait] = ACTIONS(2604), - [anon_sym_type] = ACTIONS(2604), - [anon_sym_union] = ACTIONS(2604), - [anon_sym_unsafe] = ACTIONS(2604), - [anon_sym_use] = ACTIONS(2604), - [anon_sym_while] = ACTIONS(2604), - [anon_sym_extern] = ACTIONS(2604), - [anon_sym_yield] = ACTIONS(2604), - [anon_sym_move] = ACTIONS(2604), - [anon_sym_try] = ACTIONS(2604), - [sym_integer_literal] = ACTIONS(2602), - [aux_sym_string_literal_token1] = ACTIONS(2602), - [sym_char_literal] = ACTIONS(2602), - [anon_sym_true] = ACTIONS(2604), - [anon_sym_false] = ACTIONS(2604), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2604), - [sym_super] = ACTIONS(2604), - [sym_crate] = ACTIONS(2604), - [sym_metavariable] = ACTIONS(2602), - [sym__raw_string_literal_start] = ACTIONS(2602), - [sym_float_literal] = ACTIONS(2602), + [ts_builtin_sym_end] = ACTIONS(2615), + [sym_identifier] = ACTIONS(2617), + [anon_sym_SEMI] = ACTIONS(2615), + [anon_sym_macro_rules_BANG] = ACTIONS(2615), + [anon_sym_LPAREN] = ACTIONS(2615), + [anon_sym_LBRACK] = ACTIONS(2615), + [anon_sym_LBRACE] = ACTIONS(2615), + [anon_sym_RBRACE] = ACTIONS(2615), + [anon_sym_STAR] = ACTIONS(2615), + [anon_sym_u8] = ACTIONS(2617), + [anon_sym_i8] = ACTIONS(2617), + [anon_sym_u16] = ACTIONS(2617), + [anon_sym_i16] = ACTIONS(2617), + [anon_sym_u32] = ACTIONS(2617), + [anon_sym_i32] = ACTIONS(2617), + [anon_sym_u64] = ACTIONS(2617), + [anon_sym_i64] = ACTIONS(2617), + [anon_sym_u128] = ACTIONS(2617), + [anon_sym_i128] = ACTIONS(2617), + [anon_sym_isize] = ACTIONS(2617), + [anon_sym_usize] = ACTIONS(2617), + [anon_sym_f32] = ACTIONS(2617), + [anon_sym_f64] = ACTIONS(2617), + [anon_sym_bool] = ACTIONS(2617), + [anon_sym_str] = ACTIONS(2617), + [anon_sym_char] = ACTIONS(2617), + [anon_sym_DASH] = ACTIONS(2615), + [anon_sym_BANG] = ACTIONS(2615), + [anon_sym_AMP] = ACTIONS(2615), + [anon_sym_PIPE] = ACTIONS(2615), + [anon_sym_LT] = ACTIONS(2615), + [anon_sym_DOT_DOT] = ACTIONS(2615), + [anon_sym_COLON_COLON] = ACTIONS(2615), + [anon_sym_POUND] = ACTIONS(2615), + [anon_sym_SQUOTE] = ACTIONS(2617), + [anon_sym_async] = ACTIONS(2617), + [anon_sym_break] = ACTIONS(2617), + [anon_sym_const] = ACTIONS(2617), + [anon_sym_continue] = ACTIONS(2617), + [anon_sym_default] = ACTIONS(2617), + [anon_sym_enum] = ACTIONS(2617), + [anon_sym_fn] = ACTIONS(2617), + [anon_sym_for] = ACTIONS(2617), + [anon_sym_if] = ACTIONS(2617), + [anon_sym_impl] = ACTIONS(2617), + [anon_sym_let] = ACTIONS(2617), + [anon_sym_loop] = ACTIONS(2617), + [anon_sym_match] = ACTIONS(2617), + [anon_sym_mod] = ACTIONS(2617), + [anon_sym_pub] = ACTIONS(2617), + [anon_sym_return] = ACTIONS(2617), + [anon_sym_static] = ACTIONS(2617), + [anon_sym_struct] = ACTIONS(2617), + [anon_sym_trait] = ACTIONS(2617), + [anon_sym_type] = ACTIONS(2617), + [anon_sym_union] = ACTIONS(2617), + [anon_sym_unsafe] = ACTIONS(2617), + [anon_sym_use] = ACTIONS(2617), + [anon_sym_while] = ACTIONS(2617), + [anon_sym_extern] = ACTIONS(2617), + [anon_sym_yield] = ACTIONS(2617), + [anon_sym_move] = ACTIONS(2617), + [anon_sym_try] = ACTIONS(2617), + [sym_integer_literal] = ACTIONS(2615), + [aux_sym_string_literal_token1] = ACTIONS(2615), + [sym_char_literal] = ACTIONS(2615), + [anon_sym_true] = ACTIONS(2617), + [anon_sym_false] = ACTIONS(2617), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2617), + [sym_super] = ACTIONS(2617), + [sym_crate] = ACTIONS(2617), + [sym_metavariable] = ACTIONS(2615), + [sym__raw_string_literal_start] = ACTIONS(2615), + [sym_float_literal] = ACTIONS(2615), }, [694] = { [sym_line_comment] = STATE(694), [sym_block_comment] = STATE(694), - [ts_builtin_sym_end] = ACTIONS(2606), - [sym_identifier] = ACTIONS(2608), - [anon_sym_SEMI] = ACTIONS(2606), - [anon_sym_macro_rules_BANG] = ACTIONS(2606), - [anon_sym_LPAREN] = ACTIONS(2606), - [anon_sym_LBRACK] = ACTIONS(2606), - [anon_sym_LBRACE] = ACTIONS(2606), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_STAR] = ACTIONS(2606), - [anon_sym_u8] = ACTIONS(2608), - [anon_sym_i8] = ACTIONS(2608), - [anon_sym_u16] = ACTIONS(2608), - [anon_sym_i16] = ACTIONS(2608), - [anon_sym_u32] = ACTIONS(2608), - [anon_sym_i32] = ACTIONS(2608), - [anon_sym_u64] = ACTIONS(2608), - [anon_sym_i64] = ACTIONS(2608), - [anon_sym_u128] = ACTIONS(2608), - [anon_sym_i128] = ACTIONS(2608), - [anon_sym_isize] = ACTIONS(2608), - [anon_sym_usize] = ACTIONS(2608), - [anon_sym_f32] = ACTIONS(2608), - [anon_sym_f64] = ACTIONS(2608), - [anon_sym_bool] = ACTIONS(2608), - [anon_sym_str] = ACTIONS(2608), - [anon_sym_char] = ACTIONS(2608), - [anon_sym_DASH] = ACTIONS(2606), - [anon_sym_BANG] = ACTIONS(2606), - [anon_sym_AMP] = ACTIONS(2606), - [anon_sym_PIPE] = ACTIONS(2606), - [anon_sym_LT] = ACTIONS(2606), - [anon_sym_DOT_DOT] = ACTIONS(2606), - [anon_sym_COLON_COLON] = ACTIONS(2606), - [anon_sym_POUND] = ACTIONS(2606), - [anon_sym_SQUOTE] = ACTIONS(2608), - [anon_sym_async] = ACTIONS(2608), - [anon_sym_break] = ACTIONS(2608), - [anon_sym_const] = ACTIONS(2608), - [anon_sym_continue] = ACTIONS(2608), - [anon_sym_default] = ACTIONS(2608), - [anon_sym_enum] = ACTIONS(2608), - [anon_sym_fn] = ACTIONS(2608), - [anon_sym_for] = ACTIONS(2608), - [anon_sym_if] = ACTIONS(2608), - [anon_sym_impl] = ACTIONS(2608), - [anon_sym_let] = ACTIONS(2608), - [anon_sym_loop] = ACTIONS(2608), - [anon_sym_match] = ACTIONS(2608), - [anon_sym_mod] = ACTIONS(2608), - [anon_sym_pub] = ACTIONS(2608), - [anon_sym_return] = ACTIONS(2608), - [anon_sym_static] = ACTIONS(2608), - [anon_sym_struct] = ACTIONS(2608), - [anon_sym_trait] = ACTIONS(2608), - [anon_sym_type] = ACTIONS(2608), - [anon_sym_union] = ACTIONS(2608), - [anon_sym_unsafe] = ACTIONS(2608), - [anon_sym_use] = ACTIONS(2608), - [anon_sym_while] = ACTIONS(2608), - [anon_sym_extern] = ACTIONS(2608), - [anon_sym_yield] = ACTIONS(2608), - [anon_sym_move] = ACTIONS(2608), - [anon_sym_try] = ACTIONS(2608), - [sym_integer_literal] = ACTIONS(2606), - [aux_sym_string_literal_token1] = ACTIONS(2606), - [sym_char_literal] = ACTIONS(2606), - [anon_sym_true] = ACTIONS(2608), - [anon_sym_false] = ACTIONS(2608), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2608), - [sym_super] = ACTIONS(2608), - [sym_crate] = ACTIONS(2608), - [sym_metavariable] = ACTIONS(2606), - [sym__raw_string_literal_start] = ACTIONS(2606), - [sym_float_literal] = ACTIONS(2606), + [ts_builtin_sym_end] = ACTIONS(2619), + [sym_identifier] = ACTIONS(2621), + [anon_sym_SEMI] = ACTIONS(2619), + [anon_sym_macro_rules_BANG] = ACTIONS(2619), + [anon_sym_LPAREN] = ACTIONS(2619), + [anon_sym_LBRACK] = ACTIONS(2619), + [anon_sym_LBRACE] = ACTIONS(2619), + [anon_sym_RBRACE] = ACTIONS(2619), + [anon_sym_STAR] = ACTIONS(2619), + [anon_sym_u8] = ACTIONS(2621), + [anon_sym_i8] = ACTIONS(2621), + [anon_sym_u16] = ACTIONS(2621), + [anon_sym_i16] = ACTIONS(2621), + [anon_sym_u32] = ACTIONS(2621), + [anon_sym_i32] = ACTIONS(2621), + [anon_sym_u64] = ACTIONS(2621), + [anon_sym_i64] = ACTIONS(2621), + [anon_sym_u128] = ACTIONS(2621), + [anon_sym_i128] = ACTIONS(2621), + [anon_sym_isize] = ACTIONS(2621), + [anon_sym_usize] = ACTIONS(2621), + [anon_sym_f32] = ACTIONS(2621), + [anon_sym_f64] = ACTIONS(2621), + [anon_sym_bool] = ACTIONS(2621), + [anon_sym_str] = ACTIONS(2621), + [anon_sym_char] = ACTIONS(2621), + [anon_sym_DASH] = ACTIONS(2619), + [anon_sym_BANG] = ACTIONS(2619), + [anon_sym_AMP] = ACTIONS(2619), + [anon_sym_PIPE] = ACTIONS(2619), + [anon_sym_LT] = ACTIONS(2619), + [anon_sym_DOT_DOT] = ACTIONS(2619), + [anon_sym_COLON_COLON] = ACTIONS(2619), + [anon_sym_POUND] = ACTIONS(2619), + [anon_sym_SQUOTE] = ACTIONS(2621), + [anon_sym_async] = ACTIONS(2621), + [anon_sym_break] = ACTIONS(2621), + [anon_sym_const] = ACTIONS(2621), + [anon_sym_continue] = ACTIONS(2621), + [anon_sym_default] = ACTIONS(2621), + [anon_sym_enum] = ACTIONS(2621), + [anon_sym_fn] = ACTIONS(2621), + [anon_sym_for] = ACTIONS(2621), + [anon_sym_if] = ACTIONS(2621), + [anon_sym_impl] = ACTIONS(2621), + [anon_sym_let] = ACTIONS(2621), + [anon_sym_loop] = ACTIONS(2621), + [anon_sym_match] = ACTIONS(2621), + [anon_sym_mod] = ACTIONS(2621), + [anon_sym_pub] = ACTIONS(2621), + [anon_sym_return] = ACTIONS(2621), + [anon_sym_static] = ACTIONS(2621), + [anon_sym_struct] = ACTIONS(2621), + [anon_sym_trait] = ACTIONS(2621), + [anon_sym_type] = ACTIONS(2621), + [anon_sym_union] = ACTIONS(2621), + [anon_sym_unsafe] = ACTIONS(2621), + [anon_sym_use] = ACTIONS(2621), + [anon_sym_while] = ACTIONS(2621), + [anon_sym_extern] = ACTIONS(2621), + [anon_sym_yield] = ACTIONS(2621), + [anon_sym_move] = ACTIONS(2621), + [anon_sym_try] = ACTIONS(2621), + [sym_integer_literal] = ACTIONS(2619), + [aux_sym_string_literal_token1] = ACTIONS(2619), + [sym_char_literal] = ACTIONS(2619), + [anon_sym_true] = ACTIONS(2621), + [anon_sym_false] = ACTIONS(2621), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2621), + [sym_super] = ACTIONS(2621), + [sym_crate] = ACTIONS(2621), + [sym_metavariable] = ACTIONS(2619), + [sym__raw_string_literal_start] = ACTIONS(2619), + [sym_float_literal] = ACTIONS(2619), }, [695] = { [sym_line_comment] = STATE(695), [sym_block_comment] = STATE(695), - [ts_builtin_sym_end] = ACTIONS(2610), - [sym_identifier] = ACTIONS(2612), - [anon_sym_SEMI] = ACTIONS(2610), - [anon_sym_macro_rules_BANG] = ACTIONS(2610), - [anon_sym_LPAREN] = ACTIONS(2610), - [anon_sym_LBRACK] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(2610), - [anon_sym_RBRACE] = ACTIONS(2610), - [anon_sym_STAR] = ACTIONS(2610), - [anon_sym_u8] = ACTIONS(2612), - [anon_sym_i8] = ACTIONS(2612), - [anon_sym_u16] = ACTIONS(2612), - [anon_sym_i16] = ACTIONS(2612), - [anon_sym_u32] = ACTIONS(2612), - [anon_sym_i32] = ACTIONS(2612), - [anon_sym_u64] = ACTIONS(2612), - [anon_sym_i64] = ACTIONS(2612), - [anon_sym_u128] = ACTIONS(2612), - [anon_sym_i128] = ACTIONS(2612), - [anon_sym_isize] = ACTIONS(2612), - [anon_sym_usize] = ACTIONS(2612), - [anon_sym_f32] = ACTIONS(2612), - [anon_sym_f64] = ACTIONS(2612), - [anon_sym_bool] = ACTIONS(2612), - [anon_sym_str] = ACTIONS(2612), - [anon_sym_char] = ACTIONS(2612), - [anon_sym_DASH] = ACTIONS(2610), - [anon_sym_BANG] = ACTIONS(2610), - [anon_sym_AMP] = ACTIONS(2610), - [anon_sym_PIPE] = ACTIONS(2610), - [anon_sym_LT] = ACTIONS(2610), - [anon_sym_DOT_DOT] = ACTIONS(2610), - [anon_sym_COLON_COLON] = ACTIONS(2610), - [anon_sym_POUND] = ACTIONS(2610), - [anon_sym_SQUOTE] = ACTIONS(2612), - [anon_sym_async] = ACTIONS(2612), - [anon_sym_break] = ACTIONS(2612), - [anon_sym_const] = ACTIONS(2612), - [anon_sym_continue] = ACTIONS(2612), - [anon_sym_default] = ACTIONS(2612), - [anon_sym_enum] = ACTIONS(2612), - [anon_sym_fn] = ACTIONS(2612), - [anon_sym_for] = ACTIONS(2612), - [anon_sym_if] = ACTIONS(2612), - [anon_sym_impl] = ACTIONS(2612), - [anon_sym_let] = ACTIONS(2612), - [anon_sym_loop] = ACTIONS(2612), - [anon_sym_match] = ACTIONS(2612), - [anon_sym_mod] = ACTIONS(2612), - [anon_sym_pub] = ACTIONS(2612), - [anon_sym_return] = ACTIONS(2612), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_struct] = ACTIONS(2612), - [anon_sym_trait] = ACTIONS(2612), - [anon_sym_type] = ACTIONS(2612), - [anon_sym_union] = ACTIONS(2612), - [anon_sym_unsafe] = ACTIONS(2612), - [anon_sym_use] = ACTIONS(2612), - [anon_sym_while] = ACTIONS(2612), - [anon_sym_extern] = ACTIONS(2612), - [anon_sym_yield] = ACTIONS(2612), - [anon_sym_move] = ACTIONS(2612), - [anon_sym_try] = ACTIONS(2612), - [sym_integer_literal] = ACTIONS(2610), - [aux_sym_string_literal_token1] = ACTIONS(2610), - [sym_char_literal] = ACTIONS(2610), - [anon_sym_true] = ACTIONS(2612), - [anon_sym_false] = ACTIONS(2612), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2612), - [sym_super] = ACTIONS(2612), - [sym_crate] = ACTIONS(2612), - [sym_metavariable] = ACTIONS(2610), - [sym__raw_string_literal_start] = ACTIONS(2610), - [sym_float_literal] = ACTIONS(2610), + [ts_builtin_sym_end] = ACTIONS(2623), + [sym_identifier] = ACTIONS(2625), + [anon_sym_SEMI] = ACTIONS(2623), + [anon_sym_macro_rules_BANG] = ACTIONS(2623), + [anon_sym_LPAREN] = ACTIONS(2623), + [anon_sym_LBRACK] = ACTIONS(2623), + [anon_sym_LBRACE] = ACTIONS(2623), + [anon_sym_RBRACE] = ACTIONS(2623), + [anon_sym_STAR] = ACTIONS(2623), + [anon_sym_u8] = ACTIONS(2625), + [anon_sym_i8] = ACTIONS(2625), + [anon_sym_u16] = ACTIONS(2625), + [anon_sym_i16] = ACTIONS(2625), + [anon_sym_u32] = ACTIONS(2625), + [anon_sym_i32] = ACTIONS(2625), + [anon_sym_u64] = ACTIONS(2625), + [anon_sym_i64] = ACTIONS(2625), + [anon_sym_u128] = ACTIONS(2625), + [anon_sym_i128] = ACTIONS(2625), + [anon_sym_isize] = ACTIONS(2625), + [anon_sym_usize] = ACTIONS(2625), + [anon_sym_f32] = ACTIONS(2625), + [anon_sym_f64] = ACTIONS(2625), + [anon_sym_bool] = ACTIONS(2625), + [anon_sym_str] = ACTIONS(2625), + [anon_sym_char] = ACTIONS(2625), + [anon_sym_DASH] = ACTIONS(2623), + [anon_sym_BANG] = ACTIONS(2623), + [anon_sym_AMP] = ACTIONS(2623), + [anon_sym_PIPE] = ACTIONS(2623), + [anon_sym_LT] = ACTIONS(2623), + [anon_sym_DOT_DOT] = ACTIONS(2623), + [anon_sym_COLON_COLON] = ACTIONS(2623), + [anon_sym_POUND] = ACTIONS(2623), + [anon_sym_SQUOTE] = ACTIONS(2625), + [anon_sym_async] = ACTIONS(2625), + [anon_sym_break] = ACTIONS(2625), + [anon_sym_const] = ACTIONS(2625), + [anon_sym_continue] = ACTIONS(2625), + [anon_sym_default] = ACTIONS(2625), + [anon_sym_enum] = ACTIONS(2625), + [anon_sym_fn] = ACTIONS(2625), + [anon_sym_for] = ACTIONS(2625), + [anon_sym_if] = ACTIONS(2625), + [anon_sym_impl] = ACTIONS(2625), + [anon_sym_let] = ACTIONS(2625), + [anon_sym_loop] = ACTIONS(2625), + [anon_sym_match] = ACTIONS(2625), + [anon_sym_mod] = ACTIONS(2625), + [anon_sym_pub] = ACTIONS(2625), + [anon_sym_return] = ACTIONS(2625), + [anon_sym_static] = ACTIONS(2625), + [anon_sym_struct] = ACTIONS(2625), + [anon_sym_trait] = ACTIONS(2625), + [anon_sym_type] = ACTIONS(2625), + [anon_sym_union] = ACTIONS(2625), + [anon_sym_unsafe] = ACTIONS(2625), + [anon_sym_use] = ACTIONS(2625), + [anon_sym_while] = ACTIONS(2625), + [anon_sym_extern] = ACTIONS(2625), + [anon_sym_yield] = ACTIONS(2625), + [anon_sym_move] = ACTIONS(2625), + [anon_sym_try] = ACTIONS(2625), + [sym_integer_literal] = ACTIONS(2623), + [aux_sym_string_literal_token1] = ACTIONS(2623), + [sym_char_literal] = ACTIONS(2623), + [anon_sym_true] = ACTIONS(2625), + [anon_sym_false] = ACTIONS(2625), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2625), + [sym_super] = ACTIONS(2625), + [sym_crate] = ACTIONS(2625), + [sym_metavariable] = ACTIONS(2623), + [sym__raw_string_literal_start] = ACTIONS(2623), + [sym_float_literal] = ACTIONS(2623), }, [696] = { [sym_line_comment] = STATE(696), [sym_block_comment] = STATE(696), - [ts_builtin_sym_end] = ACTIONS(2614), - [sym_identifier] = ACTIONS(2616), - [anon_sym_SEMI] = ACTIONS(2614), - [anon_sym_macro_rules_BANG] = ACTIONS(2614), - [anon_sym_LPAREN] = ACTIONS(2614), - [anon_sym_LBRACK] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(2614), - [anon_sym_RBRACE] = ACTIONS(2614), - [anon_sym_STAR] = ACTIONS(2614), - [anon_sym_u8] = ACTIONS(2616), - [anon_sym_i8] = ACTIONS(2616), - [anon_sym_u16] = ACTIONS(2616), - [anon_sym_i16] = ACTIONS(2616), - [anon_sym_u32] = ACTIONS(2616), - [anon_sym_i32] = ACTIONS(2616), - [anon_sym_u64] = ACTIONS(2616), - [anon_sym_i64] = ACTIONS(2616), - [anon_sym_u128] = ACTIONS(2616), - [anon_sym_i128] = ACTIONS(2616), - [anon_sym_isize] = ACTIONS(2616), - [anon_sym_usize] = ACTIONS(2616), - [anon_sym_f32] = ACTIONS(2616), - [anon_sym_f64] = ACTIONS(2616), - [anon_sym_bool] = ACTIONS(2616), - [anon_sym_str] = ACTIONS(2616), - [anon_sym_char] = ACTIONS(2616), - [anon_sym_DASH] = ACTIONS(2614), - [anon_sym_BANG] = ACTIONS(2614), - [anon_sym_AMP] = ACTIONS(2614), - [anon_sym_PIPE] = ACTIONS(2614), - [anon_sym_LT] = ACTIONS(2614), - [anon_sym_DOT_DOT] = ACTIONS(2614), - [anon_sym_COLON_COLON] = ACTIONS(2614), - [anon_sym_POUND] = ACTIONS(2614), - [anon_sym_SQUOTE] = ACTIONS(2616), - [anon_sym_async] = ACTIONS(2616), - [anon_sym_break] = ACTIONS(2616), - [anon_sym_const] = ACTIONS(2616), - [anon_sym_continue] = ACTIONS(2616), - [anon_sym_default] = ACTIONS(2616), - [anon_sym_enum] = ACTIONS(2616), - [anon_sym_fn] = ACTIONS(2616), - [anon_sym_for] = ACTIONS(2616), - [anon_sym_if] = ACTIONS(2616), - [anon_sym_impl] = ACTIONS(2616), - [anon_sym_let] = ACTIONS(2616), - [anon_sym_loop] = ACTIONS(2616), - [anon_sym_match] = ACTIONS(2616), - [anon_sym_mod] = ACTIONS(2616), - [anon_sym_pub] = ACTIONS(2616), - [anon_sym_return] = ACTIONS(2616), - [anon_sym_static] = ACTIONS(2616), - [anon_sym_struct] = ACTIONS(2616), - [anon_sym_trait] = ACTIONS(2616), - [anon_sym_type] = ACTIONS(2616), - [anon_sym_union] = ACTIONS(2616), - [anon_sym_unsafe] = ACTIONS(2616), - [anon_sym_use] = ACTIONS(2616), - [anon_sym_while] = ACTIONS(2616), - [anon_sym_extern] = ACTIONS(2616), - [anon_sym_yield] = ACTIONS(2616), - [anon_sym_move] = ACTIONS(2616), - [anon_sym_try] = ACTIONS(2616), - [sym_integer_literal] = ACTIONS(2614), - [aux_sym_string_literal_token1] = ACTIONS(2614), - [sym_char_literal] = ACTIONS(2614), - [anon_sym_true] = ACTIONS(2616), - [anon_sym_false] = ACTIONS(2616), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2616), - [sym_super] = ACTIONS(2616), - [sym_crate] = ACTIONS(2616), - [sym_metavariable] = ACTIONS(2614), - [sym__raw_string_literal_start] = ACTIONS(2614), - [sym_float_literal] = ACTIONS(2614), + [ts_builtin_sym_end] = ACTIONS(2627), + [sym_identifier] = ACTIONS(2629), + [anon_sym_SEMI] = ACTIONS(2627), + [anon_sym_macro_rules_BANG] = ACTIONS(2627), + [anon_sym_LPAREN] = ACTIONS(2627), + [anon_sym_LBRACK] = ACTIONS(2627), + [anon_sym_LBRACE] = ACTIONS(2627), + [anon_sym_RBRACE] = ACTIONS(2627), + [anon_sym_STAR] = ACTIONS(2627), + [anon_sym_u8] = ACTIONS(2629), + [anon_sym_i8] = ACTIONS(2629), + [anon_sym_u16] = ACTIONS(2629), + [anon_sym_i16] = ACTIONS(2629), + [anon_sym_u32] = ACTIONS(2629), + [anon_sym_i32] = ACTIONS(2629), + [anon_sym_u64] = ACTIONS(2629), + [anon_sym_i64] = ACTIONS(2629), + [anon_sym_u128] = ACTIONS(2629), + [anon_sym_i128] = ACTIONS(2629), + [anon_sym_isize] = ACTIONS(2629), + [anon_sym_usize] = ACTIONS(2629), + [anon_sym_f32] = ACTIONS(2629), + [anon_sym_f64] = ACTIONS(2629), + [anon_sym_bool] = ACTIONS(2629), + [anon_sym_str] = ACTIONS(2629), + [anon_sym_char] = ACTIONS(2629), + [anon_sym_DASH] = ACTIONS(2627), + [anon_sym_BANG] = ACTIONS(2627), + [anon_sym_AMP] = ACTIONS(2627), + [anon_sym_PIPE] = ACTIONS(2627), + [anon_sym_LT] = ACTIONS(2627), + [anon_sym_DOT_DOT] = ACTIONS(2627), + [anon_sym_COLON_COLON] = ACTIONS(2627), + [anon_sym_POUND] = ACTIONS(2627), + [anon_sym_SQUOTE] = ACTIONS(2629), + [anon_sym_async] = ACTIONS(2629), + [anon_sym_break] = ACTIONS(2629), + [anon_sym_const] = ACTIONS(2629), + [anon_sym_continue] = ACTIONS(2629), + [anon_sym_default] = ACTIONS(2629), + [anon_sym_enum] = ACTIONS(2629), + [anon_sym_fn] = ACTIONS(2629), + [anon_sym_for] = ACTIONS(2629), + [anon_sym_if] = ACTIONS(2629), + [anon_sym_impl] = ACTIONS(2629), + [anon_sym_let] = ACTIONS(2629), + [anon_sym_loop] = ACTIONS(2629), + [anon_sym_match] = ACTIONS(2629), + [anon_sym_mod] = ACTIONS(2629), + [anon_sym_pub] = ACTIONS(2629), + [anon_sym_return] = ACTIONS(2629), + [anon_sym_static] = ACTIONS(2629), + [anon_sym_struct] = ACTIONS(2629), + [anon_sym_trait] = ACTIONS(2629), + [anon_sym_type] = ACTIONS(2629), + [anon_sym_union] = ACTIONS(2629), + [anon_sym_unsafe] = ACTIONS(2629), + [anon_sym_use] = ACTIONS(2629), + [anon_sym_while] = ACTIONS(2629), + [anon_sym_extern] = ACTIONS(2629), + [anon_sym_yield] = ACTIONS(2629), + [anon_sym_move] = ACTIONS(2629), + [anon_sym_try] = ACTIONS(2629), + [sym_integer_literal] = ACTIONS(2627), + [aux_sym_string_literal_token1] = ACTIONS(2627), + [sym_char_literal] = ACTIONS(2627), + [anon_sym_true] = ACTIONS(2629), + [anon_sym_false] = ACTIONS(2629), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2629), + [sym_super] = ACTIONS(2629), + [sym_crate] = ACTIONS(2629), + [sym_metavariable] = ACTIONS(2627), + [sym__raw_string_literal_start] = ACTIONS(2627), + [sym_float_literal] = ACTIONS(2627), }, [697] = { [sym_line_comment] = STATE(697), [sym_block_comment] = STATE(697), - [ts_builtin_sym_end] = ACTIONS(2618), - [sym_identifier] = ACTIONS(2620), - [anon_sym_SEMI] = ACTIONS(2618), - [anon_sym_macro_rules_BANG] = ACTIONS(2618), - [anon_sym_LPAREN] = ACTIONS(2618), - [anon_sym_LBRACK] = ACTIONS(2618), - [anon_sym_LBRACE] = ACTIONS(2618), - [anon_sym_RBRACE] = ACTIONS(2618), - [anon_sym_STAR] = ACTIONS(2618), - [anon_sym_u8] = ACTIONS(2620), - [anon_sym_i8] = ACTIONS(2620), - [anon_sym_u16] = ACTIONS(2620), - [anon_sym_i16] = ACTIONS(2620), - [anon_sym_u32] = ACTIONS(2620), - [anon_sym_i32] = ACTIONS(2620), - [anon_sym_u64] = ACTIONS(2620), - [anon_sym_i64] = ACTIONS(2620), - [anon_sym_u128] = ACTIONS(2620), - [anon_sym_i128] = ACTIONS(2620), - [anon_sym_isize] = ACTIONS(2620), - [anon_sym_usize] = ACTIONS(2620), - [anon_sym_f32] = ACTIONS(2620), - [anon_sym_f64] = ACTIONS(2620), - [anon_sym_bool] = ACTIONS(2620), - [anon_sym_str] = ACTIONS(2620), - [anon_sym_char] = ACTIONS(2620), - [anon_sym_DASH] = ACTIONS(2618), - [anon_sym_BANG] = ACTIONS(2618), - [anon_sym_AMP] = ACTIONS(2618), - [anon_sym_PIPE] = ACTIONS(2618), - [anon_sym_LT] = ACTIONS(2618), - [anon_sym_DOT_DOT] = ACTIONS(2618), - [anon_sym_COLON_COLON] = ACTIONS(2618), - [anon_sym_POUND] = ACTIONS(2618), - [anon_sym_SQUOTE] = ACTIONS(2620), - [anon_sym_async] = ACTIONS(2620), - [anon_sym_break] = ACTIONS(2620), - [anon_sym_const] = ACTIONS(2620), - [anon_sym_continue] = ACTIONS(2620), - [anon_sym_default] = ACTIONS(2620), - [anon_sym_enum] = ACTIONS(2620), - [anon_sym_fn] = ACTIONS(2620), - [anon_sym_for] = ACTIONS(2620), - [anon_sym_if] = ACTIONS(2620), - [anon_sym_impl] = ACTIONS(2620), - [anon_sym_let] = ACTIONS(2620), - [anon_sym_loop] = ACTIONS(2620), - [anon_sym_match] = ACTIONS(2620), - [anon_sym_mod] = ACTIONS(2620), - [anon_sym_pub] = ACTIONS(2620), - [anon_sym_return] = ACTIONS(2620), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_struct] = ACTIONS(2620), - [anon_sym_trait] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_union] = ACTIONS(2620), - [anon_sym_unsafe] = ACTIONS(2620), - [anon_sym_use] = ACTIONS(2620), - [anon_sym_while] = ACTIONS(2620), - [anon_sym_extern] = ACTIONS(2620), - [anon_sym_yield] = ACTIONS(2620), - [anon_sym_move] = ACTIONS(2620), - [anon_sym_try] = ACTIONS(2620), - [sym_integer_literal] = ACTIONS(2618), - [aux_sym_string_literal_token1] = ACTIONS(2618), - [sym_char_literal] = ACTIONS(2618), - [anon_sym_true] = ACTIONS(2620), - [anon_sym_false] = ACTIONS(2620), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2620), - [sym_super] = ACTIONS(2620), - [sym_crate] = ACTIONS(2620), - [sym_metavariable] = ACTIONS(2618), - [sym__raw_string_literal_start] = ACTIONS(2618), - [sym_float_literal] = ACTIONS(2618), + [ts_builtin_sym_end] = ACTIONS(2631), + [sym_identifier] = ACTIONS(2633), + [anon_sym_SEMI] = ACTIONS(2631), + [anon_sym_macro_rules_BANG] = ACTIONS(2631), + [anon_sym_LPAREN] = ACTIONS(2631), + [anon_sym_LBRACK] = ACTIONS(2631), + [anon_sym_LBRACE] = ACTIONS(2631), + [anon_sym_RBRACE] = ACTIONS(2631), + [anon_sym_STAR] = ACTIONS(2631), + [anon_sym_u8] = ACTIONS(2633), + [anon_sym_i8] = ACTIONS(2633), + [anon_sym_u16] = ACTIONS(2633), + [anon_sym_i16] = ACTIONS(2633), + [anon_sym_u32] = ACTIONS(2633), + [anon_sym_i32] = ACTIONS(2633), + [anon_sym_u64] = ACTIONS(2633), + [anon_sym_i64] = ACTIONS(2633), + [anon_sym_u128] = ACTIONS(2633), + [anon_sym_i128] = ACTIONS(2633), + [anon_sym_isize] = ACTIONS(2633), + [anon_sym_usize] = ACTIONS(2633), + [anon_sym_f32] = ACTIONS(2633), + [anon_sym_f64] = ACTIONS(2633), + [anon_sym_bool] = ACTIONS(2633), + [anon_sym_str] = ACTIONS(2633), + [anon_sym_char] = ACTIONS(2633), + [anon_sym_DASH] = ACTIONS(2631), + [anon_sym_BANG] = ACTIONS(2631), + [anon_sym_AMP] = ACTIONS(2631), + [anon_sym_PIPE] = ACTIONS(2631), + [anon_sym_LT] = ACTIONS(2631), + [anon_sym_DOT_DOT] = ACTIONS(2631), + [anon_sym_COLON_COLON] = ACTIONS(2631), + [anon_sym_POUND] = ACTIONS(2631), + [anon_sym_SQUOTE] = ACTIONS(2633), + [anon_sym_async] = ACTIONS(2633), + [anon_sym_break] = ACTIONS(2633), + [anon_sym_const] = ACTIONS(2633), + [anon_sym_continue] = ACTIONS(2633), + [anon_sym_default] = ACTIONS(2633), + [anon_sym_enum] = ACTIONS(2633), + [anon_sym_fn] = ACTIONS(2633), + [anon_sym_for] = ACTIONS(2633), + [anon_sym_if] = ACTIONS(2633), + [anon_sym_impl] = ACTIONS(2633), + [anon_sym_let] = ACTIONS(2633), + [anon_sym_loop] = ACTIONS(2633), + [anon_sym_match] = ACTIONS(2633), + [anon_sym_mod] = ACTIONS(2633), + [anon_sym_pub] = ACTIONS(2633), + [anon_sym_return] = ACTIONS(2633), + [anon_sym_static] = ACTIONS(2633), + [anon_sym_struct] = ACTIONS(2633), + [anon_sym_trait] = ACTIONS(2633), + [anon_sym_type] = ACTIONS(2633), + [anon_sym_union] = ACTIONS(2633), + [anon_sym_unsafe] = ACTIONS(2633), + [anon_sym_use] = ACTIONS(2633), + [anon_sym_while] = ACTIONS(2633), + [anon_sym_extern] = ACTIONS(2633), + [anon_sym_yield] = ACTIONS(2633), + [anon_sym_move] = ACTIONS(2633), + [anon_sym_try] = ACTIONS(2633), + [sym_integer_literal] = ACTIONS(2631), + [aux_sym_string_literal_token1] = ACTIONS(2631), + [sym_char_literal] = ACTIONS(2631), + [anon_sym_true] = ACTIONS(2633), + [anon_sym_false] = ACTIONS(2633), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2633), + [sym_super] = ACTIONS(2633), + [sym_crate] = ACTIONS(2633), + [sym_metavariable] = ACTIONS(2631), + [sym__raw_string_literal_start] = ACTIONS(2631), + [sym_float_literal] = ACTIONS(2631), }, [698] = { + [sym_empty_statement] = STATE(1456), + [sym_macro_definition] = STATE(1456), + [sym_attribute_item] = STATE(1456), + [sym_inner_attribute_item] = STATE(1456), + [sym_mod_item] = STATE(1456), + [sym_foreign_mod_item] = STATE(1456), + [sym_struct_item] = STATE(1456), + [sym_union_item] = STATE(1456), + [sym_enum_item] = STATE(1456), + [sym_extern_crate_declaration] = STATE(1456), + [sym_const_item] = STATE(1456), + [sym_static_item] = STATE(1456), + [sym_type_item] = STATE(1456), + [sym_function_item] = STATE(1456), + [sym_function_signature_item] = STATE(1456), + [sym_function_modifiers] = STATE(3593), + [sym_impl_item] = STATE(1456), + [sym_trait_item] = STATE(1456), + [sym_associated_type] = STATE(1456), + [sym_let_declaration] = STATE(1456), + [sym_use_declaration] = STATE(1456), + [sym_extern_modifier] = STATE(2154), + [sym_visibility_modifier] = STATE(1934), + [sym_bracketed_type] = STATE(3324), + [sym_generic_type_with_turbofish] = STATE(3350), + [sym_macro_invocation] = STATE(1456), + [sym_scoped_identifier] = STATE(3156), [sym_line_comment] = STATE(698), [sym_block_comment] = STATE(698), - [ts_builtin_sym_end] = ACTIONS(2622), - [sym_identifier] = ACTIONS(2624), - [anon_sym_SEMI] = ACTIONS(2622), - [anon_sym_macro_rules_BANG] = ACTIONS(2622), - [anon_sym_LPAREN] = ACTIONS(2622), - [anon_sym_LBRACK] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(2622), - [anon_sym_RBRACE] = ACTIONS(2622), - [anon_sym_STAR] = ACTIONS(2622), - [anon_sym_u8] = ACTIONS(2624), - [anon_sym_i8] = ACTIONS(2624), - [anon_sym_u16] = ACTIONS(2624), - [anon_sym_i16] = ACTIONS(2624), - [anon_sym_u32] = ACTIONS(2624), - [anon_sym_i32] = ACTIONS(2624), - [anon_sym_u64] = ACTIONS(2624), - [anon_sym_i64] = ACTIONS(2624), - [anon_sym_u128] = ACTIONS(2624), - [anon_sym_i128] = ACTIONS(2624), - [anon_sym_isize] = ACTIONS(2624), - [anon_sym_usize] = ACTIONS(2624), - [anon_sym_f32] = ACTIONS(2624), - [anon_sym_f64] = ACTIONS(2624), - [anon_sym_bool] = ACTIONS(2624), - [anon_sym_str] = ACTIONS(2624), - [anon_sym_char] = ACTIONS(2624), - [anon_sym_DASH] = ACTIONS(2622), - [anon_sym_BANG] = ACTIONS(2622), - [anon_sym_AMP] = ACTIONS(2622), - [anon_sym_PIPE] = ACTIONS(2622), - [anon_sym_LT] = ACTIONS(2622), - [anon_sym_DOT_DOT] = ACTIONS(2622), - [anon_sym_COLON_COLON] = ACTIONS(2622), - [anon_sym_POUND] = ACTIONS(2622), - [anon_sym_SQUOTE] = ACTIONS(2624), - [anon_sym_async] = ACTIONS(2624), - [anon_sym_break] = ACTIONS(2624), - [anon_sym_const] = ACTIONS(2624), - [anon_sym_continue] = ACTIONS(2624), - [anon_sym_default] = ACTIONS(2624), - [anon_sym_enum] = ACTIONS(2624), - [anon_sym_fn] = ACTIONS(2624), - [anon_sym_for] = ACTIONS(2624), - [anon_sym_if] = ACTIONS(2624), - [anon_sym_impl] = ACTIONS(2624), - [anon_sym_let] = ACTIONS(2624), - [anon_sym_loop] = ACTIONS(2624), - [anon_sym_match] = ACTIONS(2624), - [anon_sym_mod] = ACTIONS(2624), - [anon_sym_pub] = ACTIONS(2624), - [anon_sym_return] = ACTIONS(2624), - [anon_sym_static] = ACTIONS(2624), - [anon_sym_struct] = ACTIONS(2624), - [anon_sym_trait] = ACTIONS(2624), - [anon_sym_type] = ACTIONS(2624), - [anon_sym_union] = ACTIONS(2624), - [anon_sym_unsafe] = ACTIONS(2624), - [anon_sym_use] = ACTIONS(2624), - [anon_sym_while] = ACTIONS(2624), - [anon_sym_extern] = ACTIONS(2624), - [anon_sym_yield] = ACTIONS(2624), - [anon_sym_move] = ACTIONS(2624), - [anon_sym_try] = ACTIONS(2624), - [sym_integer_literal] = ACTIONS(2622), - [aux_sym_string_literal_token1] = ACTIONS(2622), - [sym_char_literal] = ACTIONS(2622), - [anon_sym_true] = ACTIONS(2624), - [anon_sym_false] = ACTIONS(2624), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2624), - [sym_super] = ACTIONS(2624), - [sym_crate] = ACTIONS(2624), - [sym_metavariable] = ACTIONS(2622), - [sym__raw_string_literal_start] = ACTIONS(2622), - [sym_float_literal] = ACTIONS(2622), + [aux_sym_declaration_list_repeat1] = STATE(692), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2330), + [anon_sym_SEMI] = ACTIONS(2332), + [anon_sym_macro_rules_BANG] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2635), + [anon_sym_u8] = ACTIONS(2338), + [anon_sym_i8] = ACTIONS(2338), + [anon_sym_u16] = ACTIONS(2338), + [anon_sym_i16] = ACTIONS(2338), + [anon_sym_u32] = ACTIONS(2338), + [anon_sym_i32] = ACTIONS(2338), + [anon_sym_u64] = ACTIONS(2338), + [anon_sym_i64] = ACTIONS(2338), + [anon_sym_u128] = ACTIONS(2338), + [anon_sym_i128] = ACTIONS(2338), + [anon_sym_isize] = ACTIONS(2338), + [anon_sym_usize] = ACTIONS(2338), + [anon_sym_f32] = ACTIONS(2338), + [anon_sym_f64] = ACTIONS(2338), + [anon_sym_bool] = ACTIONS(2338), + [anon_sym_str] = ACTIONS(2338), + [anon_sym_char] = ACTIONS(2338), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(2342), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(2344), + [anon_sym_default] = ACTIONS(2346), + [anon_sym_enum] = ACTIONS(2348), + [anon_sym_fn] = ACTIONS(2350), + [anon_sym_impl] = ACTIONS(2352), + [anon_sym_let] = ACTIONS(2354), + [anon_sym_mod] = ACTIONS(2356), + [anon_sym_pub] = ACTIONS(67), + [anon_sym_static] = ACTIONS(2358), + [anon_sym_struct] = ACTIONS(2360), + [anon_sym_trait] = ACTIONS(2362), + [anon_sym_type] = ACTIONS(2364), + [anon_sym_union] = ACTIONS(2366), + [anon_sym_unsafe] = ACTIONS(2368), + [anon_sym_use] = ACTIONS(2370), + [anon_sym_extern] = ACTIONS(2372), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2374), + [sym_super] = ACTIONS(2374), + [sym_crate] = ACTIONS(2376), + [sym_metavariable] = ACTIONS(2378), }, [699] = { [sym_line_comment] = STATE(699), [sym_block_comment] = STATE(699), - [ts_builtin_sym_end] = ACTIONS(2626), - [sym_identifier] = ACTIONS(2628), - [anon_sym_SEMI] = ACTIONS(2626), - [anon_sym_macro_rules_BANG] = ACTIONS(2626), - [anon_sym_LPAREN] = ACTIONS(2626), - [anon_sym_LBRACK] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(2626), - [anon_sym_RBRACE] = ACTIONS(2626), - [anon_sym_STAR] = ACTIONS(2626), - [anon_sym_u8] = ACTIONS(2628), - [anon_sym_i8] = ACTIONS(2628), - [anon_sym_u16] = ACTIONS(2628), - [anon_sym_i16] = ACTIONS(2628), - [anon_sym_u32] = ACTIONS(2628), - [anon_sym_i32] = ACTIONS(2628), - [anon_sym_u64] = ACTIONS(2628), - [anon_sym_i64] = ACTIONS(2628), - [anon_sym_u128] = ACTIONS(2628), - [anon_sym_i128] = ACTIONS(2628), - [anon_sym_isize] = ACTIONS(2628), - [anon_sym_usize] = ACTIONS(2628), - [anon_sym_f32] = ACTIONS(2628), - [anon_sym_f64] = ACTIONS(2628), - [anon_sym_bool] = ACTIONS(2628), - [anon_sym_str] = ACTIONS(2628), - [anon_sym_char] = ACTIONS(2628), - [anon_sym_DASH] = ACTIONS(2626), - [anon_sym_BANG] = ACTIONS(2626), - [anon_sym_AMP] = ACTIONS(2626), - [anon_sym_PIPE] = ACTIONS(2626), - [anon_sym_LT] = ACTIONS(2626), - [anon_sym_DOT_DOT] = ACTIONS(2626), - [anon_sym_COLON_COLON] = ACTIONS(2626), - [anon_sym_POUND] = ACTIONS(2626), - [anon_sym_SQUOTE] = ACTIONS(2628), - [anon_sym_async] = ACTIONS(2628), - [anon_sym_break] = ACTIONS(2628), - [anon_sym_const] = ACTIONS(2628), - [anon_sym_continue] = ACTIONS(2628), - [anon_sym_default] = ACTIONS(2628), - [anon_sym_enum] = ACTIONS(2628), - [anon_sym_fn] = ACTIONS(2628), - [anon_sym_for] = ACTIONS(2628), - [anon_sym_if] = ACTIONS(2628), - [anon_sym_impl] = ACTIONS(2628), - [anon_sym_let] = ACTIONS(2628), - [anon_sym_loop] = ACTIONS(2628), - [anon_sym_match] = ACTIONS(2628), - [anon_sym_mod] = ACTIONS(2628), - [anon_sym_pub] = ACTIONS(2628), - [anon_sym_return] = ACTIONS(2628), - [anon_sym_static] = ACTIONS(2628), - [anon_sym_struct] = ACTIONS(2628), - [anon_sym_trait] = ACTIONS(2628), - [anon_sym_type] = ACTIONS(2628), - [anon_sym_union] = ACTIONS(2628), - [anon_sym_unsafe] = ACTIONS(2628), - [anon_sym_use] = ACTIONS(2628), - [anon_sym_while] = ACTIONS(2628), - [anon_sym_extern] = ACTIONS(2628), - [anon_sym_yield] = ACTIONS(2628), - [anon_sym_move] = ACTIONS(2628), - [anon_sym_try] = ACTIONS(2628), - [sym_integer_literal] = ACTIONS(2626), - [aux_sym_string_literal_token1] = ACTIONS(2626), - [sym_char_literal] = ACTIONS(2626), - [anon_sym_true] = ACTIONS(2628), - [anon_sym_false] = ACTIONS(2628), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2628), - [sym_super] = ACTIONS(2628), - [sym_crate] = ACTIONS(2628), - [sym_metavariable] = ACTIONS(2626), - [sym__raw_string_literal_start] = ACTIONS(2626), - [sym_float_literal] = ACTIONS(2626), + [ts_builtin_sym_end] = ACTIONS(2637), + [sym_identifier] = ACTIONS(2639), + [anon_sym_SEMI] = ACTIONS(2637), + [anon_sym_macro_rules_BANG] = ACTIONS(2637), + [anon_sym_LPAREN] = ACTIONS(2637), + [anon_sym_LBRACK] = ACTIONS(2637), + [anon_sym_LBRACE] = ACTIONS(2637), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_STAR] = ACTIONS(2637), + [anon_sym_u8] = ACTIONS(2639), + [anon_sym_i8] = ACTIONS(2639), + [anon_sym_u16] = ACTIONS(2639), + [anon_sym_i16] = ACTIONS(2639), + [anon_sym_u32] = ACTIONS(2639), + [anon_sym_i32] = ACTIONS(2639), + [anon_sym_u64] = ACTIONS(2639), + [anon_sym_i64] = ACTIONS(2639), + [anon_sym_u128] = ACTIONS(2639), + [anon_sym_i128] = ACTIONS(2639), + [anon_sym_isize] = ACTIONS(2639), + [anon_sym_usize] = ACTIONS(2639), + [anon_sym_f32] = ACTIONS(2639), + [anon_sym_f64] = ACTIONS(2639), + [anon_sym_bool] = ACTIONS(2639), + [anon_sym_str] = ACTIONS(2639), + [anon_sym_char] = ACTIONS(2639), + [anon_sym_DASH] = ACTIONS(2637), + [anon_sym_BANG] = ACTIONS(2637), + [anon_sym_AMP] = ACTIONS(2637), + [anon_sym_PIPE] = ACTIONS(2637), + [anon_sym_LT] = ACTIONS(2637), + [anon_sym_DOT_DOT] = ACTIONS(2637), + [anon_sym_COLON_COLON] = ACTIONS(2637), + [anon_sym_POUND] = ACTIONS(2637), + [anon_sym_SQUOTE] = ACTIONS(2639), + [anon_sym_async] = ACTIONS(2639), + [anon_sym_break] = ACTIONS(2639), + [anon_sym_const] = ACTIONS(2639), + [anon_sym_continue] = ACTIONS(2639), + [anon_sym_default] = ACTIONS(2639), + [anon_sym_enum] = ACTIONS(2639), + [anon_sym_fn] = ACTIONS(2639), + [anon_sym_for] = ACTIONS(2639), + [anon_sym_if] = ACTIONS(2639), + [anon_sym_impl] = ACTIONS(2639), + [anon_sym_let] = ACTIONS(2639), + [anon_sym_loop] = ACTIONS(2639), + [anon_sym_match] = ACTIONS(2639), + [anon_sym_mod] = ACTIONS(2639), + [anon_sym_pub] = ACTIONS(2639), + [anon_sym_return] = ACTIONS(2639), + [anon_sym_static] = ACTIONS(2639), + [anon_sym_struct] = ACTIONS(2639), + [anon_sym_trait] = ACTIONS(2639), + [anon_sym_type] = ACTIONS(2639), + [anon_sym_union] = ACTIONS(2639), + [anon_sym_unsafe] = ACTIONS(2639), + [anon_sym_use] = ACTIONS(2639), + [anon_sym_while] = ACTIONS(2639), + [anon_sym_extern] = ACTIONS(2639), + [anon_sym_yield] = ACTIONS(2639), + [anon_sym_move] = ACTIONS(2639), + [anon_sym_try] = ACTIONS(2639), + [sym_integer_literal] = ACTIONS(2637), + [aux_sym_string_literal_token1] = ACTIONS(2637), + [sym_char_literal] = ACTIONS(2637), + [anon_sym_true] = ACTIONS(2639), + [anon_sym_false] = ACTIONS(2639), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2639), + [sym_super] = ACTIONS(2639), + [sym_crate] = ACTIONS(2639), + [sym_metavariable] = ACTIONS(2637), + [sym__raw_string_literal_start] = ACTIONS(2637), + [sym_float_literal] = ACTIONS(2637), }, [700] = { [sym_line_comment] = STATE(700), [sym_block_comment] = STATE(700), - [ts_builtin_sym_end] = ACTIONS(2630), - [sym_identifier] = ACTIONS(2632), - [anon_sym_SEMI] = ACTIONS(2630), - [anon_sym_macro_rules_BANG] = ACTIONS(2630), - [anon_sym_LPAREN] = ACTIONS(2630), - [anon_sym_LBRACK] = ACTIONS(2630), - [anon_sym_LBRACE] = ACTIONS(2630), - [anon_sym_RBRACE] = ACTIONS(2630), - [anon_sym_STAR] = ACTIONS(2630), - [anon_sym_u8] = ACTIONS(2632), - [anon_sym_i8] = ACTIONS(2632), - [anon_sym_u16] = ACTIONS(2632), - [anon_sym_i16] = ACTIONS(2632), - [anon_sym_u32] = ACTIONS(2632), - [anon_sym_i32] = ACTIONS(2632), - [anon_sym_u64] = ACTIONS(2632), - [anon_sym_i64] = ACTIONS(2632), - [anon_sym_u128] = ACTIONS(2632), - [anon_sym_i128] = ACTIONS(2632), - [anon_sym_isize] = ACTIONS(2632), - [anon_sym_usize] = ACTIONS(2632), - [anon_sym_f32] = ACTIONS(2632), - [anon_sym_f64] = ACTIONS(2632), - [anon_sym_bool] = ACTIONS(2632), - [anon_sym_str] = ACTIONS(2632), - [anon_sym_char] = ACTIONS(2632), - [anon_sym_DASH] = ACTIONS(2630), - [anon_sym_BANG] = ACTIONS(2630), - [anon_sym_AMP] = ACTIONS(2630), - [anon_sym_PIPE] = ACTIONS(2630), - [anon_sym_LT] = ACTIONS(2630), - [anon_sym_DOT_DOT] = ACTIONS(2630), - [anon_sym_COLON_COLON] = ACTIONS(2630), - [anon_sym_POUND] = ACTIONS(2630), - [anon_sym_SQUOTE] = ACTIONS(2632), - [anon_sym_async] = ACTIONS(2632), - [anon_sym_break] = ACTIONS(2632), - [anon_sym_const] = ACTIONS(2632), - [anon_sym_continue] = ACTIONS(2632), - [anon_sym_default] = ACTIONS(2632), - [anon_sym_enum] = ACTIONS(2632), - [anon_sym_fn] = ACTIONS(2632), - [anon_sym_for] = ACTIONS(2632), - [anon_sym_if] = ACTIONS(2632), - [anon_sym_impl] = ACTIONS(2632), - [anon_sym_let] = ACTIONS(2632), - [anon_sym_loop] = ACTIONS(2632), - [anon_sym_match] = ACTIONS(2632), - [anon_sym_mod] = ACTIONS(2632), - [anon_sym_pub] = ACTIONS(2632), - [anon_sym_return] = ACTIONS(2632), - [anon_sym_static] = ACTIONS(2632), - [anon_sym_struct] = ACTIONS(2632), - [anon_sym_trait] = ACTIONS(2632), - [anon_sym_type] = ACTIONS(2632), - [anon_sym_union] = ACTIONS(2632), - [anon_sym_unsafe] = ACTIONS(2632), - [anon_sym_use] = ACTIONS(2632), - [anon_sym_while] = ACTIONS(2632), - [anon_sym_extern] = ACTIONS(2632), - [anon_sym_yield] = ACTIONS(2632), - [anon_sym_move] = ACTIONS(2632), - [anon_sym_try] = ACTIONS(2632), - [sym_integer_literal] = ACTIONS(2630), - [aux_sym_string_literal_token1] = ACTIONS(2630), - [sym_char_literal] = ACTIONS(2630), - [anon_sym_true] = ACTIONS(2632), - [anon_sym_false] = ACTIONS(2632), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2632), - [sym_super] = ACTIONS(2632), - [sym_crate] = ACTIONS(2632), - [sym_metavariable] = ACTIONS(2630), - [sym__raw_string_literal_start] = ACTIONS(2630), - [sym_float_literal] = ACTIONS(2630), + [ts_builtin_sym_end] = ACTIONS(2641), + [sym_identifier] = ACTIONS(2643), + [anon_sym_SEMI] = ACTIONS(2641), + [anon_sym_macro_rules_BANG] = ACTIONS(2641), + [anon_sym_LPAREN] = ACTIONS(2641), + [anon_sym_LBRACK] = ACTIONS(2641), + [anon_sym_LBRACE] = ACTIONS(2641), + [anon_sym_RBRACE] = ACTIONS(2641), + [anon_sym_STAR] = ACTIONS(2641), + [anon_sym_u8] = ACTIONS(2643), + [anon_sym_i8] = ACTIONS(2643), + [anon_sym_u16] = ACTIONS(2643), + [anon_sym_i16] = ACTIONS(2643), + [anon_sym_u32] = ACTIONS(2643), + [anon_sym_i32] = ACTIONS(2643), + [anon_sym_u64] = ACTIONS(2643), + [anon_sym_i64] = ACTIONS(2643), + [anon_sym_u128] = ACTIONS(2643), + [anon_sym_i128] = ACTIONS(2643), + [anon_sym_isize] = ACTIONS(2643), + [anon_sym_usize] = ACTIONS(2643), + [anon_sym_f32] = ACTIONS(2643), + [anon_sym_f64] = ACTIONS(2643), + [anon_sym_bool] = ACTIONS(2643), + [anon_sym_str] = ACTIONS(2643), + [anon_sym_char] = ACTIONS(2643), + [anon_sym_DASH] = ACTIONS(2641), + [anon_sym_BANG] = ACTIONS(2641), + [anon_sym_AMP] = ACTIONS(2641), + [anon_sym_PIPE] = ACTIONS(2641), + [anon_sym_LT] = ACTIONS(2641), + [anon_sym_DOT_DOT] = ACTIONS(2641), + [anon_sym_COLON_COLON] = ACTIONS(2641), + [anon_sym_POUND] = ACTIONS(2641), + [anon_sym_SQUOTE] = ACTIONS(2643), + [anon_sym_async] = ACTIONS(2643), + [anon_sym_break] = ACTIONS(2643), + [anon_sym_const] = ACTIONS(2643), + [anon_sym_continue] = ACTIONS(2643), + [anon_sym_default] = ACTIONS(2643), + [anon_sym_enum] = ACTIONS(2643), + [anon_sym_fn] = ACTIONS(2643), + [anon_sym_for] = ACTIONS(2643), + [anon_sym_if] = ACTIONS(2643), + [anon_sym_impl] = ACTIONS(2643), + [anon_sym_let] = ACTIONS(2643), + [anon_sym_loop] = ACTIONS(2643), + [anon_sym_match] = ACTIONS(2643), + [anon_sym_mod] = ACTIONS(2643), + [anon_sym_pub] = ACTIONS(2643), + [anon_sym_return] = ACTIONS(2643), + [anon_sym_static] = ACTIONS(2643), + [anon_sym_struct] = ACTIONS(2643), + [anon_sym_trait] = ACTIONS(2643), + [anon_sym_type] = ACTIONS(2643), + [anon_sym_union] = ACTIONS(2643), + [anon_sym_unsafe] = ACTIONS(2643), + [anon_sym_use] = ACTIONS(2643), + [anon_sym_while] = ACTIONS(2643), + [anon_sym_extern] = ACTIONS(2643), + [anon_sym_yield] = ACTIONS(2643), + [anon_sym_move] = ACTIONS(2643), + [anon_sym_try] = ACTIONS(2643), + [sym_integer_literal] = ACTIONS(2641), + [aux_sym_string_literal_token1] = ACTIONS(2641), + [sym_char_literal] = ACTIONS(2641), + [anon_sym_true] = ACTIONS(2643), + [anon_sym_false] = ACTIONS(2643), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2643), + [sym_super] = ACTIONS(2643), + [sym_crate] = ACTIONS(2643), + [sym_metavariable] = ACTIONS(2641), + [sym__raw_string_literal_start] = ACTIONS(2641), + [sym_float_literal] = ACTIONS(2641), }, [701] = { [sym_line_comment] = STATE(701), [sym_block_comment] = STATE(701), - [ts_builtin_sym_end] = ACTIONS(2634), - [sym_identifier] = ACTIONS(2636), - [anon_sym_SEMI] = ACTIONS(2634), - [anon_sym_macro_rules_BANG] = ACTIONS(2634), - [anon_sym_LPAREN] = ACTIONS(2634), - [anon_sym_LBRACK] = ACTIONS(2634), - [anon_sym_LBRACE] = ACTIONS(2634), - [anon_sym_RBRACE] = ACTIONS(2634), - [anon_sym_STAR] = ACTIONS(2634), - [anon_sym_u8] = ACTIONS(2636), - [anon_sym_i8] = ACTIONS(2636), - [anon_sym_u16] = ACTIONS(2636), - [anon_sym_i16] = ACTIONS(2636), - [anon_sym_u32] = ACTIONS(2636), - [anon_sym_i32] = ACTIONS(2636), - [anon_sym_u64] = ACTIONS(2636), - [anon_sym_i64] = ACTIONS(2636), - [anon_sym_u128] = ACTIONS(2636), - [anon_sym_i128] = ACTIONS(2636), - [anon_sym_isize] = ACTIONS(2636), - [anon_sym_usize] = ACTIONS(2636), - [anon_sym_f32] = ACTIONS(2636), - [anon_sym_f64] = ACTIONS(2636), - [anon_sym_bool] = ACTIONS(2636), - [anon_sym_str] = ACTIONS(2636), - [anon_sym_char] = ACTIONS(2636), - [anon_sym_DASH] = ACTIONS(2634), - [anon_sym_BANG] = ACTIONS(2634), - [anon_sym_AMP] = ACTIONS(2634), - [anon_sym_PIPE] = ACTIONS(2634), - [anon_sym_LT] = ACTIONS(2634), - [anon_sym_DOT_DOT] = ACTIONS(2634), - [anon_sym_COLON_COLON] = ACTIONS(2634), - [anon_sym_POUND] = ACTIONS(2634), - [anon_sym_SQUOTE] = ACTIONS(2636), - [anon_sym_async] = ACTIONS(2636), - [anon_sym_break] = ACTIONS(2636), - [anon_sym_const] = ACTIONS(2636), - [anon_sym_continue] = ACTIONS(2636), - [anon_sym_default] = ACTIONS(2636), - [anon_sym_enum] = ACTIONS(2636), - [anon_sym_fn] = ACTIONS(2636), - [anon_sym_for] = ACTIONS(2636), - [anon_sym_if] = ACTIONS(2636), - [anon_sym_impl] = ACTIONS(2636), - [anon_sym_let] = ACTIONS(2636), - [anon_sym_loop] = ACTIONS(2636), - [anon_sym_match] = ACTIONS(2636), - [anon_sym_mod] = ACTIONS(2636), - [anon_sym_pub] = ACTIONS(2636), - [anon_sym_return] = ACTIONS(2636), - [anon_sym_static] = ACTIONS(2636), - [anon_sym_struct] = ACTIONS(2636), - [anon_sym_trait] = ACTIONS(2636), - [anon_sym_type] = ACTIONS(2636), - [anon_sym_union] = ACTIONS(2636), - [anon_sym_unsafe] = ACTIONS(2636), - [anon_sym_use] = ACTIONS(2636), - [anon_sym_while] = ACTIONS(2636), - [anon_sym_extern] = ACTIONS(2636), - [anon_sym_yield] = ACTIONS(2636), - [anon_sym_move] = ACTIONS(2636), - [anon_sym_try] = ACTIONS(2636), - [sym_integer_literal] = ACTIONS(2634), - [aux_sym_string_literal_token1] = ACTIONS(2634), - [sym_char_literal] = ACTIONS(2634), - [anon_sym_true] = ACTIONS(2636), - [anon_sym_false] = ACTIONS(2636), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2636), - [sym_super] = ACTIONS(2636), - [sym_crate] = ACTIONS(2636), - [sym_metavariable] = ACTIONS(2634), - [sym__raw_string_literal_start] = ACTIONS(2634), - [sym_float_literal] = ACTIONS(2634), + [ts_builtin_sym_end] = ACTIONS(2645), + [sym_identifier] = ACTIONS(2647), + [anon_sym_SEMI] = ACTIONS(2645), + [anon_sym_macro_rules_BANG] = ACTIONS(2645), + [anon_sym_LPAREN] = ACTIONS(2645), + [anon_sym_LBRACK] = ACTIONS(2645), + [anon_sym_LBRACE] = ACTIONS(2645), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_STAR] = ACTIONS(2645), + [anon_sym_u8] = ACTIONS(2647), + [anon_sym_i8] = ACTIONS(2647), + [anon_sym_u16] = ACTIONS(2647), + [anon_sym_i16] = ACTIONS(2647), + [anon_sym_u32] = ACTIONS(2647), + [anon_sym_i32] = ACTIONS(2647), + [anon_sym_u64] = ACTIONS(2647), + [anon_sym_i64] = ACTIONS(2647), + [anon_sym_u128] = ACTIONS(2647), + [anon_sym_i128] = ACTIONS(2647), + [anon_sym_isize] = ACTIONS(2647), + [anon_sym_usize] = ACTIONS(2647), + [anon_sym_f32] = ACTIONS(2647), + [anon_sym_f64] = ACTIONS(2647), + [anon_sym_bool] = ACTIONS(2647), + [anon_sym_str] = ACTIONS(2647), + [anon_sym_char] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2645), + [anon_sym_BANG] = ACTIONS(2645), + [anon_sym_AMP] = ACTIONS(2645), + [anon_sym_PIPE] = ACTIONS(2645), + [anon_sym_LT] = ACTIONS(2645), + [anon_sym_DOT_DOT] = ACTIONS(2645), + [anon_sym_COLON_COLON] = ACTIONS(2645), + [anon_sym_POUND] = ACTIONS(2645), + [anon_sym_SQUOTE] = ACTIONS(2647), + [anon_sym_async] = ACTIONS(2647), + [anon_sym_break] = ACTIONS(2647), + [anon_sym_const] = ACTIONS(2647), + [anon_sym_continue] = ACTIONS(2647), + [anon_sym_default] = ACTIONS(2647), + [anon_sym_enum] = ACTIONS(2647), + [anon_sym_fn] = ACTIONS(2647), + [anon_sym_for] = ACTIONS(2647), + [anon_sym_if] = ACTIONS(2647), + [anon_sym_impl] = ACTIONS(2647), + [anon_sym_let] = ACTIONS(2647), + [anon_sym_loop] = ACTIONS(2647), + [anon_sym_match] = ACTIONS(2647), + [anon_sym_mod] = ACTIONS(2647), + [anon_sym_pub] = ACTIONS(2647), + [anon_sym_return] = ACTIONS(2647), + [anon_sym_static] = ACTIONS(2647), + [anon_sym_struct] = ACTIONS(2647), + [anon_sym_trait] = ACTIONS(2647), + [anon_sym_type] = ACTIONS(2647), + [anon_sym_union] = ACTIONS(2647), + [anon_sym_unsafe] = ACTIONS(2647), + [anon_sym_use] = ACTIONS(2647), + [anon_sym_while] = ACTIONS(2647), + [anon_sym_extern] = ACTIONS(2647), + [anon_sym_yield] = ACTIONS(2647), + [anon_sym_move] = ACTIONS(2647), + [anon_sym_try] = ACTIONS(2647), + [sym_integer_literal] = ACTIONS(2645), + [aux_sym_string_literal_token1] = ACTIONS(2645), + [sym_char_literal] = ACTIONS(2645), + [anon_sym_true] = ACTIONS(2647), + [anon_sym_false] = ACTIONS(2647), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2647), + [sym_super] = ACTIONS(2647), + [sym_crate] = ACTIONS(2647), + [sym_metavariable] = ACTIONS(2645), + [sym__raw_string_literal_start] = ACTIONS(2645), + [sym_float_literal] = ACTIONS(2645), }, [702] = { [sym_line_comment] = STATE(702), [sym_block_comment] = STATE(702), - [ts_builtin_sym_end] = ACTIONS(2638), - [sym_identifier] = ACTIONS(2640), - [anon_sym_SEMI] = ACTIONS(2638), - [anon_sym_macro_rules_BANG] = ACTIONS(2638), - [anon_sym_LPAREN] = ACTIONS(2638), - [anon_sym_LBRACK] = ACTIONS(2638), - [anon_sym_LBRACE] = ACTIONS(2638), - [anon_sym_RBRACE] = ACTIONS(2638), - [anon_sym_STAR] = ACTIONS(2638), - [anon_sym_u8] = ACTIONS(2640), - [anon_sym_i8] = ACTIONS(2640), - [anon_sym_u16] = ACTIONS(2640), - [anon_sym_i16] = ACTIONS(2640), - [anon_sym_u32] = ACTIONS(2640), - [anon_sym_i32] = ACTIONS(2640), - [anon_sym_u64] = ACTIONS(2640), - [anon_sym_i64] = ACTIONS(2640), - [anon_sym_u128] = ACTIONS(2640), - [anon_sym_i128] = ACTIONS(2640), - [anon_sym_isize] = ACTIONS(2640), - [anon_sym_usize] = ACTIONS(2640), - [anon_sym_f32] = ACTIONS(2640), - [anon_sym_f64] = ACTIONS(2640), - [anon_sym_bool] = ACTIONS(2640), - [anon_sym_str] = ACTIONS(2640), - [anon_sym_char] = ACTIONS(2640), - [anon_sym_DASH] = ACTIONS(2638), - [anon_sym_BANG] = ACTIONS(2638), - [anon_sym_AMP] = ACTIONS(2638), - [anon_sym_PIPE] = ACTIONS(2638), - [anon_sym_LT] = ACTIONS(2638), - [anon_sym_DOT_DOT] = ACTIONS(2638), - [anon_sym_COLON_COLON] = ACTIONS(2638), - [anon_sym_POUND] = ACTIONS(2638), - [anon_sym_SQUOTE] = ACTIONS(2640), - [anon_sym_async] = ACTIONS(2640), - [anon_sym_break] = ACTIONS(2640), - [anon_sym_const] = ACTIONS(2640), - [anon_sym_continue] = ACTIONS(2640), - [anon_sym_default] = ACTIONS(2640), - [anon_sym_enum] = ACTIONS(2640), - [anon_sym_fn] = ACTIONS(2640), - [anon_sym_for] = ACTIONS(2640), - [anon_sym_if] = ACTIONS(2640), - [anon_sym_impl] = ACTIONS(2640), - [anon_sym_let] = ACTIONS(2640), - [anon_sym_loop] = ACTIONS(2640), - [anon_sym_match] = ACTIONS(2640), - [anon_sym_mod] = ACTIONS(2640), - [anon_sym_pub] = ACTIONS(2640), - [anon_sym_return] = ACTIONS(2640), - [anon_sym_static] = ACTIONS(2640), - [anon_sym_struct] = ACTIONS(2640), - [anon_sym_trait] = ACTIONS(2640), - [anon_sym_type] = ACTIONS(2640), - [anon_sym_union] = ACTIONS(2640), - [anon_sym_unsafe] = ACTIONS(2640), - [anon_sym_use] = ACTIONS(2640), - [anon_sym_while] = ACTIONS(2640), - [anon_sym_extern] = ACTIONS(2640), - [anon_sym_yield] = ACTIONS(2640), - [anon_sym_move] = ACTIONS(2640), - [anon_sym_try] = ACTIONS(2640), - [sym_integer_literal] = ACTIONS(2638), - [aux_sym_string_literal_token1] = ACTIONS(2638), - [sym_char_literal] = ACTIONS(2638), - [anon_sym_true] = ACTIONS(2640), - [anon_sym_false] = ACTIONS(2640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2640), - [sym_super] = ACTIONS(2640), - [sym_crate] = ACTIONS(2640), - [sym_metavariable] = ACTIONS(2638), - [sym__raw_string_literal_start] = ACTIONS(2638), - [sym_float_literal] = ACTIONS(2638), + [ts_builtin_sym_end] = ACTIONS(2649), + [sym_identifier] = ACTIONS(2651), + [anon_sym_SEMI] = ACTIONS(2649), + [anon_sym_macro_rules_BANG] = ACTIONS(2649), + [anon_sym_LPAREN] = ACTIONS(2649), + [anon_sym_LBRACK] = ACTIONS(2649), + [anon_sym_LBRACE] = ACTIONS(2649), + [anon_sym_RBRACE] = ACTIONS(2649), + [anon_sym_STAR] = ACTIONS(2649), + [anon_sym_u8] = ACTIONS(2651), + [anon_sym_i8] = ACTIONS(2651), + [anon_sym_u16] = ACTIONS(2651), + [anon_sym_i16] = ACTIONS(2651), + [anon_sym_u32] = ACTIONS(2651), + [anon_sym_i32] = ACTIONS(2651), + [anon_sym_u64] = ACTIONS(2651), + [anon_sym_i64] = ACTIONS(2651), + [anon_sym_u128] = ACTIONS(2651), + [anon_sym_i128] = ACTIONS(2651), + [anon_sym_isize] = ACTIONS(2651), + [anon_sym_usize] = ACTIONS(2651), + [anon_sym_f32] = ACTIONS(2651), + [anon_sym_f64] = ACTIONS(2651), + [anon_sym_bool] = ACTIONS(2651), + [anon_sym_str] = ACTIONS(2651), + [anon_sym_char] = ACTIONS(2651), + [anon_sym_DASH] = ACTIONS(2649), + [anon_sym_BANG] = ACTIONS(2649), + [anon_sym_AMP] = ACTIONS(2649), + [anon_sym_PIPE] = ACTIONS(2649), + [anon_sym_LT] = ACTIONS(2649), + [anon_sym_DOT_DOT] = ACTIONS(2649), + [anon_sym_COLON_COLON] = ACTIONS(2649), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_SQUOTE] = ACTIONS(2651), + [anon_sym_async] = ACTIONS(2651), + [anon_sym_break] = ACTIONS(2651), + [anon_sym_const] = ACTIONS(2651), + [anon_sym_continue] = ACTIONS(2651), + [anon_sym_default] = ACTIONS(2651), + [anon_sym_enum] = ACTIONS(2651), + [anon_sym_fn] = ACTIONS(2651), + [anon_sym_for] = ACTIONS(2651), + [anon_sym_if] = ACTIONS(2651), + [anon_sym_impl] = ACTIONS(2651), + [anon_sym_let] = ACTIONS(2651), + [anon_sym_loop] = ACTIONS(2651), + [anon_sym_match] = ACTIONS(2651), + [anon_sym_mod] = ACTIONS(2651), + [anon_sym_pub] = ACTIONS(2651), + [anon_sym_return] = ACTIONS(2651), + [anon_sym_static] = ACTIONS(2651), + [anon_sym_struct] = ACTIONS(2651), + [anon_sym_trait] = ACTIONS(2651), + [anon_sym_type] = ACTIONS(2651), + [anon_sym_union] = ACTIONS(2651), + [anon_sym_unsafe] = ACTIONS(2651), + [anon_sym_use] = ACTIONS(2651), + [anon_sym_while] = ACTIONS(2651), + [anon_sym_extern] = ACTIONS(2651), + [anon_sym_yield] = ACTIONS(2651), + [anon_sym_move] = ACTIONS(2651), + [anon_sym_try] = ACTIONS(2651), + [sym_integer_literal] = ACTIONS(2649), + [aux_sym_string_literal_token1] = ACTIONS(2649), + [sym_char_literal] = ACTIONS(2649), + [anon_sym_true] = ACTIONS(2651), + [anon_sym_false] = ACTIONS(2651), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2651), + [sym_super] = ACTIONS(2651), + [sym_crate] = ACTIONS(2651), + [sym_metavariable] = ACTIONS(2649), + [sym__raw_string_literal_start] = ACTIONS(2649), + [sym_float_literal] = ACTIONS(2649), }, [703] = { [sym_line_comment] = STATE(703), [sym_block_comment] = STATE(703), - [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_BANG] = ACTIONS(2642), - [anon_sym_AMP] = ACTIONS(2642), - [anon_sym_PIPE] = ACTIONS(2642), - [anon_sym_LT] = ACTIONS(2642), - [anon_sym_DOT_DOT] = ACTIONS(2642), - [anon_sym_COLON_COLON] = ACTIONS(2642), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2642), - [sym_float_literal] = ACTIONS(2642), + [ts_builtin_sym_end] = ACTIONS(2653), + [sym_identifier] = ACTIONS(2655), + [anon_sym_SEMI] = ACTIONS(2653), + [anon_sym_macro_rules_BANG] = ACTIONS(2653), + [anon_sym_LPAREN] = ACTIONS(2653), + [anon_sym_LBRACK] = ACTIONS(2653), + [anon_sym_LBRACE] = ACTIONS(2653), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_STAR] = ACTIONS(2653), + [anon_sym_u8] = ACTIONS(2655), + [anon_sym_i8] = ACTIONS(2655), + [anon_sym_u16] = ACTIONS(2655), + [anon_sym_i16] = ACTIONS(2655), + [anon_sym_u32] = ACTIONS(2655), + [anon_sym_i32] = ACTIONS(2655), + [anon_sym_u64] = ACTIONS(2655), + [anon_sym_i64] = ACTIONS(2655), + [anon_sym_u128] = ACTIONS(2655), + [anon_sym_i128] = ACTIONS(2655), + [anon_sym_isize] = ACTIONS(2655), + [anon_sym_usize] = ACTIONS(2655), + [anon_sym_f32] = ACTIONS(2655), + [anon_sym_f64] = ACTIONS(2655), + [anon_sym_bool] = ACTIONS(2655), + [anon_sym_str] = ACTIONS(2655), + [anon_sym_char] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2653), + [anon_sym_BANG] = ACTIONS(2653), + [anon_sym_AMP] = ACTIONS(2653), + [anon_sym_PIPE] = ACTIONS(2653), + [anon_sym_LT] = ACTIONS(2653), + [anon_sym_DOT_DOT] = ACTIONS(2653), + [anon_sym_COLON_COLON] = ACTIONS(2653), + [anon_sym_POUND] = ACTIONS(2653), + [anon_sym_SQUOTE] = ACTIONS(2655), + [anon_sym_async] = ACTIONS(2655), + [anon_sym_break] = ACTIONS(2655), + [anon_sym_const] = ACTIONS(2655), + [anon_sym_continue] = ACTIONS(2655), + [anon_sym_default] = ACTIONS(2655), + [anon_sym_enum] = ACTIONS(2655), + [anon_sym_fn] = ACTIONS(2655), + [anon_sym_for] = ACTIONS(2655), + [anon_sym_if] = ACTIONS(2655), + [anon_sym_impl] = ACTIONS(2655), + [anon_sym_let] = ACTIONS(2655), + [anon_sym_loop] = ACTIONS(2655), + [anon_sym_match] = ACTIONS(2655), + [anon_sym_mod] = ACTIONS(2655), + [anon_sym_pub] = ACTIONS(2655), + [anon_sym_return] = ACTIONS(2655), + [anon_sym_static] = ACTIONS(2655), + [anon_sym_struct] = ACTIONS(2655), + [anon_sym_trait] = ACTIONS(2655), + [anon_sym_type] = ACTIONS(2655), + [anon_sym_union] = ACTIONS(2655), + [anon_sym_unsafe] = ACTIONS(2655), + [anon_sym_use] = ACTIONS(2655), + [anon_sym_while] = ACTIONS(2655), + [anon_sym_extern] = ACTIONS(2655), + [anon_sym_yield] = ACTIONS(2655), + [anon_sym_move] = ACTIONS(2655), + [anon_sym_try] = ACTIONS(2655), + [sym_integer_literal] = ACTIONS(2653), + [aux_sym_string_literal_token1] = ACTIONS(2653), + [sym_char_literal] = ACTIONS(2653), + [anon_sym_true] = ACTIONS(2655), + [anon_sym_false] = ACTIONS(2655), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2655), + [sym_super] = ACTIONS(2655), + [sym_crate] = ACTIONS(2655), + [sym_metavariable] = ACTIONS(2653), + [sym__raw_string_literal_start] = ACTIONS(2653), + [sym_float_literal] = ACTIONS(2653), }, [704] = { [sym_line_comment] = STATE(704), [sym_block_comment] = STATE(704), - [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_BANG] = ACTIONS(2646), - [anon_sym_AMP] = ACTIONS(2646), - [anon_sym_PIPE] = ACTIONS(2646), - [anon_sym_LT] = ACTIONS(2646), - [anon_sym_DOT_DOT] = ACTIONS(2646), - [anon_sym_COLON_COLON] = ACTIONS(2646), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2646), - [sym_float_literal] = ACTIONS(2646), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym_identifier] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_macro_rules_BANG] = ACTIONS(2657), + [anon_sym_LPAREN] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2657), + [anon_sym_LBRACE] = ACTIONS(2657), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_STAR] = ACTIONS(2657), + [anon_sym_u8] = ACTIONS(2659), + [anon_sym_i8] = ACTIONS(2659), + [anon_sym_u16] = ACTIONS(2659), + [anon_sym_i16] = ACTIONS(2659), + [anon_sym_u32] = ACTIONS(2659), + [anon_sym_i32] = ACTIONS(2659), + [anon_sym_u64] = ACTIONS(2659), + [anon_sym_i64] = ACTIONS(2659), + [anon_sym_u128] = ACTIONS(2659), + [anon_sym_i128] = ACTIONS(2659), + [anon_sym_isize] = ACTIONS(2659), + [anon_sym_usize] = ACTIONS(2659), + [anon_sym_f32] = ACTIONS(2659), + [anon_sym_f64] = ACTIONS(2659), + [anon_sym_bool] = ACTIONS(2659), + [anon_sym_str] = ACTIONS(2659), + [anon_sym_char] = ACTIONS(2659), + [anon_sym_DASH] = ACTIONS(2657), + [anon_sym_BANG] = ACTIONS(2657), + [anon_sym_AMP] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_LT] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2657), + [anon_sym_COLON_COLON] = ACTIONS(2657), + [anon_sym_POUND] = ACTIONS(2657), + [anon_sym_SQUOTE] = ACTIONS(2659), + [anon_sym_async] = ACTIONS(2659), + [anon_sym_break] = ACTIONS(2659), + [anon_sym_const] = ACTIONS(2659), + [anon_sym_continue] = ACTIONS(2659), + [anon_sym_default] = ACTIONS(2659), + [anon_sym_enum] = ACTIONS(2659), + [anon_sym_fn] = ACTIONS(2659), + [anon_sym_for] = ACTIONS(2659), + [anon_sym_if] = ACTIONS(2659), + [anon_sym_impl] = ACTIONS(2659), + [anon_sym_let] = ACTIONS(2659), + [anon_sym_loop] = ACTIONS(2659), + [anon_sym_match] = ACTIONS(2659), + [anon_sym_mod] = ACTIONS(2659), + [anon_sym_pub] = ACTIONS(2659), + [anon_sym_return] = ACTIONS(2659), + [anon_sym_static] = ACTIONS(2659), + [anon_sym_struct] = ACTIONS(2659), + [anon_sym_trait] = ACTIONS(2659), + [anon_sym_type] = ACTIONS(2659), + [anon_sym_union] = ACTIONS(2659), + [anon_sym_unsafe] = ACTIONS(2659), + [anon_sym_use] = ACTIONS(2659), + [anon_sym_while] = ACTIONS(2659), + [anon_sym_extern] = ACTIONS(2659), + [anon_sym_yield] = ACTIONS(2659), + [anon_sym_move] = ACTIONS(2659), + [anon_sym_try] = ACTIONS(2659), + [sym_integer_literal] = ACTIONS(2657), + [aux_sym_string_literal_token1] = ACTIONS(2657), + [sym_char_literal] = ACTIONS(2657), + [anon_sym_true] = ACTIONS(2659), + [anon_sym_false] = ACTIONS(2659), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2659), + [sym_super] = ACTIONS(2659), + [sym_crate] = ACTIONS(2659), + [sym_metavariable] = ACTIONS(2657), + [sym__raw_string_literal_start] = ACTIONS(2657), + [sym_float_literal] = ACTIONS(2657), }, [705] = { [sym_line_comment] = STATE(705), [sym_block_comment] = STATE(705), - [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_BANG] = ACTIONS(2650), - [anon_sym_AMP] = ACTIONS(2650), - [anon_sym_PIPE] = ACTIONS(2650), - [anon_sym_LT] = ACTIONS(2650), - [anon_sym_DOT_DOT] = ACTIONS(2650), - [anon_sym_COLON_COLON] = ACTIONS(2650), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2650), - [sym_float_literal] = ACTIONS(2650), + [ts_builtin_sym_end] = ACTIONS(2661), + [sym_identifier] = ACTIONS(2663), + [anon_sym_SEMI] = ACTIONS(2661), + [anon_sym_macro_rules_BANG] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2661), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_LBRACE] = ACTIONS(2661), + [anon_sym_RBRACE] = ACTIONS(2661), + [anon_sym_STAR] = ACTIONS(2661), + [anon_sym_u8] = ACTIONS(2663), + [anon_sym_i8] = ACTIONS(2663), + [anon_sym_u16] = ACTIONS(2663), + [anon_sym_i16] = ACTIONS(2663), + [anon_sym_u32] = ACTIONS(2663), + [anon_sym_i32] = ACTIONS(2663), + [anon_sym_u64] = ACTIONS(2663), + [anon_sym_i64] = ACTIONS(2663), + [anon_sym_u128] = ACTIONS(2663), + [anon_sym_i128] = ACTIONS(2663), + [anon_sym_isize] = ACTIONS(2663), + [anon_sym_usize] = ACTIONS(2663), + [anon_sym_f32] = ACTIONS(2663), + [anon_sym_f64] = ACTIONS(2663), + [anon_sym_bool] = ACTIONS(2663), + [anon_sym_str] = ACTIONS(2663), + [anon_sym_char] = ACTIONS(2663), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_BANG] = ACTIONS(2661), + [anon_sym_AMP] = ACTIONS(2661), + [anon_sym_PIPE] = ACTIONS(2661), + [anon_sym_LT] = ACTIONS(2661), + [anon_sym_DOT_DOT] = ACTIONS(2661), + [anon_sym_COLON_COLON] = ACTIONS(2661), + [anon_sym_POUND] = ACTIONS(2661), + [anon_sym_SQUOTE] = ACTIONS(2663), + [anon_sym_async] = ACTIONS(2663), + [anon_sym_break] = ACTIONS(2663), + [anon_sym_const] = ACTIONS(2663), + [anon_sym_continue] = ACTIONS(2663), + [anon_sym_default] = ACTIONS(2663), + [anon_sym_enum] = ACTIONS(2663), + [anon_sym_fn] = ACTIONS(2663), + [anon_sym_for] = ACTIONS(2663), + [anon_sym_if] = ACTIONS(2663), + [anon_sym_impl] = ACTIONS(2663), + [anon_sym_let] = ACTIONS(2663), + [anon_sym_loop] = ACTIONS(2663), + [anon_sym_match] = ACTIONS(2663), + [anon_sym_mod] = ACTIONS(2663), + [anon_sym_pub] = ACTIONS(2663), + [anon_sym_return] = ACTIONS(2663), + [anon_sym_static] = ACTIONS(2663), + [anon_sym_struct] = ACTIONS(2663), + [anon_sym_trait] = ACTIONS(2663), + [anon_sym_type] = ACTIONS(2663), + [anon_sym_union] = ACTIONS(2663), + [anon_sym_unsafe] = ACTIONS(2663), + [anon_sym_use] = ACTIONS(2663), + [anon_sym_while] = ACTIONS(2663), + [anon_sym_extern] = ACTIONS(2663), + [anon_sym_yield] = ACTIONS(2663), + [anon_sym_move] = ACTIONS(2663), + [anon_sym_try] = ACTIONS(2663), + [sym_integer_literal] = ACTIONS(2661), + [aux_sym_string_literal_token1] = ACTIONS(2661), + [sym_char_literal] = ACTIONS(2661), + [anon_sym_true] = ACTIONS(2663), + [anon_sym_false] = ACTIONS(2663), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2663), + [sym_super] = ACTIONS(2663), + [sym_crate] = ACTIONS(2663), + [sym_metavariable] = ACTIONS(2661), + [sym__raw_string_literal_start] = ACTIONS(2661), + [sym_float_literal] = ACTIONS(2661), }, [706] = { [sym_line_comment] = STATE(706), [sym_block_comment] = STATE(706), - [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_BANG] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym_DOT_DOT] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2654), - [sym_float_literal] = ACTIONS(2654), + [ts_builtin_sym_end] = ACTIONS(2665), + [sym_identifier] = ACTIONS(2667), + [anon_sym_SEMI] = ACTIONS(2665), + [anon_sym_macro_rules_BANG] = ACTIONS(2665), + [anon_sym_LPAREN] = ACTIONS(2665), + [anon_sym_LBRACK] = ACTIONS(2665), + [anon_sym_LBRACE] = ACTIONS(2665), + [anon_sym_RBRACE] = ACTIONS(2665), + [anon_sym_STAR] = ACTIONS(2665), + [anon_sym_u8] = ACTIONS(2667), + [anon_sym_i8] = ACTIONS(2667), + [anon_sym_u16] = ACTIONS(2667), + [anon_sym_i16] = ACTIONS(2667), + [anon_sym_u32] = ACTIONS(2667), + [anon_sym_i32] = ACTIONS(2667), + [anon_sym_u64] = ACTIONS(2667), + [anon_sym_i64] = ACTIONS(2667), + [anon_sym_u128] = ACTIONS(2667), + [anon_sym_i128] = ACTIONS(2667), + [anon_sym_isize] = ACTIONS(2667), + [anon_sym_usize] = ACTIONS(2667), + [anon_sym_f32] = ACTIONS(2667), + [anon_sym_f64] = ACTIONS(2667), + [anon_sym_bool] = ACTIONS(2667), + [anon_sym_str] = ACTIONS(2667), + [anon_sym_char] = ACTIONS(2667), + [anon_sym_DASH] = ACTIONS(2665), + [anon_sym_BANG] = ACTIONS(2665), + [anon_sym_AMP] = ACTIONS(2665), + [anon_sym_PIPE] = ACTIONS(2665), + [anon_sym_LT] = ACTIONS(2665), + [anon_sym_DOT_DOT] = ACTIONS(2665), + [anon_sym_COLON_COLON] = ACTIONS(2665), + [anon_sym_POUND] = ACTIONS(2665), + [anon_sym_SQUOTE] = ACTIONS(2667), + [anon_sym_async] = ACTIONS(2667), + [anon_sym_break] = ACTIONS(2667), + [anon_sym_const] = ACTIONS(2667), + [anon_sym_continue] = ACTIONS(2667), + [anon_sym_default] = ACTIONS(2667), + [anon_sym_enum] = ACTIONS(2667), + [anon_sym_fn] = ACTIONS(2667), + [anon_sym_for] = ACTIONS(2667), + [anon_sym_if] = ACTIONS(2667), + [anon_sym_impl] = ACTIONS(2667), + [anon_sym_let] = ACTIONS(2667), + [anon_sym_loop] = ACTIONS(2667), + [anon_sym_match] = ACTIONS(2667), + [anon_sym_mod] = ACTIONS(2667), + [anon_sym_pub] = ACTIONS(2667), + [anon_sym_return] = ACTIONS(2667), + [anon_sym_static] = ACTIONS(2667), + [anon_sym_struct] = ACTIONS(2667), + [anon_sym_trait] = ACTIONS(2667), + [anon_sym_type] = ACTIONS(2667), + [anon_sym_union] = ACTIONS(2667), + [anon_sym_unsafe] = ACTIONS(2667), + [anon_sym_use] = ACTIONS(2667), + [anon_sym_while] = ACTIONS(2667), + [anon_sym_extern] = ACTIONS(2667), + [anon_sym_yield] = ACTIONS(2667), + [anon_sym_move] = ACTIONS(2667), + [anon_sym_try] = ACTIONS(2667), + [sym_integer_literal] = ACTIONS(2665), + [aux_sym_string_literal_token1] = ACTIONS(2665), + [sym_char_literal] = ACTIONS(2665), + [anon_sym_true] = ACTIONS(2667), + [anon_sym_false] = ACTIONS(2667), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2667), + [sym_super] = ACTIONS(2667), + [sym_crate] = ACTIONS(2667), + [sym_metavariable] = ACTIONS(2665), + [sym__raw_string_literal_start] = ACTIONS(2665), + [sym_float_literal] = ACTIONS(2665), }, [707] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3599), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2139), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3323), - [sym_generic_type_with_turbofish] = STATE(3349), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3208), [sym_line_comment] = STATE(707), [sym_block_comment] = STATE(707), - [aux_sym_declaration_list_repeat1] = STATE(707), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2658), - [anon_sym_SEMI] = ACTIONS(2661), - [anon_sym_macro_rules_BANG] = ACTIONS(2664), - [anon_sym_RBRACE] = 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_LT] = ACTIONS(2672), - [anon_sym_COLON_COLON] = ACTIONS(2675), - [anon_sym_POUND] = ACTIONS(2678), - [anon_sym_async] = ACTIONS(2681), - [anon_sym_const] = ACTIONS(2684), - [anon_sym_default] = ACTIONS(2687), - [anon_sym_enum] = ACTIONS(2690), - [anon_sym_fn] = ACTIONS(2693), - [anon_sym_impl] = ACTIONS(2696), - [anon_sym_let] = ACTIONS(2699), - [anon_sym_mod] = ACTIONS(2702), - [anon_sym_pub] = ACTIONS(2705), - [anon_sym_static] = ACTIONS(2708), - [anon_sym_struct] = ACTIONS(2711), - [anon_sym_trait] = ACTIONS(2714), - [anon_sym_type] = ACTIONS(2717), - [anon_sym_union] = ACTIONS(2720), - [anon_sym_unsafe] = ACTIONS(2723), - [anon_sym_use] = ACTIONS(2726), - [anon_sym_extern] = ACTIONS(2729), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2732), - [sym_super] = ACTIONS(2732), - [sym_crate] = ACTIONS(2735), - [sym_metavariable] = ACTIONS(2738), + [ts_builtin_sym_end] = ACTIONS(2669), + [sym_identifier] = ACTIONS(2671), + [anon_sym_SEMI] = ACTIONS(2669), + [anon_sym_macro_rules_BANG] = ACTIONS(2669), + [anon_sym_LPAREN] = ACTIONS(2669), + [anon_sym_LBRACK] = ACTIONS(2669), + [anon_sym_LBRACE] = ACTIONS(2669), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_STAR] = ACTIONS(2669), + [anon_sym_u8] = ACTIONS(2671), + [anon_sym_i8] = ACTIONS(2671), + [anon_sym_u16] = ACTIONS(2671), + [anon_sym_i16] = ACTIONS(2671), + [anon_sym_u32] = ACTIONS(2671), + [anon_sym_i32] = ACTIONS(2671), + [anon_sym_u64] = ACTIONS(2671), + [anon_sym_i64] = ACTIONS(2671), + [anon_sym_u128] = ACTIONS(2671), + [anon_sym_i128] = ACTIONS(2671), + [anon_sym_isize] = ACTIONS(2671), + [anon_sym_usize] = ACTIONS(2671), + [anon_sym_f32] = ACTIONS(2671), + [anon_sym_f64] = ACTIONS(2671), + [anon_sym_bool] = ACTIONS(2671), + [anon_sym_str] = ACTIONS(2671), + [anon_sym_char] = ACTIONS(2671), + [anon_sym_DASH] = ACTIONS(2669), + [anon_sym_BANG] = ACTIONS(2669), + [anon_sym_AMP] = ACTIONS(2669), + [anon_sym_PIPE] = ACTIONS(2669), + [anon_sym_LT] = ACTIONS(2669), + [anon_sym_DOT_DOT] = ACTIONS(2669), + [anon_sym_COLON_COLON] = ACTIONS(2669), + [anon_sym_POUND] = ACTIONS(2669), + [anon_sym_SQUOTE] = ACTIONS(2671), + [anon_sym_async] = ACTIONS(2671), + [anon_sym_break] = ACTIONS(2671), + [anon_sym_const] = ACTIONS(2671), + [anon_sym_continue] = ACTIONS(2671), + [anon_sym_default] = ACTIONS(2671), + [anon_sym_enum] = ACTIONS(2671), + [anon_sym_fn] = ACTIONS(2671), + [anon_sym_for] = ACTIONS(2671), + [anon_sym_if] = ACTIONS(2671), + [anon_sym_impl] = ACTIONS(2671), + [anon_sym_let] = ACTIONS(2671), + [anon_sym_loop] = ACTIONS(2671), + [anon_sym_match] = ACTIONS(2671), + [anon_sym_mod] = ACTIONS(2671), + [anon_sym_pub] = ACTIONS(2671), + [anon_sym_return] = ACTIONS(2671), + [anon_sym_static] = ACTIONS(2671), + [anon_sym_struct] = ACTIONS(2671), + [anon_sym_trait] = ACTIONS(2671), + [anon_sym_type] = ACTIONS(2671), + [anon_sym_union] = ACTIONS(2671), + [anon_sym_unsafe] = ACTIONS(2671), + [anon_sym_use] = ACTIONS(2671), + [anon_sym_while] = ACTIONS(2671), + [anon_sym_extern] = ACTIONS(2671), + [anon_sym_yield] = ACTIONS(2671), + [anon_sym_move] = ACTIONS(2671), + [anon_sym_try] = ACTIONS(2671), + [sym_integer_literal] = ACTIONS(2669), + [aux_sym_string_literal_token1] = ACTIONS(2669), + [sym_char_literal] = ACTIONS(2669), + [anon_sym_true] = ACTIONS(2671), + [anon_sym_false] = ACTIONS(2671), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2671), + [sym_super] = ACTIONS(2671), + [sym_crate] = ACTIONS(2671), + [sym_metavariable] = ACTIONS(2669), + [sym__raw_string_literal_start] = ACTIONS(2669), + [sym_float_literal] = ACTIONS(2669), }, [708] = { [sym_line_comment] = STATE(708), [sym_block_comment] = STATE(708), - [ts_builtin_sym_end] = ACTIONS(2741), - [sym_identifier] = ACTIONS(2743), - [anon_sym_SEMI] = ACTIONS(2741), - [anon_sym_macro_rules_BANG] = ACTIONS(2741), - [anon_sym_LPAREN] = ACTIONS(2741), - [anon_sym_LBRACK] = ACTIONS(2741), - [anon_sym_LBRACE] = ACTIONS(2741), - [anon_sym_RBRACE] = ACTIONS(2741), - [anon_sym_STAR] = ACTIONS(2741), - [anon_sym_u8] = ACTIONS(2743), - [anon_sym_i8] = ACTIONS(2743), - [anon_sym_u16] = ACTIONS(2743), - [anon_sym_i16] = ACTIONS(2743), - [anon_sym_u32] = ACTIONS(2743), - [anon_sym_i32] = ACTIONS(2743), - [anon_sym_u64] = ACTIONS(2743), - [anon_sym_i64] = ACTIONS(2743), - [anon_sym_u128] = ACTIONS(2743), - [anon_sym_i128] = ACTIONS(2743), - [anon_sym_isize] = ACTIONS(2743), - [anon_sym_usize] = ACTIONS(2743), - [anon_sym_f32] = ACTIONS(2743), - [anon_sym_f64] = ACTIONS(2743), - [anon_sym_bool] = ACTIONS(2743), - [anon_sym_str] = ACTIONS(2743), - [anon_sym_char] = ACTIONS(2743), - [anon_sym_DASH] = ACTIONS(2741), - [anon_sym_BANG] = ACTIONS(2741), - [anon_sym_AMP] = ACTIONS(2741), - [anon_sym_PIPE] = ACTIONS(2741), - [anon_sym_LT] = ACTIONS(2741), - [anon_sym_DOT_DOT] = ACTIONS(2741), - [anon_sym_COLON_COLON] = ACTIONS(2741), - [anon_sym_POUND] = ACTIONS(2741), - [anon_sym_SQUOTE] = ACTIONS(2743), - [anon_sym_async] = ACTIONS(2743), - [anon_sym_break] = ACTIONS(2743), - [anon_sym_const] = ACTIONS(2743), - [anon_sym_continue] = ACTIONS(2743), - [anon_sym_default] = ACTIONS(2743), - [anon_sym_enum] = ACTIONS(2743), - [anon_sym_fn] = ACTIONS(2743), - [anon_sym_for] = ACTIONS(2743), - [anon_sym_if] = ACTIONS(2743), - [anon_sym_impl] = ACTIONS(2743), - [anon_sym_let] = ACTIONS(2743), - [anon_sym_loop] = ACTIONS(2743), - [anon_sym_match] = ACTIONS(2743), - [anon_sym_mod] = ACTIONS(2743), - [anon_sym_pub] = ACTIONS(2743), - [anon_sym_return] = ACTIONS(2743), - [anon_sym_static] = ACTIONS(2743), - [anon_sym_struct] = ACTIONS(2743), - [anon_sym_trait] = ACTIONS(2743), - [anon_sym_type] = ACTIONS(2743), - [anon_sym_union] = ACTIONS(2743), - [anon_sym_unsafe] = ACTIONS(2743), - [anon_sym_use] = ACTIONS(2743), - [anon_sym_while] = ACTIONS(2743), - [anon_sym_extern] = ACTIONS(2743), - [anon_sym_yield] = ACTIONS(2743), - [anon_sym_move] = ACTIONS(2743), - [anon_sym_try] = ACTIONS(2743), - [sym_integer_literal] = ACTIONS(2741), - [aux_sym_string_literal_token1] = ACTIONS(2741), - [sym_char_literal] = ACTIONS(2741), - [anon_sym_true] = ACTIONS(2743), - [anon_sym_false] = ACTIONS(2743), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2743), - [sym_super] = ACTIONS(2743), - [sym_crate] = ACTIONS(2743), - [sym_metavariable] = ACTIONS(2741), - [sym__raw_string_literal_start] = ACTIONS(2741), - [sym_float_literal] = ACTIONS(2741), + [ts_builtin_sym_end] = ACTIONS(2673), + [sym_identifier] = ACTIONS(2675), + [anon_sym_SEMI] = ACTIONS(2673), + [anon_sym_macro_rules_BANG] = ACTIONS(2673), + [anon_sym_LPAREN] = ACTIONS(2673), + [anon_sym_LBRACK] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2673), + [anon_sym_RBRACE] = ACTIONS(2673), + [anon_sym_STAR] = ACTIONS(2673), + [anon_sym_u8] = ACTIONS(2675), + [anon_sym_i8] = ACTIONS(2675), + [anon_sym_u16] = ACTIONS(2675), + [anon_sym_i16] = ACTIONS(2675), + [anon_sym_u32] = ACTIONS(2675), + [anon_sym_i32] = ACTIONS(2675), + [anon_sym_u64] = ACTIONS(2675), + [anon_sym_i64] = ACTIONS(2675), + [anon_sym_u128] = ACTIONS(2675), + [anon_sym_i128] = ACTIONS(2675), + [anon_sym_isize] = ACTIONS(2675), + [anon_sym_usize] = ACTIONS(2675), + [anon_sym_f32] = ACTIONS(2675), + [anon_sym_f64] = ACTIONS(2675), + [anon_sym_bool] = ACTIONS(2675), + [anon_sym_str] = ACTIONS(2675), + [anon_sym_char] = ACTIONS(2675), + [anon_sym_DASH] = ACTIONS(2673), + [anon_sym_BANG] = ACTIONS(2673), + [anon_sym_AMP] = ACTIONS(2673), + [anon_sym_PIPE] = ACTIONS(2673), + [anon_sym_LT] = ACTIONS(2673), + [anon_sym_DOT_DOT] = ACTIONS(2673), + [anon_sym_COLON_COLON] = ACTIONS(2673), + [anon_sym_POUND] = ACTIONS(2673), + [anon_sym_SQUOTE] = ACTIONS(2675), + [anon_sym_async] = ACTIONS(2675), + [anon_sym_break] = ACTIONS(2675), + [anon_sym_const] = ACTIONS(2675), + [anon_sym_continue] = ACTIONS(2675), + [anon_sym_default] = ACTIONS(2675), + [anon_sym_enum] = ACTIONS(2675), + [anon_sym_fn] = ACTIONS(2675), + [anon_sym_for] = ACTIONS(2675), + [anon_sym_if] = ACTIONS(2675), + [anon_sym_impl] = ACTIONS(2675), + [anon_sym_let] = ACTIONS(2675), + [anon_sym_loop] = ACTIONS(2675), + [anon_sym_match] = ACTIONS(2675), + [anon_sym_mod] = ACTIONS(2675), + [anon_sym_pub] = ACTIONS(2675), + [anon_sym_return] = ACTIONS(2675), + [anon_sym_static] = ACTIONS(2675), + [anon_sym_struct] = ACTIONS(2675), + [anon_sym_trait] = ACTIONS(2675), + [anon_sym_type] = ACTIONS(2675), + [anon_sym_union] = ACTIONS(2675), + [anon_sym_unsafe] = ACTIONS(2675), + [anon_sym_use] = ACTIONS(2675), + [anon_sym_while] = ACTIONS(2675), + [anon_sym_extern] = ACTIONS(2675), + [anon_sym_yield] = ACTIONS(2675), + [anon_sym_move] = ACTIONS(2675), + [anon_sym_try] = ACTIONS(2675), + [sym_integer_literal] = ACTIONS(2673), + [aux_sym_string_literal_token1] = ACTIONS(2673), + [sym_char_literal] = ACTIONS(2673), + [anon_sym_true] = ACTIONS(2675), + [anon_sym_false] = ACTIONS(2675), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2675), + [sym_super] = ACTIONS(2675), + [sym_crate] = ACTIONS(2675), + [sym_metavariable] = ACTIONS(2673), + [sym__raw_string_literal_start] = ACTIONS(2673), + [sym_float_literal] = ACTIONS(2673), }, [709] = { - [sym_empty_statement] = STATE(1456), - [sym_macro_definition] = STATE(1456), - [sym_attribute_item] = STATE(1456), - [sym_inner_attribute_item] = STATE(1456), - [sym_mod_item] = STATE(1456), - [sym_foreign_mod_item] = STATE(1456), - [sym_struct_item] = STATE(1456), - [sym_union_item] = STATE(1456), - [sym_enum_item] = STATE(1456), - [sym_extern_crate_declaration] = STATE(1456), - [sym_const_item] = STATE(1456), - [sym_static_item] = STATE(1456), - [sym_type_item] = STATE(1456), - [sym_function_item] = STATE(1456), - [sym_function_signature_item] = STATE(1456), - [sym_function_modifiers] = STATE(3599), - [sym_impl_item] = STATE(1456), - [sym_trait_item] = STATE(1456), - [sym_associated_type] = STATE(1456), - [sym_let_declaration] = STATE(1456), - [sym_use_declaration] = STATE(1456), - [sym_extern_modifier] = STATE(2139), - [sym_visibility_modifier] = STATE(1932), - [sym_bracketed_type] = STATE(3323), - [sym_generic_type_with_turbofish] = STATE(3349), - [sym_macro_invocation] = STATE(1456), - [sym_scoped_identifier] = STATE(3208), [sym_line_comment] = STATE(709), [sym_block_comment] = STATE(709), - [aux_sym_declaration_list_repeat1] = STATE(531), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(1870), - [anon_sym_SEMI] = ACTIONS(1872), - [anon_sym_macro_rules_BANG] = ACTIONS(1874), - [anon_sym_RBRACE] = ACTIONS(2745), - [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_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1880), - [anon_sym_POUND] = ACTIONS(1882), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1884), - [anon_sym_default] = ACTIONS(1886), - [anon_sym_enum] = ACTIONS(1888), - [anon_sym_fn] = ACTIONS(1890), - [anon_sym_impl] = ACTIONS(1892), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_mod] = ACTIONS(1896), - [anon_sym_pub] = ACTIONS(67), - [anon_sym_static] = ACTIONS(1898), - [anon_sym_struct] = ACTIONS(1900), - [anon_sym_trait] = ACTIONS(1902), - [anon_sym_type] = ACTIONS(1904), - [anon_sym_union] = ACTIONS(1906), - [anon_sym_unsafe] = ACTIONS(1908), - [anon_sym_use] = ACTIONS(1910), - [anon_sym_extern] = ACTIONS(1912), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1914), - [sym_super] = ACTIONS(1914), - [sym_crate] = ACTIONS(1916), - [sym_metavariable] = ACTIONS(1918), + [ts_builtin_sym_end] = ACTIONS(2677), + [sym_identifier] = ACTIONS(2679), + [anon_sym_SEMI] = ACTIONS(2677), + [anon_sym_macro_rules_BANG] = ACTIONS(2677), + [anon_sym_LPAREN] = ACTIONS(2677), + [anon_sym_LBRACK] = ACTIONS(2677), + [anon_sym_LBRACE] = ACTIONS(2677), + [anon_sym_RBRACE] = ACTIONS(2677), + [anon_sym_STAR] = ACTIONS(2677), + [anon_sym_u8] = ACTIONS(2679), + [anon_sym_i8] = ACTIONS(2679), + [anon_sym_u16] = ACTIONS(2679), + [anon_sym_i16] = ACTIONS(2679), + [anon_sym_u32] = ACTIONS(2679), + [anon_sym_i32] = ACTIONS(2679), + [anon_sym_u64] = ACTIONS(2679), + [anon_sym_i64] = ACTIONS(2679), + [anon_sym_u128] = ACTIONS(2679), + [anon_sym_i128] = ACTIONS(2679), + [anon_sym_isize] = ACTIONS(2679), + [anon_sym_usize] = ACTIONS(2679), + [anon_sym_f32] = ACTIONS(2679), + [anon_sym_f64] = ACTIONS(2679), + [anon_sym_bool] = ACTIONS(2679), + [anon_sym_str] = ACTIONS(2679), + [anon_sym_char] = ACTIONS(2679), + [anon_sym_DASH] = ACTIONS(2677), + [anon_sym_BANG] = ACTIONS(2677), + [anon_sym_AMP] = ACTIONS(2677), + [anon_sym_PIPE] = ACTIONS(2677), + [anon_sym_LT] = ACTIONS(2677), + [anon_sym_DOT_DOT] = ACTIONS(2677), + [anon_sym_COLON_COLON] = ACTIONS(2677), + [anon_sym_POUND] = ACTIONS(2677), + [anon_sym_SQUOTE] = ACTIONS(2679), + [anon_sym_async] = ACTIONS(2679), + [anon_sym_break] = ACTIONS(2679), + [anon_sym_const] = ACTIONS(2679), + [anon_sym_continue] = ACTIONS(2679), + [anon_sym_default] = ACTIONS(2679), + [anon_sym_enum] = ACTIONS(2679), + [anon_sym_fn] = ACTIONS(2679), + [anon_sym_for] = ACTIONS(2679), + [anon_sym_if] = ACTIONS(2679), + [anon_sym_impl] = ACTIONS(2679), + [anon_sym_let] = ACTIONS(2679), + [anon_sym_loop] = ACTIONS(2679), + [anon_sym_match] = ACTIONS(2679), + [anon_sym_mod] = ACTIONS(2679), + [anon_sym_pub] = ACTIONS(2679), + [anon_sym_return] = ACTIONS(2679), + [anon_sym_static] = ACTIONS(2679), + [anon_sym_struct] = ACTIONS(2679), + [anon_sym_trait] = ACTIONS(2679), + [anon_sym_type] = ACTIONS(2679), + [anon_sym_union] = ACTIONS(2679), + [anon_sym_unsafe] = ACTIONS(2679), + [anon_sym_use] = ACTIONS(2679), + [anon_sym_while] = ACTIONS(2679), + [anon_sym_extern] = ACTIONS(2679), + [anon_sym_yield] = ACTIONS(2679), + [anon_sym_move] = ACTIONS(2679), + [anon_sym_try] = ACTIONS(2679), + [sym_integer_literal] = ACTIONS(2677), + [aux_sym_string_literal_token1] = ACTIONS(2677), + [sym_char_literal] = ACTIONS(2677), + [anon_sym_true] = ACTIONS(2679), + [anon_sym_false] = ACTIONS(2679), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2679), + [sym_super] = ACTIONS(2679), + [sym_crate] = ACTIONS(2679), + [sym_metavariable] = ACTIONS(2677), + [sym__raw_string_literal_start] = ACTIONS(2677), + [sym_float_literal] = ACTIONS(2677), }, [710] = { [sym_line_comment] = STATE(710), [sym_block_comment] = STATE(710), - [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_BANG] = ACTIONS(2747), - [anon_sym_AMP] = ACTIONS(2747), - [anon_sym_PIPE] = ACTIONS(2747), - [anon_sym_LT] = ACTIONS(2747), - [anon_sym_DOT_DOT] = ACTIONS(2747), - [anon_sym_COLON_COLON] = ACTIONS(2747), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2747), - [sym_float_literal] = ACTIONS(2747), + [ts_builtin_sym_end] = ACTIONS(2681), + [sym_identifier] = ACTIONS(2683), + [anon_sym_SEMI] = ACTIONS(2681), + [anon_sym_macro_rules_BANG] = ACTIONS(2681), + [anon_sym_LPAREN] = ACTIONS(2681), + [anon_sym_LBRACK] = ACTIONS(2681), + [anon_sym_LBRACE] = ACTIONS(2681), + [anon_sym_RBRACE] = ACTIONS(2681), + [anon_sym_STAR] = ACTIONS(2681), + [anon_sym_u8] = ACTIONS(2683), + [anon_sym_i8] = ACTIONS(2683), + [anon_sym_u16] = ACTIONS(2683), + [anon_sym_i16] = ACTIONS(2683), + [anon_sym_u32] = ACTIONS(2683), + [anon_sym_i32] = ACTIONS(2683), + [anon_sym_u64] = ACTIONS(2683), + [anon_sym_i64] = ACTIONS(2683), + [anon_sym_u128] = ACTIONS(2683), + [anon_sym_i128] = ACTIONS(2683), + [anon_sym_isize] = ACTIONS(2683), + [anon_sym_usize] = ACTIONS(2683), + [anon_sym_f32] = ACTIONS(2683), + [anon_sym_f64] = ACTIONS(2683), + [anon_sym_bool] = ACTIONS(2683), + [anon_sym_str] = ACTIONS(2683), + [anon_sym_char] = ACTIONS(2683), + [anon_sym_DASH] = ACTIONS(2681), + [anon_sym_BANG] = ACTIONS(2681), + [anon_sym_AMP] = ACTIONS(2681), + [anon_sym_PIPE] = ACTIONS(2681), + [anon_sym_LT] = ACTIONS(2681), + [anon_sym_DOT_DOT] = ACTIONS(2681), + [anon_sym_COLON_COLON] = ACTIONS(2681), + [anon_sym_POUND] = ACTIONS(2681), + [anon_sym_SQUOTE] = ACTIONS(2683), + [anon_sym_async] = ACTIONS(2683), + [anon_sym_break] = ACTIONS(2683), + [anon_sym_const] = ACTIONS(2683), + [anon_sym_continue] = ACTIONS(2683), + [anon_sym_default] = ACTIONS(2683), + [anon_sym_enum] = ACTIONS(2683), + [anon_sym_fn] = ACTIONS(2683), + [anon_sym_for] = ACTIONS(2683), + [anon_sym_if] = ACTIONS(2683), + [anon_sym_impl] = ACTIONS(2683), + [anon_sym_let] = ACTIONS(2683), + [anon_sym_loop] = ACTIONS(2683), + [anon_sym_match] = ACTIONS(2683), + [anon_sym_mod] = ACTIONS(2683), + [anon_sym_pub] = ACTIONS(2683), + [anon_sym_return] = ACTIONS(2683), + [anon_sym_static] = ACTIONS(2683), + [anon_sym_struct] = ACTIONS(2683), + [anon_sym_trait] = ACTIONS(2683), + [anon_sym_type] = ACTIONS(2683), + [anon_sym_union] = ACTIONS(2683), + [anon_sym_unsafe] = ACTIONS(2683), + [anon_sym_use] = ACTIONS(2683), + [anon_sym_while] = ACTIONS(2683), + [anon_sym_extern] = ACTIONS(2683), + [anon_sym_yield] = ACTIONS(2683), + [anon_sym_move] = ACTIONS(2683), + [anon_sym_try] = ACTIONS(2683), + [sym_integer_literal] = ACTIONS(2681), + [aux_sym_string_literal_token1] = ACTIONS(2681), + [sym_char_literal] = ACTIONS(2681), + [anon_sym_true] = ACTIONS(2683), + [anon_sym_false] = ACTIONS(2683), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2683), + [sym_super] = ACTIONS(2683), + [sym_crate] = ACTIONS(2683), + [sym_metavariable] = ACTIONS(2681), + [sym__raw_string_literal_start] = ACTIONS(2681), + [sym_float_literal] = ACTIONS(2681), }, [711] = { [sym_line_comment] = STATE(711), [sym_block_comment] = STATE(711), - [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_BANG] = ACTIONS(2751), - [anon_sym_AMP] = ACTIONS(2751), - [anon_sym_PIPE] = ACTIONS(2751), - [anon_sym_LT] = ACTIONS(2751), - [anon_sym_DOT_DOT] = ACTIONS(2751), - [anon_sym_COLON_COLON] = ACTIONS(2751), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2751), - [sym_float_literal] = ACTIONS(2751), + [ts_builtin_sym_end] = ACTIONS(2685), + [sym_identifier] = ACTIONS(2687), + [anon_sym_SEMI] = ACTIONS(2685), + [anon_sym_macro_rules_BANG] = ACTIONS(2685), + [anon_sym_LPAREN] = ACTIONS(2685), + [anon_sym_LBRACK] = ACTIONS(2685), + [anon_sym_LBRACE] = ACTIONS(2685), + [anon_sym_RBRACE] = ACTIONS(2685), + [anon_sym_STAR] = ACTIONS(2685), + [anon_sym_u8] = ACTIONS(2687), + [anon_sym_i8] = ACTIONS(2687), + [anon_sym_u16] = ACTIONS(2687), + [anon_sym_i16] = ACTIONS(2687), + [anon_sym_u32] = ACTIONS(2687), + [anon_sym_i32] = ACTIONS(2687), + [anon_sym_u64] = ACTIONS(2687), + [anon_sym_i64] = ACTIONS(2687), + [anon_sym_u128] = ACTIONS(2687), + [anon_sym_i128] = ACTIONS(2687), + [anon_sym_isize] = ACTIONS(2687), + [anon_sym_usize] = ACTIONS(2687), + [anon_sym_f32] = ACTIONS(2687), + [anon_sym_f64] = ACTIONS(2687), + [anon_sym_bool] = ACTIONS(2687), + [anon_sym_str] = ACTIONS(2687), + [anon_sym_char] = ACTIONS(2687), + [anon_sym_DASH] = ACTIONS(2685), + [anon_sym_BANG] = ACTIONS(2685), + [anon_sym_AMP] = ACTIONS(2685), + [anon_sym_PIPE] = ACTIONS(2685), + [anon_sym_LT] = ACTIONS(2685), + [anon_sym_DOT_DOT] = ACTIONS(2685), + [anon_sym_COLON_COLON] = ACTIONS(2685), + [anon_sym_POUND] = ACTIONS(2685), + [anon_sym_SQUOTE] = ACTIONS(2687), + [anon_sym_async] = ACTIONS(2687), + [anon_sym_break] = ACTIONS(2687), + [anon_sym_const] = ACTIONS(2687), + [anon_sym_continue] = ACTIONS(2687), + [anon_sym_default] = ACTIONS(2687), + [anon_sym_enum] = ACTIONS(2687), + [anon_sym_fn] = ACTIONS(2687), + [anon_sym_for] = ACTIONS(2687), + [anon_sym_if] = ACTIONS(2687), + [anon_sym_impl] = ACTIONS(2687), + [anon_sym_let] = ACTIONS(2687), + [anon_sym_loop] = ACTIONS(2687), + [anon_sym_match] = ACTIONS(2687), + [anon_sym_mod] = ACTIONS(2687), + [anon_sym_pub] = ACTIONS(2687), + [anon_sym_return] = ACTIONS(2687), + [anon_sym_static] = ACTIONS(2687), + [anon_sym_struct] = ACTIONS(2687), + [anon_sym_trait] = ACTIONS(2687), + [anon_sym_type] = ACTIONS(2687), + [anon_sym_union] = ACTIONS(2687), + [anon_sym_unsafe] = ACTIONS(2687), + [anon_sym_use] = ACTIONS(2687), + [anon_sym_while] = ACTIONS(2687), + [anon_sym_extern] = ACTIONS(2687), + [anon_sym_yield] = ACTIONS(2687), + [anon_sym_move] = ACTIONS(2687), + [anon_sym_try] = ACTIONS(2687), + [sym_integer_literal] = ACTIONS(2685), + [aux_sym_string_literal_token1] = ACTIONS(2685), + [sym_char_literal] = ACTIONS(2685), + [anon_sym_true] = ACTIONS(2687), + [anon_sym_false] = ACTIONS(2687), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2687), + [sym_super] = ACTIONS(2687), + [sym_crate] = ACTIONS(2687), + [sym_metavariable] = ACTIONS(2685), + [sym__raw_string_literal_start] = ACTIONS(2685), + [sym_float_literal] = ACTIONS(2685), }, [712] = { [sym_line_comment] = STATE(712), [sym_block_comment] = STATE(712), - [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_BANG] = ACTIONS(2755), - [anon_sym_AMP] = ACTIONS(2755), - [anon_sym_PIPE] = ACTIONS(2755), - [anon_sym_LT] = ACTIONS(2755), - [anon_sym_DOT_DOT] = ACTIONS(2755), - [anon_sym_COLON_COLON] = ACTIONS(2755), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2755), - [sym_float_literal] = ACTIONS(2755), + [ts_builtin_sym_end] = ACTIONS(2689), + [sym_identifier] = ACTIONS(2691), + [anon_sym_SEMI] = ACTIONS(2689), + [anon_sym_macro_rules_BANG] = ACTIONS(2689), + [anon_sym_LPAREN] = ACTIONS(2689), + [anon_sym_LBRACK] = ACTIONS(2689), + [anon_sym_LBRACE] = ACTIONS(2689), + [anon_sym_RBRACE] = ACTIONS(2689), + [anon_sym_STAR] = ACTIONS(2689), + [anon_sym_u8] = ACTIONS(2691), + [anon_sym_i8] = ACTIONS(2691), + [anon_sym_u16] = ACTIONS(2691), + [anon_sym_i16] = ACTIONS(2691), + [anon_sym_u32] = ACTIONS(2691), + [anon_sym_i32] = ACTIONS(2691), + [anon_sym_u64] = ACTIONS(2691), + [anon_sym_i64] = ACTIONS(2691), + [anon_sym_u128] = ACTIONS(2691), + [anon_sym_i128] = ACTIONS(2691), + [anon_sym_isize] = ACTIONS(2691), + [anon_sym_usize] = ACTIONS(2691), + [anon_sym_f32] = ACTIONS(2691), + [anon_sym_f64] = ACTIONS(2691), + [anon_sym_bool] = ACTIONS(2691), + [anon_sym_str] = ACTIONS(2691), + [anon_sym_char] = ACTIONS(2691), + [anon_sym_DASH] = ACTIONS(2689), + [anon_sym_BANG] = ACTIONS(2689), + [anon_sym_AMP] = ACTIONS(2689), + [anon_sym_PIPE] = ACTIONS(2689), + [anon_sym_LT] = ACTIONS(2689), + [anon_sym_DOT_DOT] = ACTIONS(2689), + [anon_sym_COLON_COLON] = ACTIONS(2689), + [anon_sym_POUND] = ACTIONS(2689), + [anon_sym_SQUOTE] = ACTIONS(2691), + [anon_sym_async] = ACTIONS(2691), + [anon_sym_break] = ACTIONS(2691), + [anon_sym_const] = ACTIONS(2691), + [anon_sym_continue] = ACTIONS(2691), + [anon_sym_default] = ACTIONS(2691), + [anon_sym_enum] = ACTIONS(2691), + [anon_sym_fn] = ACTIONS(2691), + [anon_sym_for] = ACTIONS(2691), + [anon_sym_if] = ACTIONS(2691), + [anon_sym_impl] = ACTIONS(2691), + [anon_sym_let] = ACTIONS(2691), + [anon_sym_loop] = ACTIONS(2691), + [anon_sym_match] = ACTIONS(2691), + [anon_sym_mod] = ACTIONS(2691), + [anon_sym_pub] = ACTIONS(2691), + [anon_sym_return] = ACTIONS(2691), + [anon_sym_static] = ACTIONS(2691), + [anon_sym_struct] = ACTIONS(2691), + [anon_sym_trait] = ACTIONS(2691), + [anon_sym_type] = ACTIONS(2691), + [anon_sym_union] = ACTIONS(2691), + [anon_sym_unsafe] = ACTIONS(2691), + [anon_sym_use] = ACTIONS(2691), + [anon_sym_while] = ACTIONS(2691), + [anon_sym_extern] = ACTIONS(2691), + [anon_sym_yield] = ACTIONS(2691), + [anon_sym_move] = ACTIONS(2691), + [anon_sym_try] = ACTIONS(2691), + [sym_integer_literal] = ACTIONS(2689), + [aux_sym_string_literal_token1] = ACTIONS(2689), + [sym_char_literal] = ACTIONS(2689), + [anon_sym_true] = ACTIONS(2691), + [anon_sym_false] = ACTIONS(2691), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2691), + [sym_super] = ACTIONS(2691), + [sym_crate] = ACTIONS(2691), + [sym_metavariable] = ACTIONS(2689), + [sym__raw_string_literal_start] = ACTIONS(2689), + [sym_float_literal] = ACTIONS(2689), }, [713] = { [sym_line_comment] = STATE(713), [sym_block_comment] = STATE(713), - [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_BANG] = ACTIONS(2759), - [anon_sym_AMP] = ACTIONS(2759), - [anon_sym_PIPE] = ACTIONS(2759), - [anon_sym_LT] = ACTIONS(2759), - [anon_sym_DOT_DOT] = ACTIONS(2759), - [anon_sym_COLON_COLON] = ACTIONS(2759), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2759), - [sym_float_literal] = ACTIONS(2759), + [ts_builtin_sym_end] = ACTIONS(2693), + [sym_identifier] = ACTIONS(2695), + [anon_sym_SEMI] = ACTIONS(2693), + [anon_sym_macro_rules_BANG] = ACTIONS(2693), + [anon_sym_LPAREN] = ACTIONS(2693), + [anon_sym_LBRACK] = ACTIONS(2693), + [anon_sym_LBRACE] = ACTIONS(2693), + [anon_sym_RBRACE] = ACTIONS(2693), + [anon_sym_STAR] = ACTIONS(2693), + [anon_sym_u8] = ACTIONS(2695), + [anon_sym_i8] = ACTIONS(2695), + [anon_sym_u16] = ACTIONS(2695), + [anon_sym_i16] = ACTIONS(2695), + [anon_sym_u32] = ACTIONS(2695), + [anon_sym_i32] = ACTIONS(2695), + [anon_sym_u64] = ACTIONS(2695), + [anon_sym_i64] = ACTIONS(2695), + [anon_sym_u128] = ACTIONS(2695), + [anon_sym_i128] = ACTIONS(2695), + [anon_sym_isize] = ACTIONS(2695), + [anon_sym_usize] = ACTIONS(2695), + [anon_sym_f32] = ACTIONS(2695), + [anon_sym_f64] = ACTIONS(2695), + [anon_sym_bool] = ACTIONS(2695), + [anon_sym_str] = ACTIONS(2695), + [anon_sym_char] = ACTIONS(2695), + [anon_sym_DASH] = ACTIONS(2693), + [anon_sym_BANG] = ACTIONS(2693), + [anon_sym_AMP] = ACTIONS(2693), + [anon_sym_PIPE] = ACTIONS(2693), + [anon_sym_LT] = ACTIONS(2693), + [anon_sym_DOT_DOT] = ACTIONS(2693), + [anon_sym_COLON_COLON] = ACTIONS(2693), + [anon_sym_POUND] = ACTIONS(2693), + [anon_sym_SQUOTE] = ACTIONS(2695), + [anon_sym_async] = ACTIONS(2695), + [anon_sym_break] = ACTIONS(2695), + [anon_sym_const] = ACTIONS(2695), + [anon_sym_continue] = ACTIONS(2695), + [anon_sym_default] = ACTIONS(2695), + [anon_sym_enum] = ACTIONS(2695), + [anon_sym_fn] = ACTIONS(2695), + [anon_sym_for] = ACTIONS(2695), + [anon_sym_if] = ACTIONS(2695), + [anon_sym_impl] = ACTIONS(2695), + [anon_sym_let] = ACTIONS(2695), + [anon_sym_loop] = ACTIONS(2695), + [anon_sym_match] = ACTIONS(2695), + [anon_sym_mod] = ACTIONS(2695), + [anon_sym_pub] = ACTIONS(2695), + [anon_sym_return] = ACTIONS(2695), + [anon_sym_static] = ACTIONS(2695), + [anon_sym_struct] = ACTIONS(2695), + [anon_sym_trait] = ACTIONS(2695), + [anon_sym_type] = ACTIONS(2695), + [anon_sym_union] = ACTIONS(2695), + [anon_sym_unsafe] = ACTIONS(2695), + [anon_sym_use] = ACTIONS(2695), + [anon_sym_while] = ACTIONS(2695), + [anon_sym_extern] = ACTIONS(2695), + [anon_sym_yield] = ACTIONS(2695), + [anon_sym_move] = ACTIONS(2695), + [anon_sym_try] = ACTIONS(2695), + [sym_integer_literal] = ACTIONS(2693), + [aux_sym_string_literal_token1] = ACTIONS(2693), + [sym_char_literal] = ACTIONS(2693), + [anon_sym_true] = ACTIONS(2695), + [anon_sym_false] = ACTIONS(2695), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2695), + [sym_super] = ACTIONS(2695), + [sym_crate] = ACTIONS(2695), + [sym_metavariable] = ACTIONS(2693), + [sym__raw_string_literal_start] = ACTIONS(2693), + [sym_float_literal] = ACTIONS(2693), }, [714] = { [sym_line_comment] = STATE(714), [sym_block_comment] = STATE(714), - [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_BANG] = ACTIONS(2763), - [anon_sym_AMP] = ACTIONS(2763), - [anon_sym_PIPE] = ACTIONS(2763), - [anon_sym_LT] = ACTIONS(2763), - [anon_sym_DOT_DOT] = ACTIONS(2763), - [anon_sym_COLON_COLON] = ACTIONS(2763), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2763), - [sym_float_literal] = ACTIONS(2763), + [ts_builtin_sym_end] = ACTIONS(2697), + [sym_identifier] = ACTIONS(2699), + [anon_sym_SEMI] = ACTIONS(2697), + [anon_sym_macro_rules_BANG] = ACTIONS(2697), + [anon_sym_LPAREN] = ACTIONS(2697), + [anon_sym_LBRACK] = ACTIONS(2697), + [anon_sym_LBRACE] = ACTIONS(2697), + [anon_sym_RBRACE] = ACTIONS(2697), + [anon_sym_STAR] = ACTIONS(2697), + [anon_sym_u8] = ACTIONS(2699), + [anon_sym_i8] = ACTIONS(2699), + [anon_sym_u16] = ACTIONS(2699), + [anon_sym_i16] = ACTIONS(2699), + [anon_sym_u32] = ACTIONS(2699), + [anon_sym_i32] = ACTIONS(2699), + [anon_sym_u64] = ACTIONS(2699), + [anon_sym_i64] = ACTIONS(2699), + [anon_sym_u128] = ACTIONS(2699), + [anon_sym_i128] = ACTIONS(2699), + [anon_sym_isize] = ACTIONS(2699), + [anon_sym_usize] = ACTIONS(2699), + [anon_sym_f32] = ACTIONS(2699), + [anon_sym_f64] = ACTIONS(2699), + [anon_sym_bool] = ACTIONS(2699), + [anon_sym_str] = ACTIONS(2699), + [anon_sym_char] = ACTIONS(2699), + [anon_sym_DASH] = ACTIONS(2697), + [anon_sym_BANG] = ACTIONS(2697), + [anon_sym_AMP] = ACTIONS(2697), + [anon_sym_PIPE] = ACTIONS(2697), + [anon_sym_LT] = ACTIONS(2697), + [anon_sym_DOT_DOT] = ACTIONS(2697), + [anon_sym_COLON_COLON] = ACTIONS(2697), + [anon_sym_POUND] = ACTIONS(2697), + [anon_sym_SQUOTE] = ACTIONS(2699), + [anon_sym_async] = ACTIONS(2699), + [anon_sym_break] = ACTIONS(2699), + [anon_sym_const] = ACTIONS(2699), + [anon_sym_continue] = ACTIONS(2699), + [anon_sym_default] = ACTIONS(2699), + [anon_sym_enum] = ACTIONS(2699), + [anon_sym_fn] = ACTIONS(2699), + [anon_sym_for] = ACTIONS(2699), + [anon_sym_if] = ACTIONS(2699), + [anon_sym_impl] = ACTIONS(2699), + [anon_sym_let] = ACTIONS(2699), + [anon_sym_loop] = ACTIONS(2699), + [anon_sym_match] = ACTIONS(2699), + [anon_sym_mod] = ACTIONS(2699), + [anon_sym_pub] = ACTIONS(2699), + [anon_sym_return] = ACTIONS(2699), + [anon_sym_static] = ACTIONS(2699), + [anon_sym_struct] = ACTIONS(2699), + [anon_sym_trait] = ACTIONS(2699), + [anon_sym_type] = ACTIONS(2699), + [anon_sym_union] = ACTIONS(2699), + [anon_sym_unsafe] = ACTIONS(2699), + [anon_sym_use] = ACTIONS(2699), + [anon_sym_while] = ACTIONS(2699), + [anon_sym_extern] = ACTIONS(2699), + [anon_sym_yield] = ACTIONS(2699), + [anon_sym_move] = ACTIONS(2699), + [anon_sym_try] = ACTIONS(2699), + [sym_integer_literal] = ACTIONS(2697), + [aux_sym_string_literal_token1] = ACTIONS(2697), + [sym_char_literal] = ACTIONS(2697), + [anon_sym_true] = ACTIONS(2699), + [anon_sym_false] = ACTIONS(2699), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2699), + [sym_super] = ACTIONS(2699), + [sym_crate] = ACTIONS(2699), + [sym_metavariable] = ACTIONS(2697), + [sym__raw_string_literal_start] = ACTIONS(2697), + [sym_float_literal] = ACTIONS(2697), }, [715] = { [sym_line_comment] = STATE(715), [sym_block_comment] = STATE(715), - [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_BANG] = ACTIONS(2767), - [anon_sym_AMP] = ACTIONS(2767), - [anon_sym_PIPE] = ACTIONS(2767), - [anon_sym_LT] = ACTIONS(2767), - [anon_sym_DOT_DOT] = ACTIONS(2767), - [anon_sym_COLON_COLON] = ACTIONS(2767), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2767), - [sym_float_literal] = ACTIONS(2767), + [ts_builtin_sym_end] = ACTIONS(2701), + [sym_identifier] = ACTIONS(2703), + [anon_sym_SEMI] = ACTIONS(2701), + [anon_sym_macro_rules_BANG] = ACTIONS(2701), + [anon_sym_LPAREN] = ACTIONS(2701), + [anon_sym_LBRACK] = ACTIONS(2701), + [anon_sym_LBRACE] = ACTIONS(2701), + [anon_sym_RBRACE] = ACTIONS(2701), + [anon_sym_STAR] = ACTIONS(2701), + [anon_sym_u8] = ACTIONS(2703), + [anon_sym_i8] = ACTIONS(2703), + [anon_sym_u16] = ACTIONS(2703), + [anon_sym_i16] = ACTIONS(2703), + [anon_sym_u32] = ACTIONS(2703), + [anon_sym_i32] = ACTIONS(2703), + [anon_sym_u64] = ACTIONS(2703), + [anon_sym_i64] = ACTIONS(2703), + [anon_sym_u128] = ACTIONS(2703), + [anon_sym_i128] = ACTIONS(2703), + [anon_sym_isize] = ACTIONS(2703), + [anon_sym_usize] = ACTIONS(2703), + [anon_sym_f32] = ACTIONS(2703), + [anon_sym_f64] = ACTIONS(2703), + [anon_sym_bool] = ACTIONS(2703), + [anon_sym_str] = ACTIONS(2703), + [anon_sym_char] = ACTIONS(2703), + [anon_sym_DASH] = ACTIONS(2701), + [anon_sym_BANG] = ACTIONS(2701), + [anon_sym_AMP] = ACTIONS(2701), + [anon_sym_PIPE] = ACTIONS(2701), + [anon_sym_LT] = ACTIONS(2701), + [anon_sym_DOT_DOT] = ACTIONS(2701), + [anon_sym_COLON_COLON] = ACTIONS(2701), + [anon_sym_POUND] = ACTIONS(2701), + [anon_sym_SQUOTE] = ACTIONS(2703), + [anon_sym_async] = ACTIONS(2703), + [anon_sym_break] = ACTIONS(2703), + [anon_sym_const] = ACTIONS(2703), + [anon_sym_continue] = ACTIONS(2703), + [anon_sym_default] = ACTIONS(2703), + [anon_sym_enum] = ACTIONS(2703), + [anon_sym_fn] = ACTIONS(2703), + [anon_sym_for] = ACTIONS(2703), + [anon_sym_if] = ACTIONS(2703), + [anon_sym_impl] = ACTIONS(2703), + [anon_sym_let] = ACTIONS(2703), + [anon_sym_loop] = ACTIONS(2703), + [anon_sym_match] = ACTIONS(2703), + [anon_sym_mod] = ACTIONS(2703), + [anon_sym_pub] = ACTIONS(2703), + [anon_sym_return] = ACTIONS(2703), + [anon_sym_static] = ACTIONS(2703), + [anon_sym_struct] = ACTIONS(2703), + [anon_sym_trait] = ACTIONS(2703), + [anon_sym_type] = ACTIONS(2703), + [anon_sym_union] = ACTIONS(2703), + [anon_sym_unsafe] = ACTIONS(2703), + [anon_sym_use] = ACTIONS(2703), + [anon_sym_while] = ACTIONS(2703), + [anon_sym_extern] = ACTIONS(2703), + [anon_sym_yield] = ACTIONS(2703), + [anon_sym_move] = ACTIONS(2703), + [anon_sym_try] = ACTIONS(2703), + [sym_integer_literal] = ACTIONS(2701), + [aux_sym_string_literal_token1] = ACTIONS(2701), + [sym_char_literal] = ACTIONS(2701), + [anon_sym_true] = ACTIONS(2703), + [anon_sym_false] = ACTIONS(2703), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2703), + [sym_super] = ACTIONS(2703), + [sym_crate] = ACTIONS(2703), + [sym_metavariable] = ACTIONS(2701), + [sym__raw_string_literal_start] = ACTIONS(2701), + [sym_float_literal] = ACTIONS(2701), }, [716] = { [sym_line_comment] = STATE(716), [sym_block_comment] = STATE(716), - [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_BANG] = ACTIONS(2771), - [anon_sym_AMP] = ACTIONS(2771), - [anon_sym_PIPE] = ACTIONS(2771), - [anon_sym_LT] = ACTIONS(2771), - [anon_sym_DOT_DOT] = ACTIONS(2771), - [anon_sym_COLON_COLON] = ACTIONS(2771), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2771), - [sym_float_literal] = ACTIONS(2771), + [ts_builtin_sym_end] = ACTIONS(2705), + [sym_identifier] = ACTIONS(2707), + [anon_sym_SEMI] = ACTIONS(2705), + [anon_sym_macro_rules_BANG] = ACTIONS(2705), + [anon_sym_LPAREN] = ACTIONS(2705), + [anon_sym_LBRACK] = ACTIONS(2705), + [anon_sym_LBRACE] = ACTIONS(2705), + [anon_sym_RBRACE] = ACTIONS(2705), + [anon_sym_STAR] = ACTIONS(2705), + [anon_sym_u8] = ACTIONS(2707), + [anon_sym_i8] = ACTIONS(2707), + [anon_sym_u16] = ACTIONS(2707), + [anon_sym_i16] = ACTIONS(2707), + [anon_sym_u32] = ACTIONS(2707), + [anon_sym_i32] = ACTIONS(2707), + [anon_sym_u64] = ACTIONS(2707), + [anon_sym_i64] = ACTIONS(2707), + [anon_sym_u128] = ACTIONS(2707), + [anon_sym_i128] = ACTIONS(2707), + [anon_sym_isize] = ACTIONS(2707), + [anon_sym_usize] = ACTIONS(2707), + [anon_sym_f32] = ACTIONS(2707), + [anon_sym_f64] = ACTIONS(2707), + [anon_sym_bool] = ACTIONS(2707), + [anon_sym_str] = ACTIONS(2707), + [anon_sym_char] = ACTIONS(2707), + [anon_sym_DASH] = ACTIONS(2705), + [anon_sym_BANG] = ACTIONS(2705), + [anon_sym_AMP] = ACTIONS(2705), + [anon_sym_PIPE] = ACTIONS(2705), + [anon_sym_LT] = ACTIONS(2705), + [anon_sym_DOT_DOT] = ACTIONS(2705), + [anon_sym_COLON_COLON] = ACTIONS(2705), + [anon_sym_POUND] = ACTIONS(2705), + [anon_sym_SQUOTE] = ACTIONS(2707), + [anon_sym_async] = ACTIONS(2707), + [anon_sym_break] = ACTIONS(2707), + [anon_sym_const] = ACTIONS(2707), + [anon_sym_continue] = ACTIONS(2707), + [anon_sym_default] = ACTIONS(2707), + [anon_sym_enum] = ACTIONS(2707), + [anon_sym_fn] = ACTIONS(2707), + [anon_sym_for] = ACTIONS(2707), + [anon_sym_if] = ACTIONS(2707), + [anon_sym_impl] = ACTIONS(2707), + [anon_sym_let] = ACTIONS(2707), + [anon_sym_loop] = ACTIONS(2707), + [anon_sym_match] = ACTIONS(2707), + [anon_sym_mod] = ACTIONS(2707), + [anon_sym_pub] = ACTIONS(2707), + [anon_sym_return] = ACTIONS(2707), + [anon_sym_static] = ACTIONS(2707), + [anon_sym_struct] = ACTIONS(2707), + [anon_sym_trait] = ACTIONS(2707), + [anon_sym_type] = ACTIONS(2707), + [anon_sym_union] = ACTIONS(2707), + [anon_sym_unsafe] = ACTIONS(2707), + [anon_sym_use] = ACTIONS(2707), + [anon_sym_while] = ACTIONS(2707), + [anon_sym_extern] = ACTIONS(2707), + [anon_sym_yield] = ACTIONS(2707), + [anon_sym_move] = ACTIONS(2707), + [anon_sym_try] = ACTIONS(2707), + [sym_integer_literal] = ACTIONS(2705), + [aux_sym_string_literal_token1] = ACTIONS(2705), + [sym_char_literal] = ACTIONS(2705), + [anon_sym_true] = ACTIONS(2707), + [anon_sym_false] = ACTIONS(2707), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2707), + [sym_super] = ACTIONS(2707), + [sym_crate] = ACTIONS(2707), + [sym_metavariable] = ACTIONS(2705), + [sym__raw_string_literal_start] = ACTIONS(2705), + [sym_float_literal] = ACTIONS(2705), }, [717] = { [sym_line_comment] = STATE(717), [sym_block_comment] = STATE(717), - [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_BANG] = ACTIONS(2775), - [anon_sym_AMP] = ACTIONS(2775), - [anon_sym_PIPE] = ACTIONS(2775), - [anon_sym_LT] = ACTIONS(2775), - [anon_sym_DOT_DOT] = ACTIONS(2775), - [anon_sym_COLON_COLON] = ACTIONS(2775), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2775), - [sym_float_literal] = ACTIONS(2775), + [ts_builtin_sym_end] = ACTIONS(2709), + [sym_identifier] = ACTIONS(2711), + [anon_sym_SEMI] = ACTIONS(2709), + [anon_sym_macro_rules_BANG] = ACTIONS(2709), + [anon_sym_LPAREN] = ACTIONS(2709), + [anon_sym_LBRACK] = ACTIONS(2709), + [anon_sym_LBRACE] = ACTIONS(2709), + [anon_sym_RBRACE] = ACTIONS(2709), + [anon_sym_STAR] = ACTIONS(2709), + [anon_sym_u8] = ACTIONS(2711), + [anon_sym_i8] = ACTIONS(2711), + [anon_sym_u16] = ACTIONS(2711), + [anon_sym_i16] = ACTIONS(2711), + [anon_sym_u32] = ACTIONS(2711), + [anon_sym_i32] = ACTIONS(2711), + [anon_sym_u64] = ACTIONS(2711), + [anon_sym_i64] = ACTIONS(2711), + [anon_sym_u128] = ACTIONS(2711), + [anon_sym_i128] = ACTIONS(2711), + [anon_sym_isize] = ACTIONS(2711), + [anon_sym_usize] = ACTIONS(2711), + [anon_sym_f32] = ACTIONS(2711), + [anon_sym_f64] = ACTIONS(2711), + [anon_sym_bool] = ACTIONS(2711), + [anon_sym_str] = ACTIONS(2711), + [anon_sym_char] = ACTIONS(2711), + [anon_sym_DASH] = ACTIONS(2709), + [anon_sym_BANG] = ACTIONS(2709), + [anon_sym_AMP] = ACTIONS(2709), + [anon_sym_PIPE] = ACTIONS(2709), + [anon_sym_LT] = ACTIONS(2709), + [anon_sym_DOT_DOT] = ACTIONS(2709), + [anon_sym_COLON_COLON] = ACTIONS(2709), + [anon_sym_POUND] = ACTIONS(2709), + [anon_sym_SQUOTE] = ACTIONS(2711), + [anon_sym_async] = ACTIONS(2711), + [anon_sym_break] = ACTIONS(2711), + [anon_sym_const] = ACTIONS(2711), + [anon_sym_continue] = ACTIONS(2711), + [anon_sym_default] = ACTIONS(2711), + [anon_sym_enum] = ACTIONS(2711), + [anon_sym_fn] = ACTIONS(2711), + [anon_sym_for] = ACTIONS(2711), + [anon_sym_if] = ACTIONS(2711), + [anon_sym_impl] = ACTIONS(2711), + [anon_sym_let] = ACTIONS(2711), + [anon_sym_loop] = ACTIONS(2711), + [anon_sym_match] = ACTIONS(2711), + [anon_sym_mod] = ACTIONS(2711), + [anon_sym_pub] = ACTIONS(2711), + [anon_sym_return] = ACTIONS(2711), + [anon_sym_static] = ACTIONS(2711), + [anon_sym_struct] = ACTIONS(2711), + [anon_sym_trait] = ACTIONS(2711), + [anon_sym_type] = ACTIONS(2711), + [anon_sym_union] = ACTIONS(2711), + [anon_sym_unsafe] = ACTIONS(2711), + [anon_sym_use] = ACTIONS(2711), + [anon_sym_while] = ACTIONS(2711), + [anon_sym_extern] = ACTIONS(2711), + [anon_sym_yield] = ACTIONS(2711), + [anon_sym_move] = ACTIONS(2711), + [anon_sym_try] = ACTIONS(2711), + [sym_integer_literal] = ACTIONS(2709), + [aux_sym_string_literal_token1] = ACTIONS(2709), + [sym_char_literal] = ACTIONS(2709), + [anon_sym_true] = ACTIONS(2711), + [anon_sym_false] = ACTIONS(2711), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2711), + [sym_super] = ACTIONS(2711), + [sym_crate] = ACTIONS(2711), + [sym_metavariable] = ACTIONS(2709), + [sym__raw_string_literal_start] = ACTIONS(2709), + [sym_float_literal] = ACTIONS(2709), }, [718] = { [sym_line_comment] = STATE(718), [sym_block_comment] = STATE(718), - [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_BANG] = ACTIONS(2779), - [anon_sym_AMP] = ACTIONS(2779), - [anon_sym_PIPE] = ACTIONS(2779), - [anon_sym_LT] = ACTIONS(2779), - [anon_sym_DOT_DOT] = ACTIONS(2779), - [anon_sym_COLON_COLON] = ACTIONS(2779), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2779), - [sym_float_literal] = ACTIONS(2779), + [ts_builtin_sym_end] = ACTIONS(2713), + [sym_identifier] = ACTIONS(2715), + [anon_sym_SEMI] = ACTIONS(2713), + [anon_sym_macro_rules_BANG] = ACTIONS(2713), + [anon_sym_LPAREN] = ACTIONS(2713), + [anon_sym_LBRACK] = ACTIONS(2713), + [anon_sym_LBRACE] = ACTIONS(2713), + [anon_sym_RBRACE] = ACTIONS(2713), + [anon_sym_STAR] = ACTIONS(2713), + [anon_sym_u8] = ACTIONS(2715), + [anon_sym_i8] = ACTIONS(2715), + [anon_sym_u16] = ACTIONS(2715), + [anon_sym_i16] = ACTIONS(2715), + [anon_sym_u32] = ACTIONS(2715), + [anon_sym_i32] = ACTIONS(2715), + [anon_sym_u64] = ACTIONS(2715), + [anon_sym_i64] = ACTIONS(2715), + [anon_sym_u128] = ACTIONS(2715), + [anon_sym_i128] = ACTIONS(2715), + [anon_sym_isize] = ACTIONS(2715), + [anon_sym_usize] = ACTIONS(2715), + [anon_sym_f32] = ACTIONS(2715), + [anon_sym_f64] = ACTIONS(2715), + [anon_sym_bool] = ACTIONS(2715), + [anon_sym_str] = ACTIONS(2715), + [anon_sym_char] = ACTIONS(2715), + [anon_sym_DASH] = ACTIONS(2713), + [anon_sym_BANG] = ACTIONS(2713), + [anon_sym_AMP] = ACTIONS(2713), + [anon_sym_PIPE] = ACTIONS(2713), + [anon_sym_LT] = ACTIONS(2713), + [anon_sym_DOT_DOT] = ACTIONS(2713), + [anon_sym_COLON_COLON] = ACTIONS(2713), + [anon_sym_POUND] = ACTIONS(2713), + [anon_sym_SQUOTE] = ACTIONS(2715), + [anon_sym_async] = ACTIONS(2715), + [anon_sym_break] = ACTIONS(2715), + [anon_sym_const] = ACTIONS(2715), + [anon_sym_continue] = ACTIONS(2715), + [anon_sym_default] = ACTIONS(2715), + [anon_sym_enum] = ACTIONS(2715), + [anon_sym_fn] = ACTIONS(2715), + [anon_sym_for] = ACTIONS(2715), + [anon_sym_if] = ACTIONS(2715), + [anon_sym_impl] = ACTIONS(2715), + [anon_sym_let] = ACTIONS(2715), + [anon_sym_loop] = ACTIONS(2715), + [anon_sym_match] = ACTIONS(2715), + [anon_sym_mod] = ACTIONS(2715), + [anon_sym_pub] = ACTIONS(2715), + [anon_sym_return] = ACTIONS(2715), + [anon_sym_static] = ACTIONS(2715), + [anon_sym_struct] = ACTIONS(2715), + [anon_sym_trait] = ACTIONS(2715), + [anon_sym_type] = ACTIONS(2715), + [anon_sym_union] = ACTIONS(2715), + [anon_sym_unsafe] = ACTIONS(2715), + [anon_sym_use] = ACTIONS(2715), + [anon_sym_while] = ACTIONS(2715), + [anon_sym_extern] = ACTIONS(2715), + [anon_sym_yield] = ACTIONS(2715), + [anon_sym_move] = ACTIONS(2715), + [anon_sym_try] = ACTIONS(2715), + [sym_integer_literal] = ACTIONS(2713), + [aux_sym_string_literal_token1] = ACTIONS(2713), + [sym_char_literal] = ACTIONS(2713), + [anon_sym_true] = ACTIONS(2715), + [anon_sym_false] = ACTIONS(2715), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2715), + [sym_super] = ACTIONS(2715), + [sym_crate] = ACTIONS(2715), + [sym_metavariable] = ACTIONS(2713), + [sym__raw_string_literal_start] = ACTIONS(2713), + [sym_float_literal] = ACTIONS(2713), }, [719] = { [sym_line_comment] = STATE(719), [sym_block_comment] = STATE(719), - [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_BANG] = ACTIONS(2783), - [anon_sym_AMP] = ACTIONS(2783), - [anon_sym_PIPE] = ACTIONS(2783), - [anon_sym_LT] = ACTIONS(2783), - [anon_sym_DOT_DOT] = ACTIONS(2783), - [anon_sym_COLON_COLON] = ACTIONS(2783), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2783), - [sym_float_literal] = ACTIONS(2783), + [ts_builtin_sym_end] = ACTIONS(2717), + [sym_identifier] = ACTIONS(2719), + [anon_sym_SEMI] = ACTIONS(2717), + [anon_sym_macro_rules_BANG] = ACTIONS(2717), + [anon_sym_LPAREN] = ACTIONS(2717), + [anon_sym_LBRACK] = ACTIONS(2717), + [anon_sym_LBRACE] = ACTIONS(2717), + [anon_sym_RBRACE] = ACTIONS(2717), + [anon_sym_STAR] = ACTIONS(2717), + [anon_sym_u8] = ACTIONS(2719), + [anon_sym_i8] = ACTIONS(2719), + [anon_sym_u16] = ACTIONS(2719), + [anon_sym_i16] = ACTIONS(2719), + [anon_sym_u32] = ACTIONS(2719), + [anon_sym_i32] = ACTIONS(2719), + [anon_sym_u64] = ACTIONS(2719), + [anon_sym_i64] = ACTIONS(2719), + [anon_sym_u128] = ACTIONS(2719), + [anon_sym_i128] = ACTIONS(2719), + [anon_sym_isize] = ACTIONS(2719), + [anon_sym_usize] = ACTIONS(2719), + [anon_sym_f32] = ACTIONS(2719), + [anon_sym_f64] = ACTIONS(2719), + [anon_sym_bool] = ACTIONS(2719), + [anon_sym_str] = ACTIONS(2719), + [anon_sym_char] = ACTIONS(2719), + [anon_sym_DASH] = ACTIONS(2717), + [anon_sym_BANG] = ACTIONS(2717), + [anon_sym_AMP] = ACTIONS(2717), + [anon_sym_PIPE] = ACTIONS(2717), + [anon_sym_LT] = ACTIONS(2717), + [anon_sym_DOT_DOT] = ACTIONS(2717), + [anon_sym_COLON_COLON] = ACTIONS(2717), + [anon_sym_POUND] = ACTIONS(2717), + [anon_sym_SQUOTE] = ACTIONS(2719), + [anon_sym_async] = ACTIONS(2719), + [anon_sym_break] = ACTIONS(2719), + [anon_sym_const] = ACTIONS(2719), + [anon_sym_continue] = ACTIONS(2719), + [anon_sym_default] = ACTIONS(2719), + [anon_sym_enum] = ACTIONS(2719), + [anon_sym_fn] = ACTIONS(2719), + [anon_sym_for] = ACTIONS(2719), + [anon_sym_if] = ACTIONS(2719), + [anon_sym_impl] = ACTIONS(2719), + [anon_sym_let] = ACTIONS(2719), + [anon_sym_loop] = ACTIONS(2719), + [anon_sym_match] = ACTIONS(2719), + [anon_sym_mod] = ACTIONS(2719), + [anon_sym_pub] = ACTIONS(2719), + [anon_sym_return] = ACTIONS(2719), + [anon_sym_static] = ACTIONS(2719), + [anon_sym_struct] = ACTIONS(2719), + [anon_sym_trait] = ACTIONS(2719), + [anon_sym_type] = ACTIONS(2719), + [anon_sym_union] = ACTIONS(2719), + [anon_sym_unsafe] = ACTIONS(2719), + [anon_sym_use] = ACTIONS(2719), + [anon_sym_while] = ACTIONS(2719), + [anon_sym_extern] = ACTIONS(2719), + [anon_sym_yield] = ACTIONS(2719), + [anon_sym_move] = ACTIONS(2719), + [anon_sym_try] = ACTIONS(2719), + [sym_integer_literal] = ACTIONS(2717), + [aux_sym_string_literal_token1] = ACTIONS(2717), + [sym_char_literal] = ACTIONS(2717), + [anon_sym_true] = ACTIONS(2719), + [anon_sym_false] = ACTIONS(2719), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2719), + [sym_super] = ACTIONS(2719), + [sym_crate] = ACTIONS(2719), + [sym_metavariable] = ACTIONS(2717), + [sym__raw_string_literal_start] = ACTIONS(2717), + [sym_float_literal] = ACTIONS(2717), }, [720] = { [sym_line_comment] = STATE(720), [sym_block_comment] = STATE(720), - [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_BANG] = ACTIONS(2787), - [anon_sym_AMP] = ACTIONS(2787), - [anon_sym_PIPE] = ACTIONS(2787), - [anon_sym_LT] = ACTIONS(2787), - [anon_sym_DOT_DOT] = ACTIONS(2787), - [anon_sym_COLON_COLON] = ACTIONS(2787), - [anon_sym_POUND] = 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_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_start] = ACTIONS(2787), - [sym_float_literal] = ACTIONS(2787), + [ts_builtin_sym_end] = ACTIONS(2721), + [sym_identifier] = ACTIONS(2723), + [anon_sym_SEMI] = ACTIONS(2721), + [anon_sym_macro_rules_BANG] = ACTIONS(2721), + [anon_sym_LPAREN] = ACTIONS(2721), + [anon_sym_LBRACK] = ACTIONS(2721), + [anon_sym_LBRACE] = ACTIONS(2721), + [anon_sym_RBRACE] = ACTIONS(2721), + [anon_sym_STAR] = ACTIONS(2721), + [anon_sym_u8] = ACTIONS(2723), + [anon_sym_i8] = ACTIONS(2723), + [anon_sym_u16] = ACTIONS(2723), + [anon_sym_i16] = ACTIONS(2723), + [anon_sym_u32] = ACTIONS(2723), + [anon_sym_i32] = ACTIONS(2723), + [anon_sym_u64] = ACTIONS(2723), + [anon_sym_i64] = ACTIONS(2723), + [anon_sym_u128] = ACTIONS(2723), + [anon_sym_i128] = ACTIONS(2723), + [anon_sym_isize] = ACTIONS(2723), + [anon_sym_usize] = ACTIONS(2723), + [anon_sym_f32] = ACTIONS(2723), + [anon_sym_f64] = ACTIONS(2723), + [anon_sym_bool] = ACTIONS(2723), + [anon_sym_str] = ACTIONS(2723), + [anon_sym_char] = ACTIONS(2723), + [anon_sym_DASH] = ACTIONS(2721), + [anon_sym_BANG] = ACTIONS(2721), + [anon_sym_AMP] = ACTIONS(2721), + [anon_sym_PIPE] = ACTIONS(2721), + [anon_sym_LT] = ACTIONS(2721), + [anon_sym_DOT_DOT] = ACTIONS(2721), + [anon_sym_COLON_COLON] = ACTIONS(2721), + [anon_sym_POUND] = ACTIONS(2721), + [anon_sym_SQUOTE] = ACTIONS(2723), + [anon_sym_async] = ACTIONS(2723), + [anon_sym_break] = ACTIONS(2723), + [anon_sym_const] = ACTIONS(2723), + [anon_sym_continue] = ACTIONS(2723), + [anon_sym_default] = ACTIONS(2723), + [anon_sym_enum] = ACTIONS(2723), + [anon_sym_fn] = ACTIONS(2723), + [anon_sym_for] = ACTIONS(2723), + [anon_sym_if] = ACTIONS(2723), + [anon_sym_impl] = ACTIONS(2723), + [anon_sym_let] = ACTIONS(2723), + [anon_sym_loop] = ACTIONS(2723), + [anon_sym_match] = ACTIONS(2723), + [anon_sym_mod] = ACTIONS(2723), + [anon_sym_pub] = ACTIONS(2723), + [anon_sym_return] = ACTIONS(2723), + [anon_sym_static] = ACTIONS(2723), + [anon_sym_struct] = ACTIONS(2723), + [anon_sym_trait] = ACTIONS(2723), + [anon_sym_type] = ACTIONS(2723), + [anon_sym_union] = ACTIONS(2723), + [anon_sym_unsafe] = ACTIONS(2723), + [anon_sym_use] = ACTIONS(2723), + [anon_sym_while] = ACTIONS(2723), + [anon_sym_extern] = ACTIONS(2723), + [anon_sym_yield] = ACTIONS(2723), + [anon_sym_move] = ACTIONS(2723), + [anon_sym_try] = ACTIONS(2723), + [sym_integer_literal] = ACTIONS(2721), + [aux_sym_string_literal_token1] = ACTIONS(2721), + [sym_char_literal] = ACTIONS(2721), + [anon_sym_true] = ACTIONS(2723), + [anon_sym_false] = ACTIONS(2723), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2723), + [sym_super] = ACTIONS(2723), + [sym_crate] = ACTIONS(2723), + [sym_metavariable] = ACTIONS(2721), + [sym__raw_string_literal_start] = ACTIONS(2721), + [sym_float_literal] = ACTIONS(2721), }, [721] = { + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_arm] = STATE(1471), + [sym_match_pattern] = STATE(3605), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(721), [sym_block_comment] = STATE(721), + [aux_sym_match_block_repeat1] = STATE(721), + [aux_sym_match_arm_repeat1] = STATE(758), + [sym_identifier] = ACTIONS(2725), + [anon_sym_LPAREN] = ACTIONS(2728), + [anon_sym_LBRACK] = ACTIONS(2731), + [anon_sym_u8] = ACTIONS(2734), + [anon_sym_i8] = ACTIONS(2734), + [anon_sym_u16] = ACTIONS(2734), + [anon_sym_i16] = ACTIONS(2734), + [anon_sym_u32] = ACTIONS(2734), + [anon_sym_i32] = ACTIONS(2734), + [anon_sym_u64] = ACTIONS(2734), + [anon_sym_i64] = ACTIONS(2734), + [anon_sym_u128] = ACTIONS(2734), + [anon_sym_i128] = ACTIONS(2734), + [anon_sym_isize] = ACTIONS(2734), + [anon_sym_usize] = ACTIONS(2734), + [anon_sym_f32] = ACTIONS(2734), + [anon_sym_f64] = ACTIONS(2734), + [anon_sym_bool] = ACTIONS(2734), + [anon_sym_str] = ACTIONS(2734), + [anon_sym_char] = ACTIONS(2734), + [anon_sym_DASH] = ACTIONS(2737), + [anon_sym_AMP] = ACTIONS(2740), + [anon_sym_PIPE] = ACTIONS(2743), + [anon_sym_LT] = ACTIONS(2746), + [anon_sym__] = ACTIONS(2749), + [anon_sym_DOT_DOT] = ACTIONS(2752), + [anon_sym_COLON_COLON] = ACTIONS(2755), + [anon_sym_POUND] = ACTIONS(2758), + [anon_sym_const] = ACTIONS(2761), + [anon_sym_default] = ACTIONS(2764), + [anon_sym_union] = ACTIONS(2764), + [anon_sym_ref] = ACTIONS(2767), + [sym_mutable_specifier] = ACTIONS(2770), + [sym_integer_literal] = ACTIONS(2773), + [aux_sym_string_literal_token1] = ACTIONS(2776), + [sym_char_literal] = ACTIONS(2773), + [anon_sym_true] = ACTIONS(2779), + [anon_sym_false] = ACTIONS(2779), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2782), + [sym_super] = ACTIONS(2782), + [sym_crate] = ACTIONS(2782), + [sym_metavariable] = ACTIONS(2785), + [sym__raw_string_literal_start] = ACTIONS(2788), + [sym_float_literal] = ACTIONS(2773), + }, + [722] = { + [sym_line_comment] = STATE(722), + [sym_block_comment] = STATE(722), [ts_builtin_sym_end] = ACTIONS(2791), [sym_identifier] = ACTIONS(2793), [anon_sym_SEMI] = ACTIONS(2791), @@ -87944,9 +88045,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2791), [sym_float_literal] = ACTIONS(2791), }, - [722] = { - [sym_line_comment] = STATE(722), - [sym_block_comment] = STATE(722), + [723] = { + [sym_line_comment] = STATE(723), + [sym_block_comment] = STATE(723), [ts_builtin_sym_end] = ACTIONS(2795), [sym_identifier] = ACTIONS(2797), [anon_sym_SEMI] = ACTIONS(2795), @@ -88024,9 +88125,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2795), [sym_float_literal] = ACTIONS(2795), }, - [723] = { - [sym_line_comment] = STATE(723), - [sym_block_comment] = STATE(723), + [724] = { + [sym_line_comment] = STATE(724), + [sym_block_comment] = STATE(724), [ts_builtin_sym_end] = ACTIONS(2799), [sym_identifier] = ACTIONS(2801), [anon_sym_SEMI] = ACTIONS(2799), @@ -88104,9 +88205,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2799), [sym_float_literal] = ACTIONS(2799), }, - [724] = { - [sym_line_comment] = STATE(724), - [sym_block_comment] = STATE(724), + [725] = { + [sym_line_comment] = STATE(725), + [sym_block_comment] = STATE(725), [ts_builtin_sym_end] = ACTIONS(2803), [sym_identifier] = ACTIONS(2805), [anon_sym_SEMI] = ACTIONS(2803), @@ -88184,9 +88285,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2803), [sym_float_literal] = ACTIONS(2803), }, - [725] = { - [sym_line_comment] = STATE(725), - [sym_block_comment] = STATE(725), + [726] = { + [sym_line_comment] = STATE(726), + [sym_block_comment] = STATE(726), [ts_builtin_sym_end] = ACTIONS(2807), [sym_identifier] = ACTIONS(2809), [anon_sym_SEMI] = ACTIONS(2807), @@ -88264,9 +88365,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2807), [sym_float_literal] = ACTIONS(2807), }, - [726] = { - [sym_line_comment] = STATE(726), - [sym_block_comment] = STATE(726), + [727] = { + [sym_line_comment] = STATE(727), + [sym_block_comment] = STATE(727), [ts_builtin_sym_end] = ACTIONS(2811), [sym_identifier] = ACTIONS(2813), [anon_sym_SEMI] = ACTIONS(2811), @@ -88344,9 +88445,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2811), [sym_float_literal] = ACTIONS(2811), }, - [727] = { - [sym_line_comment] = STATE(727), - [sym_block_comment] = STATE(727), + [728] = { + [sym_line_comment] = STATE(728), + [sym_block_comment] = STATE(728), [ts_builtin_sym_end] = ACTIONS(2815), [sym_identifier] = ACTIONS(2817), [anon_sym_SEMI] = ACTIONS(2815), @@ -88424,9 +88525,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2815), [sym_float_literal] = ACTIONS(2815), }, - [728] = { - [sym_line_comment] = STATE(728), - [sym_block_comment] = STATE(728), + [729] = { + [sym_line_comment] = STATE(729), + [sym_block_comment] = STATE(729), [ts_builtin_sym_end] = ACTIONS(2819), [sym_identifier] = ACTIONS(2821), [anon_sym_SEMI] = ACTIONS(2819), @@ -88504,9 +88605,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2819), [sym_float_literal] = ACTIONS(2819), }, - [729] = { - [sym_line_comment] = STATE(729), - [sym_block_comment] = STATE(729), + [730] = { + [sym_line_comment] = STATE(730), + [sym_block_comment] = STATE(730), [ts_builtin_sym_end] = ACTIONS(2823), [sym_identifier] = ACTIONS(2825), [anon_sym_SEMI] = ACTIONS(2823), @@ -88584,9 +88685,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2823), [sym_float_literal] = ACTIONS(2823), }, - [730] = { - [sym_line_comment] = STATE(730), - [sym_block_comment] = STATE(730), + [731] = { + [sym_line_comment] = STATE(731), + [sym_block_comment] = STATE(731), [ts_builtin_sym_end] = ACTIONS(2827), [sym_identifier] = ACTIONS(2829), [anon_sym_SEMI] = ACTIONS(2827), @@ -88664,86 +88765,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(2827), [sym_float_literal] = ACTIONS(2827), }, - [731] = { - [sym_line_comment] = STATE(731), - [sym_block_comment] = STATE(731), - [ts_builtin_sym_end] = ACTIONS(1232), - [sym_identifier] = ACTIONS(1234), - [anon_sym_SEMI] = ACTIONS(1232), - [anon_sym_macro_rules_BANG] = ACTIONS(1232), - [anon_sym_LPAREN] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1232), - [anon_sym_RBRACE] = ACTIONS(1232), - [anon_sym_STAR] = ACTIONS(1232), - [anon_sym_u8] = ACTIONS(1234), - [anon_sym_i8] = ACTIONS(1234), - [anon_sym_u16] = ACTIONS(1234), - [anon_sym_i16] = ACTIONS(1234), - [anon_sym_u32] = ACTIONS(1234), - [anon_sym_i32] = ACTIONS(1234), - [anon_sym_u64] = ACTIONS(1234), - [anon_sym_i64] = ACTIONS(1234), - [anon_sym_u128] = ACTIONS(1234), - [anon_sym_i128] = ACTIONS(1234), - [anon_sym_isize] = ACTIONS(1234), - [anon_sym_usize] = ACTIONS(1234), - [anon_sym_f32] = ACTIONS(1234), - [anon_sym_f64] = ACTIONS(1234), - [anon_sym_bool] = ACTIONS(1234), - [anon_sym_str] = ACTIONS(1234), - [anon_sym_char] = ACTIONS(1234), - [anon_sym_DASH] = ACTIONS(1232), - [anon_sym_BANG] = ACTIONS(1232), - [anon_sym_AMP] = ACTIONS(1232), - [anon_sym_PIPE] = ACTIONS(1232), - [anon_sym_LT] = ACTIONS(1232), - [anon_sym_DOT_DOT] = ACTIONS(1232), - [anon_sym_COLON_COLON] = ACTIONS(1232), - [anon_sym_POUND] = ACTIONS(1232), - [anon_sym_SQUOTE] = ACTIONS(1234), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_break] = ACTIONS(1234), - [anon_sym_const] = ACTIONS(1234), - [anon_sym_continue] = ACTIONS(1234), - [anon_sym_default] = ACTIONS(1234), - [anon_sym_enum] = ACTIONS(1234), - [anon_sym_fn] = ACTIONS(1234), - [anon_sym_for] = ACTIONS(1234), - [anon_sym_if] = ACTIONS(1234), - [anon_sym_impl] = ACTIONS(1234), - [anon_sym_let] = ACTIONS(1234), - [anon_sym_loop] = ACTIONS(1234), - [anon_sym_match] = ACTIONS(1234), - [anon_sym_mod] = ACTIONS(1234), - [anon_sym_pub] = ACTIONS(1234), - [anon_sym_return] = ACTIONS(1234), - [anon_sym_static] = ACTIONS(1234), - [anon_sym_struct] = ACTIONS(1234), - [anon_sym_trait] = ACTIONS(1234), - [anon_sym_type] = ACTIONS(1234), - [anon_sym_union] = ACTIONS(1234), - [anon_sym_unsafe] = ACTIONS(1234), - [anon_sym_use] = ACTIONS(1234), - [anon_sym_while] = ACTIONS(1234), - [anon_sym_extern] = ACTIONS(1234), - [anon_sym_yield] = ACTIONS(1234), - [anon_sym_move] = ACTIONS(1234), - [anon_sym_try] = ACTIONS(1234), - [sym_integer_literal] = ACTIONS(1232), - [aux_sym_string_literal_token1] = ACTIONS(1232), - [sym_char_literal] = ACTIONS(1232), - [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(1234), - [sym_super] = ACTIONS(1234), - [sym_crate] = ACTIONS(1234), - [sym_metavariable] = ACTIONS(1232), - [sym__raw_string_literal_start] = ACTIONS(1232), - [sym_float_literal] = ACTIONS(1232), - }, [732] = { [sym_line_comment] = STATE(732), [sym_block_comment] = STATE(732), @@ -90505,32 +90526,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(2915), }, [754] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym_closure_expression] = STATE(2797), - [sym_closure_parameters] = STATE(240), - [sym__pattern] = STATE(2679), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym_closure_expression] = STATE(2828), + [sym_closure_parameters] = STATE(230), + [sym__pattern] = STATE(2500), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(754), [sym_block_comment] = STATE(754), [sym_identifier] = ACTIONS(2919), @@ -90554,7 +90575,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -90566,50 +90587,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [755] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym_closure_expression] = STATE(2897), - [sym_closure_parameters] = STATE(240), - [sym__pattern] = STATE(2684), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym_closure_expression] = STATE(2855), + [sym_closure_parameters] = STATE(230), + [sym__pattern] = STATE(2640), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(755), [sym_block_comment] = STATE(755), [sym_identifier] = ACTIONS(2919), @@ -90633,7 +90654,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -90645,50 +90666,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [756] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym_closure_expression] = STATE(3098), - [sym_closure_parameters] = STATE(240), - [sym__pattern] = STATE(2998), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym_closure_expression] = STATE(3065), + [sym_closure_parameters] = STATE(230), + [sym__pattern] = STATE(2928), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(756), [sym_block_comment] = STATE(756), [sym_identifier] = ACTIONS(2919), @@ -90712,7 +90733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -90723,54 +90744,132 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [757] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_pattern] = STATE(3442), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym_closure_expression] = STATE(3065), + [sym_closure_parameters] = STATE(230), + [sym__pattern] = STATE(2928), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(757), [sym_block_comment] = STATE(757), - [aux_sym_match_arm_repeat1] = STATE(1042), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2947), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1478), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(1488), + [anon_sym_move] = ACTIONS(1490), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), + }, + [758] = { + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_pattern] = STATE(3423), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(758), + [sym_block_comment] = STATE(758), + [aux_sym_match_arm_repeat1] = STATE(1041), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -90818,115 +90917,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, - [758] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym_closure_expression] = STATE(3098), - [sym_closure_parameters] = STATE(240), - [sym__pattern] = STATE(2998), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(758), - [sym_block_comment] = STATE(758), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2947), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1478), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_static] = ACTIONS(1486), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(1488), - [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, [759] = { - [sym_attribute_item] = STATE(1478), - [sym_inner_attribute_item] = STATE(1478), - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_match_pattern] = STATE(3403), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2974), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), + [sym_attribute_item] = STATE(1479), + [sym_inner_attribute_item] = STATE(1479), + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_match_pattern] = STATE(3410), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2919), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), [sym_line_comment] = STATE(759), [sym_block_comment] = STATE(759), - [aux_sym_match_arm_repeat1] = STATE(1042), + [aux_sym_match_arm_repeat1] = STATE(1041), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -90975,32 +90996,32 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_float_literal] = ACTIONS(1636), }, [760] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym_closure_expression] = STATE(3098), - [sym_closure_parameters] = STATE(240), - [sym__pattern] = STATE(2998), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym_closure_expression] = STATE(3065), + [sym_closure_parameters] = STATE(230), + [sym__pattern] = STATE(2928), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(760), [sym_block_comment] = STATE(760), [sym_identifier] = ACTIONS(2919), @@ -91024,7 +91045,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -91035,50 +91056,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [761] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym_closure_expression] = STATE(3098), - [sym_closure_parameters] = STATE(240), - [sym__pattern] = STATE(2998), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym_closure_expression] = STATE(3065), + [sym_closure_parameters] = STATE(230), + [sym__pattern] = STATE(2928), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(761), [sym_block_comment] = STATE(761), [sym_identifier] = ACTIONS(2919), @@ -91102,7 +91123,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -91113,50 +91134,50 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [762] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym_closure_expression] = STATE(3098), - [sym_closure_parameters] = STATE(240), - [sym__pattern] = STATE(2998), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym_closure_expression] = STATE(3065), + [sym_closure_parameters] = STATE(230), + [sym__pattern] = STATE(2928), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(762), [sym_block_comment] = STATE(762), [sym_identifier] = ACTIONS(2919), @@ -91179,7 +91200,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), [anon_sym_PIPE] = ACTIONS(1478), [anon_sym_LT] = ACTIONS(29), @@ -91190,60 +91211,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(2937), [anon_sym_static] = ACTIONS(1486), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), [anon_sym_move] = ACTIONS(1490), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [763] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_const_parameter] = STATE(2973), - [sym_constrained_type_parameter] = STATE(2555), - [sym_optional_type_parameter] = STATE(2973), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2823), - [sym_bracketed_type] = STATE(3331), - [sym_qualified_type] = STATE(3424), - [sym_lifetime] = STATE(2345), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_const_parameter] = STATE(2959), + [sym_constrained_type_parameter] = STATE(2693), + [sym_optional_type_parameter] = STATE(2959), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2819), + [sym_bracketed_type] = STATE(3332), + [sym_qualified_type] = STATE(3515), + [sym_lifetime] = STATE(2373), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(763), [sym_block_comment] = STATE(763), - [aux_sym_enum_variant_list_repeat1] = STATE(2073), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_enum_variant_list_repeat1] = STATE(2055), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2953), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91261,22 +91282,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(2955), [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), [anon_sym_const] = ACTIONS(2959), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -91285,40 +91306,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(2961), }, [764] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym_visibility_modifier] = STATE(979), - [sym__type] = STATE(2536), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym_visibility_modifier] = STATE(885), + [sym__type] = STATE(2579), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(764), [sym_block_comment] = STATE(764), - [aux_sym_enum_variant_list_repeat1] = STATE(774), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_enum_variant_list_repeat1] = STATE(772), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_RPAREN] = ACTIONS(2965), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91336,24 +91357,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COMMA] = ACTIONS(2967), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(2955), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_pub] = ACTIONS(2971), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -91362,40 +91383,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [765] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2854), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym_visibility_modifier] = STATE(878), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(765), [sym_block_comment] = STATE(765), - [aux_sym_enum_variant_list_repeat1] = STATE(771), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_enum_variant_list_repeat1] = STATE(774), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_RPAREN] = ACTIONS(2975), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91413,23 +91434,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(2955), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_pub] = ACTIONS(2971), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -91438,40 +91459,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [766] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2854), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym_visibility_modifier] = STATE(878), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(766), [sym_block_comment] = STATE(766), - [aux_sym_enum_variant_list_repeat1] = STATE(771), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_enum_variant_list_repeat1] = STATE(774), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_RPAREN] = ACTIONS(2977), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91489,23 +91510,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(2955), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_pub] = ACTIONS(2971), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -91514,40 +91535,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [767] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2854), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym_visibility_modifier] = STATE(878), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(767), [sym_block_comment] = STATE(767), - [aux_sym_enum_variant_list_repeat1] = STATE(771), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_enum_variant_list_repeat1] = STATE(774), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_RPAREN] = ACTIONS(2979), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91565,23 +91586,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(2955), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_pub] = ACTIONS(2971), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -91590,40 +91611,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [768] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2854), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym_visibility_modifier] = STATE(878), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(768), [sym_block_comment] = STATE(768), - [aux_sym_enum_variant_list_repeat1] = STATE(771), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_enum_variant_list_repeat1] = STATE(774), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_RPAREN] = ACTIONS(2981), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91641,23 +91662,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(2955), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_pub] = ACTIONS(2971), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -91666,40 +91687,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [769] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2854), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym_visibility_modifier] = STATE(878), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(769), [sym_block_comment] = STATE(769), - [aux_sym_enum_variant_list_repeat1] = STATE(771), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_enum_variant_list_repeat1] = STATE(774), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_RPAREN] = ACTIONS(2983), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91717,23 +91738,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(2955), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_pub] = ACTIONS(2971), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -91742,40 +91763,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [770] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2854), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym_visibility_modifier] = STATE(878), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(770), [sym_block_comment] = STATE(770), - [aux_sym_enum_variant_list_repeat1] = STATE(771), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_enum_variant_list_repeat1] = STATE(774), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_RPAREN] = ACTIONS(2985), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91793,23 +91814,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(2955), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_pub] = ACTIONS(2971), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -91818,39 +91839,114 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [771] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym_visibility_modifier] = STATE(968), - [sym__type] = STATE(2834), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2674), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(771), [sym_block_comment] = STATE(771), - [aux_sym_enum_variant_list_repeat1] = STATE(1069), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2987), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), + }, + [772] = { + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym_visibility_modifier] = STATE(942), + [sym__type] = STATE(2698), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(772), + [sym_block_comment] = STATE(772), + [aux_sym_enum_variant_list_repeat1] = STATE(1065), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -91868,23 +91964,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(2955), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_pub] = ACTIONS(2971), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -91892,111 +91988,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(2973), [sym_metavariable] = ACTIONS(1584), }, - [772] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2678), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(772), - [sym_block_comment] = STATE(772), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(1508), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(1514), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, [773] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2713), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2524), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(773), [sym_block_comment] = STATE(773), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2987), + [anon_sym_RPAREN] = ACTIONS(2991), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -92015,67 +92036,67 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2989), + [anon_sym_COMMA] = ACTIONS(2993), [anon_sym_COLON_COLON] = ACTIONS(2933), [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [774] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym_visibility_modifier] = STATE(976), - [sym__type] = STATE(2589), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym_visibility_modifier] = STATE(910), + [sym__type] = STATE(2874), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(774), [sym_block_comment] = STATE(774), - [aux_sym_enum_variant_list_repeat1] = STATE(1069), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_enum_variant_list_repeat1] = STATE(1065), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -92093,23 +92114,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_POUND] = ACTIONS(2955), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_pub] = ACTIONS(2971), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -92118,36 +92139,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [775] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2681), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2525), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(775), [sym_block_comment] = STATE(775), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(2995), [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(2991), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92165,64 +92186,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2993), + [anon_sym_COMMA] = ACTIONS(2997), [anon_sym_COLON_COLON] = ACTIONS(2933), [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [776] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2693), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2501), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(776), [sym_block_comment] = STATE(776), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2995), [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(2999), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92240,64 +92261,139 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(2997), + [anon_sym_COMMA] = ACTIONS(3001), [anon_sym_COLON_COLON] = ACTIONS(2933), [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [777] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2689), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_attribute_item] = STATE(1476), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym_visibility_modifier] = STATE(878), + [sym__type] = STATE(2913), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(777), [sym_block_comment] = STATE(777), + [aux_sym_enum_variant_list_repeat1] = STATE(774), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_POUND] = ACTIONS(2955), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_pub] = ACTIONS(2971), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1582), + [sym_super] = ACTIONS(1582), + [sym_crate] = ACTIONS(2973), + [sym_metavariable] = ACTIONS(1584), + }, + [778] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2672), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(778), + [sym_block_comment] = STATE(778), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(2999), [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(1508), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92315,60 +92411,60 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COMMA] = ACTIONS(3001), + [anon_sym_COMMA] = ACTIONS(1514), [anon_sym_COLON_COLON] = ACTIONS(2933), [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [778] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2683), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(778), - [sym_block_comment] = STATE(778), + [779] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2639), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(779), + [sym_block_comment] = STATE(779), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_RPAREN] = ACTIONS(3003), @@ -92390,9 +92486,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92401,128 +92497,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, - [779] = { - [sym_attribute_item] = STATE(1481), - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym_visibility_modifier] = STATE(934), - [sym__type] = STATE(2854), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(779), - [sym_block_comment] = STATE(779), - [aux_sym_enum_variant_list_repeat1] = STATE(771), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_POUND] = ACTIONS(2955), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_pub] = ACTIONS(2971), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), - [sym_super] = ACTIONS(1582), - [sym_crate] = ACTIONS(2973), - [sym_metavariable] = ACTIONS(1584), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [780] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_parameter] = STATE(3201), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2915), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(780), [sym_block_comment] = STATE(780), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3007), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92540,9 +92561,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92550,52 +92571,51 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(3007), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), + [sym_self] = ACTIONS(3009), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [781] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2549), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(781), [sym_block_comment] = STATE(781), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3009), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -92614,63 +92634,64 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_DOT_DOT] = ACTIONS(1272), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3011), [anon_sym_COLON_COLON] = ACTIONS(2933), [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), + [sym_self] = ACTIONS(3013), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [782] = { - [sym_parameter] = STATE(2803), - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2461), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(782), [sym_block_comment] = STATE(782), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(3015), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92688,9 +92709,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92698,48 +92719,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [783] = { - [sym_parameter] = STATE(2803), - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2556), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_parameter] = STATE(3027), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2532), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(783), [sym_block_comment] = STATE(783), [sym_identifier] = ACTIONS(2919), @@ -92762,9 +92783,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(3011), + [anon_sym_PIPE] = ACTIONS(3017), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92772,53 +92793,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(3007), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3015), + [sym_self] = ACTIONS(3009), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [784] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(784), [sym_block_comment] = STATE(784), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(3019), [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3017), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92836,9 +92857,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92846,53 +92867,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [785] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(785), [sym_block_comment] = STATE(785), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3019), [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(3021), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -92910,9 +92931,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92920,52 +92941,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [786] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(786), [sym_block_comment] = STATE(786), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3021), + [anon_sym_RPAREN] = ACTIONS(3023), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -92984,9 +93005,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -92994,52 +93015,274 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [787] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(787), [sym_block_comment] = STATE(787), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3023), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(3025), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), + }, + [788] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(788), + [sym_block_comment] = STATE(788), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(3027), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), + }, + [789] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(789), + [sym_block_comment] = STATE(789), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(3029), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), + }, + [790] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(790), + [sym_block_comment] = STATE(790), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(3031), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -93058,9 +93301,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93068,53 +93311,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [788] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(788), - [sym_block_comment] = STATE(788), + [791] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(791), + [sym_block_comment] = STATE(791), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_RPAREN] = ACTIONS(3033), [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3025), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -93132,9 +93375,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93142,53 +93385,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [789] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(789), - [sym_block_comment] = STATE(789), + [792] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(792), + [sym_block_comment] = STATE(792), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3027), [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_RBRACK] = ACTIONS(3035), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -93206,9 +93449,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93216,52 +93459,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [790] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(790), - [sym_block_comment] = STATE(790), + [793] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(793), + [sym_block_comment] = STATE(793), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3029), + [anon_sym_RPAREN] = ACTIONS(3037), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -93280,9 +93523,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93290,52 +93533,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [791] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(791), - [sym_block_comment] = STATE(791), + [794] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(794), + [sym_block_comment] = STATE(794), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3031), + [anon_sym_RPAREN] = ACTIONS(3039), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -93354,9 +93597,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93364,52 +93607,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [792] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(792), - [sym_block_comment] = STATE(792), + [795] = { + [sym_parameter] = STATE(3027), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2429), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(795), + [sym_block_comment] = STATE(795), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_RPAREN] = ACTIONS(3033), [anon_sym_LBRACK] = ACTIONS(2925), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), @@ -93428,9 +93671,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(3017), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93438,50 +93681,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(3007), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), + [sym_self] = ACTIONS(3009), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [793] = { - [sym_parameter] = STATE(3115), - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2776), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(793), - [sym_block_comment] = STATE(793), + [796] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3301), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(796), + [sym_block_comment] = STATE(796), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -93502,9 +93744,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93512,127 +93754,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(3013), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3015), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, - [794] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2560), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(794), - [sym_block_comment] = STATE(794), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3035), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3037), + [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [795] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(795), - [sym_block_comment] = STATE(795), + [797] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2679), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(797), + [sym_block_comment] = STATE(797), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_RBRACK] = ACTIONS(3039), [anon_sym_u8] = ACTIONS(2927), [anon_sym_i8] = ACTIONS(2927), [anon_sym_u16] = ACTIONS(2927), @@ -93650,9 +93817,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93660,49 +93827,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [796] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2086), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(796), - [sym_block_comment] = STATE(796), + [798] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3188), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(798), + [sym_block_comment] = STATE(798), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -93723,9 +93890,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93733,49 +93900,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [797] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2492), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(797), - [sym_block_comment] = STATE(797), + [799] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3212), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(799), + [sym_block_comment] = STATE(799), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -93796,9 +93963,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93806,49 +93973,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [798] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2428), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(798), - [sym_block_comment] = STATE(798), + [800] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2485), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(800), + [sym_block_comment] = STATE(800), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -93869,9 +94036,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93879,49 +94046,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(3041), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [799] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2843), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(799), - [sym_block_comment] = STATE(799), + [801] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2103), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(801), + [sym_block_comment] = STATE(801), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -93942,9 +94109,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -93952,122 +94119,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [800] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3048), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(800), - [sym_block_comment] = STATE(800), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [802] = { + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2978), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(802), + [sym_block_comment] = STATE(802), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym__] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_ref] = ACTIONS(1632), + [sym_mutable_specifier] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1636), }, - [801] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3053), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(801), - [sym_block_comment] = STATE(801), + [803] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3014), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(803), + [sym_block_comment] = STATE(803), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94088,9 +94255,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94098,49 +94265,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [802] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2110), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(802), - [sym_block_comment] = STATE(802), + [804] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3267), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(804), + [sym_block_comment] = STATE(804), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94161,9 +94328,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94171,49 +94338,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [803] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2088), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(803), - [sym_block_comment] = STATE(803), + [805] = { + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2998), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(805), + [sym_block_comment] = STATE(805), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_ref] = ACTIONS(1632), + [sym_mutable_specifier] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1636), + }, + [806] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2965), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(806), + [sym_block_comment] = STATE(806), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94234,9 +94474,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94244,49 +94484,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(3043), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [804] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3055), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(804), - [sym_block_comment] = STATE(804), + [807] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2434), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(807), + [sym_block_comment] = STATE(807), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94307,9 +94547,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94317,49 +94557,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(3041), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [805] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3080), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(805), - [sym_block_comment] = STATE(805), + [808] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2807), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(808), + [sym_block_comment] = STATE(808), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94380,9 +94620,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94390,49 +94630,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [806] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2779), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(806), - [sym_block_comment] = STATE(806), + [809] = { + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2761), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(809), + [sym_block_comment] = STATE(809), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -94479,33 +94719,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, - [807] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2538), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(807), - [sym_block_comment] = STATE(807), + [810] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2112), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(810), + [sym_block_comment] = STATE(810), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94526,9 +94766,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94536,49 +94776,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [808] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2109), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(808), - [sym_block_comment] = STATE(808), + [811] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2516), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(811), + [sym_block_comment] = STATE(811), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94599,9 +94839,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94609,49 +94849,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), + [sym_self] = ACTIONS(3043), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [809] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2820), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(809), - [sym_block_comment] = STATE(809), + [812] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2101), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(812), + [sym_block_comment] = STATE(812), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94672,9 +94912,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94682,49 +94922,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [810] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2673), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(810), - [sym_block_comment] = STATE(810), + [813] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2081), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(813), + [sym_block_comment] = STATE(813), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94745,9 +94985,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94755,49 +94995,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3045), + [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [811] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3069), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(811), - [sym_block_comment] = STATE(811), + [814] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2093), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(814), + [sym_block_comment] = STATE(814), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94818,9 +95058,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94828,49 +95068,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(3045), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [812] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2104), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(812), - [sym_block_comment] = STATE(812), + [815] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2122), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(815), + [sym_block_comment] = STATE(815), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94891,9 +95131,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94901,49 +95141,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [813] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3047), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(813), - [sym_block_comment] = STATE(813), + [816] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2086), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(816), + [sym_block_comment] = STATE(816), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -94964,9 +95204,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -94974,122 +95214,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [814] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2785), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(814), - [sym_block_comment] = STATE(814), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), + [817] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2466), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(817), + [sym_block_comment] = STATE(817), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(3047), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [815] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3197), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(815), - [sym_block_comment] = STATE(815), + [818] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3272), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(818), + [sym_block_comment] = STATE(818), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95110,9 +95350,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95120,49 +95360,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [816] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2766), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(816), - [sym_block_comment] = STATE(816), + [819] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(2393), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(819), + [sym_block_comment] = STATE(819), + [sym_identifier] = ACTIONS(2919), + [anon_sym_LPAREN] = ACTIONS(2921), + [anon_sym_LBRACK] = ACTIONS(2925), + [anon_sym_u8] = ACTIONS(2927), + [anon_sym_i8] = ACTIONS(2927), + [anon_sym_u16] = ACTIONS(2927), + [anon_sym_i16] = ACTIONS(2927), + [anon_sym_u32] = ACTIONS(2927), + [anon_sym_i32] = ACTIONS(2927), + [anon_sym_u64] = ACTIONS(2927), + [anon_sym_i64] = ACTIONS(2927), + [anon_sym_u128] = ACTIONS(2927), + [anon_sym_i128] = ACTIONS(2927), + [anon_sym_isize] = ACTIONS(2927), + [anon_sym_usize] = ACTIONS(2927), + [anon_sym_f32] = ACTIONS(2927), + [anon_sym_f64] = ACTIONS(2927), + [anon_sym_bool] = ACTIONS(2927), + [anon_sym_str] = ACTIONS(2927), + [anon_sym_char] = ACTIONS(2927), + [anon_sym_DASH] = ACTIONS(1262), + [anon_sym_AMP] = ACTIONS(2929), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_LT] = ACTIONS(29), + [anon_sym__] = ACTIONS(1480), + [anon_sym_DOT_DOT] = ACTIONS(1482), + [anon_sym_COLON_COLON] = ACTIONS(2933), + [anon_sym_const] = ACTIONS(2935), + [anon_sym_default] = ACTIONS(2937), + [anon_sym_union] = ACTIONS(2937), + [anon_sym_ref] = ACTIONS(1300), + [sym_mutable_specifier] = ACTIONS(1488), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2939), + [sym_super] = ACTIONS(2939), + [sym_crate] = ACTIONS(2939), + [sym_metavariable] = ACTIONS(2941), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), + }, + [820] = { + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2912), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(820), + [sym_block_comment] = STATE(820), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -95194,7 +95507,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_default] = ACTIONS(1630), [anon_sym_union] = ACTIONS(1630), [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), + [sym_mutable_specifier] = ACTIONS(3049), [sym_integer_literal] = ACTIONS(1636), [aux_sym_string_literal_token1] = ACTIONS(1638), [sym_char_literal] = ACTIONS(1636), @@ -95209,33 +95522,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, - [817] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2762), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(817), - [sym_block_comment] = STATE(817), + [821] = { + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2949), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(821), + [sym_block_comment] = STATE(821), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -95282,33 +95595,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, - [818] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2447), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(818), - [sym_block_comment] = STATE(818), + [822] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3302), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(822), + [sym_block_comment] = STATE(822), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95329,9 +95642,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95339,49 +95652,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [819] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2758), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(819), - [sym_block_comment] = STATE(819), + [823] = { + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2926), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(823), + [sym_block_comment] = STATE(823), [sym_identifier] = ACTIONS(1604), [anon_sym_LPAREN] = ACTIONS(1606), [anon_sym_LBRACK] = ACTIONS(1608), @@ -95428,252 +95741,106 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__raw_string_literal_start] = ACTIONS(1646), [sym_float_literal] = ACTIONS(1636), }, - [820] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2121), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(820), - [sym_block_comment] = STATE(820), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, - [821] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3073), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(821), - [sym_block_comment] = STATE(821), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, - [822] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2445), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(822), - [sym_block_comment] = STATE(822), - [sym_identifier] = ACTIONS(2919), - [anon_sym_LPAREN] = ACTIONS(2921), - [anon_sym_LBRACK] = ACTIONS(2925), - [anon_sym_u8] = ACTIONS(2927), - [anon_sym_i8] = ACTIONS(2927), - [anon_sym_u16] = ACTIONS(2927), - [anon_sym_i16] = ACTIONS(2927), - [anon_sym_u32] = ACTIONS(2927), - [anon_sym_i32] = ACTIONS(2927), - [anon_sym_u64] = ACTIONS(2927), - [anon_sym_i64] = ACTIONS(2927), - [anon_sym_u128] = ACTIONS(2927), - [anon_sym_i128] = ACTIONS(2927), - [anon_sym_isize] = ACTIONS(2927), - [anon_sym_usize] = ACTIONS(2927), - [anon_sym_f32] = ACTIONS(2927), - [anon_sym_f64] = ACTIONS(2927), - [anon_sym_bool] = ACTIONS(2927), - [anon_sym_str] = ACTIONS(2927), - [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), - [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [824] = { + [sym_bracketed_type] = STATE(3523), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3262), + [sym_macro_invocation] = STATE(2877), + [sym_scoped_identifier] = STATE(2130), + [sym_scoped_type_identifier] = STATE(2908), + [sym_const_block] = STATE(2877), + [sym__pattern] = STATE(2878), + [sym_tuple_pattern] = STATE(2877), + [sym_slice_pattern] = STATE(2877), + [sym_tuple_struct_pattern] = STATE(2877), + [sym_struct_pattern] = STATE(2877), + [sym_remaining_field_pattern] = STATE(2877), + [sym_mut_pattern] = STATE(2877), + [sym_range_pattern] = STATE(2877), + [sym_ref_pattern] = STATE(2877), + [sym_captured_pattern] = STATE(2877), + [sym_reference_pattern] = STATE(2877), + [sym_or_pattern] = STATE(2877), + [sym__literal_pattern] = STATE(2387), + [sym_negative_literal] = STATE(2299), + [sym_string_literal] = STATE(2299), + [sym_raw_string_literal] = STATE(2299), + [sym_boolean_literal] = STATE(2299), + [sym_line_comment] = STATE(824), + [sym_block_comment] = STATE(824), + [sym_identifier] = ACTIONS(1604), + [anon_sym_LPAREN] = ACTIONS(1606), + [anon_sym_LBRACK] = ACTIONS(1608), + [anon_sym_u8] = ACTIONS(1612), + [anon_sym_i8] = ACTIONS(1612), + [anon_sym_u16] = ACTIONS(1612), + [anon_sym_i16] = ACTIONS(1612), + [anon_sym_u32] = ACTIONS(1612), + [anon_sym_i32] = ACTIONS(1612), + [anon_sym_u64] = ACTIONS(1612), + [anon_sym_i64] = ACTIONS(1612), + [anon_sym_u128] = ACTIONS(1612), + [anon_sym_i128] = ACTIONS(1612), + [anon_sym_isize] = ACTIONS(1612), + [anon_sym_usize] = ACTIONS(1612), + [anon_sym_f32] = ACTIONS(1612), + [anon_sym_f64] = ACTIONS(1612), + [anon_sym_bool] = ACTIONS(1612), + [anon_sym_str] = ACTIONS(1612), + [anon_sym_char] = ACTIONS(1612), + [anon_sym_DASH] = ACTIONS(1614), + [anon_sym_AMP] = ACTIONS(1616), + [anon_sym_PIPE] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1480), - [anon_sym_DOT_DOT] = ACTIONS(1482), - [anon_sym_COLON_COLON] = ACTIONS(2933), - [anon_sym_const] = ACTIONS(2935), - [anon_sym_default] = ACTIONS(2937), - [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), - [sym_mutable_specifier] = ACTIONS(3047), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [anon_sym__] = ACTIONS(1620), + [anon_sym_DOT_DOT] = ACTIONS(1622), + [anon_sym_COLON_COLON] = ACTIONS(1624), + [anon_sym_const] = ACTIONS(1628), + [anon_sym_default] = ACTIONS(1630), + [anon_sym_union] = ACTIONS(1630), + [anon_sym_ref] = ACTIONS(1632), + [sym_mutable_specifier] = ACTIONS(1634), + [sym_integer_literal] = ACTIONS(1636), + [aux_sym_string_literal_token1] = ACTIONS(1638), + [sym_char_literal] = ACTIONS(1636), + [anon_sym_true] = ACTIONS(1640), + [anon_sym_false] = ACTIONS(1640), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(2939), - [sym_super] = ACTIONS(2939), - [sym_crate] = ACTIONS(2939), - [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym_self] = ACTIONS(1642), + [sym_super] = ACTIONS(1642), + [sym_crate] = ACTIONS(1642), + [sym_metavariable] = ACTIONS(1644), + [sym__raw_string_literal_start] = ACTIONS(1646), + [sym_float_literal] = ACTIONS(1636), }, - [823] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2884), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(823), - [sym_block_comment] = STATE(823), + [825] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3283), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(825), + [sym_block_comment] = STATE(825), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95694,9 +95861,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95704,49 +95871,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [824] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3104), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(824), - [sym_block_comment] = STATE(824), + [826] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3296), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(826), + [sym_block_comment] = STATE(826), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95767,9 +95934,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95777,122 +95944,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, - [825] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2789), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(825), - [sym_block_comment] = STATE(825), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(3049), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, - [826] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(2090), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), - [sym_line_comment] = STATE(826), - [sym_block_comment] = STATE(826), + [827] = { + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3299), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), + [sym_line_comment] = STATE(827), + [sym_block_comment] = STATE(827), [sym_identifier] = ACTIONS(2919), [anon_sym_LPAREN] = ACTIONS(2921), [anon_sym_LBRACK] = ACTIONS(2925), @@ -95913,9 +96007,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -95923,120 +96017,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), - }, - [827] = { - [sym_bracketed_type] = STATE(3529), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3133), - [sym_macro_invocation] = STATE(2796), - [sym_scoped_identifier] = STATE(2136), - [sym_scoped_type_identifier] = STATE(2859), - [sym_const_block] = STATE(2796), - [sym__pattern] = STATE(2839), - [sym_tuple_pattern] = STATE(2796), - [sym_slice_pattern] = STATE(2796), - [sym_tuple_struct_pattern] = STATE(2796), - [sym_struct_pattern] = STATE(2796), - [sym_remaining_field_pattern] = STATE(2796), - [sym_mut_pattern] = STATE(2796), - [sym_range_pattern] = STATE(2796), - [sym_ref_pattern] = STATE(2796), - [sym_captured_pattern] = STATE(2796), - [sym_reference_pattern] = STATE(2796), - [sym_or_pattern] = STATE(2796), - [sym__literal_pattern] = STATE(2362), - [sym_negative_literal] = STATE(2309), - [sym_string_literal] = STATE(2309), - [sym_raw_string_literal] = STATE(2309), - [sym_boolean_literal] = STATE(2309), - [sym_line_comment] = STATE(827), - [sym_block_comment] = STATE(827), - [sym_identifier] = ACTIONS(1604), - [anon_sym_LPAREN] = ACTIONS(1606), - [anon_sym_LBRACK] = ACTIONS(1608), - [anon_sym_u8] = ACTIONS(1612), - [anon_sym_i8] = ACTIONS(1612), - [anon_sym_u16] = ACTIONS(1612), - [anon_sym_i16] = ACTIONS(1612), - [anon_sym_u32] = ACTIONS(1612), - [anon_sym_i32] = ACTIONS(1612), - [anon_sym_u64] = ACTIONS(1612), - [anon_sym_i64] = ACTIONS(1612), - [anon_sym_u128] = ACTIONS(1612), - [anon_sym_i128] = ACTIONS(1612), - [anon_sym_isize] = ACTIONS(1612), - [anon_sym_usize] = ACTIONS(1612), - [anon_sym_f32] = ACTIONS(1612), - [anon_sym_f64] = ACTIONS(1612), - [anon_sym_bool] = ACTIONS(1612), - [anon_sym_str] = ACTIONS(1612), - [anon_sym_char] = ACTIONS(1612), - [anon_sym_DASH] = ACTIONS(1614), - [anon_sym_AMP] = ACTIONS(1616), - [anon_sym_PIPE] = ACTIONS(1618), - [anon_sym_LT] = ACTIONS(29), - [anon_sym__] = ACTIONS(1620), - [anon_sym_DOT_DOT] = ACTIONS(1622), - [anon_sym_COLON_COLON] = ACTIONS(1624), - [anon_sym_const] = ACTIONS(1628), - [anon_sym_default] = ACTIONS(1630), - [anon_sym_union] = ACTIONS(1630), - [anon_sym_ref] = ACTIONS(1632), - [sym_mutable_specifier] = ACTIONS(1634), - [sym_integer_literal] = ACTIONS(1636), - [aux_sym_string_literal_token1] = ACTIONS(1638), - [sym_char_literal] = ACTIONS(1636), - [anon_sym_true] = ACTIONS(1640), - [anon_sym_false] = ACTIONS(1640), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1642), - [sym_super] = ACTIONS(1642), - [sym_crate] = ACTIONS(1642), - [sym_metavariable] = ACTIONS(1644), - [sym__raw_string_literal_start] = ACTIONS(1646), - [sym_float_literal] = ACTIONS(1636), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [828] = { - [sym_bracketed_type] = STATE(3450), - [sym_generic_type] = STATE(3448), - [sym_generic_type_with_turbofish] = STATE(3252), - [sym_macro_invocation] = STATE(2116), - [sym_scoped_identifier] = STATE(1964), - [sym_scoped_type_identifier] = STATE(2809), - [sym_const_block] = STATE(2116), - [sym__pattern] = STATE(3137), - [sym_tuple_pattern] = STATE(2116), - [sym_slice_pattern] = STATE(2116), - [sym_tuple_struct_pattern] = STATE(2116), - [sym_struct_pattern] = STATE(2116), - [sym_remaining_field_pattern] = STATE(2116), - [sym_mut_pattern] = STATE(2116), - [sym_range_pattern] = STATE(2116), - [sym_ref_pattern] = STATE(2116), - [sym_captured_pattern] = STATE(2116), - [sym_reference_pattern] = STATE(2116), - [sym_or_pattern] = STATE(2116), - [sym__literal_pattern] = STATE(2007), - [sym_negative_literal] = STATE(2017), - [sym_string_literal] = STATE(2017), - [sym_raw_string_literal] = STATE(2017), - [sym_boolean_literal] = STATE(2017), + [sym_bracketed_type] = STATE(3609), + [sym_generic_type] = STATE(3403), + [sym_generic_type_with_turbofish] = STATE(3113), + [sym_macro_invocation] = STATE(2079), + [sym_scoped_identifier] = STATE(1961), + [sym_scoped_type_identifier] = STATE(2970), + [sym_const_block] = STATE(2079), + [sym__pattern] = STATE(3300), + [sym_tuple_pattern] = STATE(2079), + [sym_slice_pattern] = STATE(2079), + [sym_tuple_struct_pattern] = STATE(2079), + [sym_struct_pattern] = STATE(2079), + [sym_remaining_field_pattern] = STATE(2079), + [sym_mut_pattern] = STATE(2079), + [sym_range_pattern] = STATE(2079), + [sym_ref_pattern] = STATE(2079), + [sym_captured_pattern] = STATE(2079), + [sym_reference_pattern] = STATE(2079), + [sym_or_pattern] = STATE(2079), + [sym__literal_pattern] = STATE(2005), + [sym_negative_literal] = STATE(2004), + [sym_string_literal] = STATE(2004), + [sym_raw_string_literal] = STATE(2004), + [sym_boolean_literal] = STATE(2004), [sym_line_comment] = STATE(828), [sym_block_comment] = STATE(828), [sym_identifier] = ACTIONS(2919), @@ -96059,9 +96080,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(2927), [anon_sym_str] = ACTIONS(2927), [anon_sym_char] = ACTIONS(2927), - [anon_sym_DASH] = ACTIONS(1266), + [anon_sym_DASH] = ACTIONS(1262), [anon_sym_AMP] = ACTIONS(2929), - [anon_sym_PIPE] = ACTIONS(1272), + [anon_sym_PIPE] = ACTIONS(1268), [anon_sym_LT] = ACTIONS(29), [anon_sym__] = ACTIONS(1480), [anon_sym_DOT_DOT] = ACTIONS(1482), @@ -96069,126 +96090,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_const] = ACTIONS(2935), [anon_sym_default] = ACTIONS(2937), [anon_sym_union] = ACTIONS(2937), - [anon_sym_ref] = ACTIONS(1304), + [anon_sym_ref] = ACTIONS(1300), [sym_mutable_specifier] = ACTIONS(1488), - [sym_integer_literal] = ACTIONS(1310), - [aux_sym_string_literal_token1] = ACTIONS(1312), - [sym_char_literal] = ACTIONS(1310), - [anon_sym_true] = ACTIONS(1314), - [anon_sym_false] = ACTIONS(1314), + [sym_integer_literal] = ACTIONS(1306), + [aux_sym_string_literal_token1] = ACTIONS(1308), + [sym_char_literal] = ACTIONS(1306), + [anon_sym_true] = ACTIONS(1310), + [anon_sym_false] = ACTIONS(1310), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(2939), [sym_super] = ACTIONS(2939), [sym_crate] = ACTIONS(2939), [sym_metavariable] = ACTIONS(2941), - [sym__raw_string_literal_start] = ACTIONS(1322), - [sym_float_literal] = ACTIONS(1310), + [sym__raw_string_literal_start] = ACTIONS(1318), + [sym_float_literal] = ACTIONS(1306), }, [829] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1254), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(829), [sym_block_comment] = STATE(829), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_PLUS] = ACTIONS(3057), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [sym_mutable_specifier] = ACTIONS(3081), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), - }, - [830] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1973), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(830), - [sym_block_comment] = STATE(830), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96206,133 +96155,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(3089), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(3053), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3091), + [sym_self] = ACTIONS(3055), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [831] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1745), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(831), - [sym_block_comment] = STATE(831), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_PLUS] = ACTIONS(3099), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [sym_mutable_specifier] = ACTIONS(3123), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [832] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(3169), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [830] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(3061), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(832), - [sym_block_comment] = STATE(832), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(830), + [sym_block_comment] = STATE(830), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96350,22 +96227,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(3129), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(3057), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96373,38 +96250,182 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, + [831] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1765), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(831), + [sym_block_comment] = STATE(831), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_PLUS] = ACTIONS(3065), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [sym_mutable_specifier] = ACTIONS(3089), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), + }, + [832] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1213), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(832), + [sym_block_comment] = STATE(832), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_PLUS] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [sym_mutable_specifier] = ACTIONS(3125), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, [833] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1973), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(833), [sym_block_comment] = STATE(833), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_PLUS] = ACTIONS(3087), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_PLUS] = ACTIONS(3051), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96422,21 +96443,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [sym_mutable_specifier] = ACTIONS(3131), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), @@ -96446,37 +96467,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [834] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_type_parameters] = STATE(936), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2303), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(2297), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(2173), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2799), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(834), [sym_block_comment] = STATE(834), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3133), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3133), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96494,21 +96515,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3135), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96517,37 +96538,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [835] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2982), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2506), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(835), [sym_block_comment] = STATE(835), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3139), + [anon_sym_RPAREN] = ACTIONS(3135), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96565,21 +96586,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96588,37 +96609,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [836] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2982), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2799), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(836), [sym_block_comment] = STATE(836), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3141), + [anon_sym_RPAREN] = ACTIONS(3137), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96636,21 +96657,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96659,37 +96680,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [837] = { - [sym_function_modifiers] = STATE(3432), - [sym_higher_ranked_trait_bound] = STATE(2219), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2225), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2227), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1747), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(831), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(837), [sym_block_comment] = STATE(837), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [sym_mutable_specifier] = ACTIONS(3139), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), + }, + [838] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1983), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(833), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(838), + [sym_block_comment] = STATE(838), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96707,21 +96798,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(3141), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96729,38 +96821,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [838] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_type_parameters] = STATE(945), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2311), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(2319), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(2155), - [sym_line_comment] = STATE(838), - [sym_block_comment] = STATE(838), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3145), + [839] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2799), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(839), + [sym_block_comment] = STATE(839), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3143), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96778,21 +96870,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3147), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96800,38 +96892,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [839] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2982), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [840] = { + [sym_function_modifiers] = STATE(3427), + [sym_higher_ranked_trait_bound] = STATE(2208), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2177), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2178), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(839), - [sym_block_comment] = STATE(839), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(840), + [sym_block_comment] = STATE(840), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3149), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96849,21 +96941,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96871,38 +96963,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [840] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_type_parameters] = STATE(890), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2352), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(2339), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(2149), - [sym_line_comment] = STATE(840), - [sym_block_comment] = STATE(840), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3151), + [841] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_type_parameters] = STATE(950), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2369), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(2382), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(2165), + [sym_line_comment] = STATE(841), + [sym_block_comment] = STATE(841), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3147), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96920,21 +97012,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3153), + [anon_sym_BANG] = ACTIONS(3149), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(3151), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -96942,38 +97034,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [841] = { - [sym_function_modifiers] = STATE(3432), - [sym_higher_ranked_trait_bound] = STATE(2219), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2221), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2223), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [842] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2622), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(841), - [sym_block_comment] = STATE(841), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(842), + [sym_block_comment] = STATE(842), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -96991,21 +97082,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3153), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97013,38 +97105,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [842] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2637), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [843] = { + [sym_function_modifiers] = STATE(3427), + [sym_higher_ranked_trait_bound] = STATE(2208), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2207), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2223), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(842), - [sym_block_comment] = STATE(842), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(843), + [sym_block_comment] = STATE(843), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3155), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97062,21 +97154,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97084,108 +97176,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [843] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1323), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(829), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(843), - [sym_block_comment] = STATE(843), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [sym_mutable_specifier] = ACTIONS(3157), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), - }, [844] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2594), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_higher_ranked_trait_bound] = STATE(2208), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2207), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2178), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(844), [sym_block_comment] = STATE(844), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97203,22 +97225,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3159), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97227,37 +97248,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [845] = { - [sym_function_modifiers] = STATE(3432), - [sym_higher_ranked_trait_bound] = STATE(2219), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2225), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2223), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_type_parameters] = STATE(935), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2314), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(2341), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(2147), [sym_line_comment] = STATE(845), [sym_block_comment] = STATE(845), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3155), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97275,21 +97296,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(3157), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3151), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97298,37 +97319,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [846] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2982), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_higher_ranked_trait_bound] = STATE(2173), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2146), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(2153), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(846), [sym_block_comment] = STATE(846), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3161), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97346,21 +97367,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(3145), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97369,37 +97390,36 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [847] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2982), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(3069), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(830), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(847), [sym_block_comment] = STATE(847), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3163), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97417,21 +97437,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), + [sym_mutable_specifier] = ACTIONS(3159), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97440,36 +97461,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [848] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1971), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(833), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_type_parameters] = STATE(938), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2317), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(2319), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(2140), [sym_line_comment] = STATE(848), [sym_block_comment] = STATE(848), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2963), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3161), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97487,22 +97509,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(3163), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), + [anon_sym_LT] = ACTIONS(3151), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(3165), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97511,108 +97532,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_metavariable] = ACTIONS(1584), }, [849] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1659), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(831), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2819), + [sym_bracketed_type] = STATE(3332), + [sym_qualified_type] = STATE(3515), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), [sym_line_comment] = STATE(849), [sym_block_comment] = STATE(849), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [sym_mutable_specifier] = ACTIONS(3167), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), + [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), }, [850] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2823), - [sym_bracketed_type] = STATE(3331), - [sym_qualified_type] = STATE(3424), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1228), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(832), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), [sym_line_comment] = STATE(850), [sym_block_comment] = STATE(850), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [sym_mutable_specifier] = ACTIONS(3165), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [851] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2799), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(851), + [sym_block_comment] = STATE(851), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3167), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), + [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), + }, + [852] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2799), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(852), + [sym_block_comment] = STATE(852), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2963), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3169), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(1264), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), + [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), + }, + [853] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_type_parameters] = STATE(959), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2295), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(2385), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(2170), + [sym_line_comment] = STATE(853), + [sym_block_comment] = STATE(853), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3171), + [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_LBRACK] = ACTIONS(1562), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), + [anon_sym_u8] = ACTIONS(1566), + [anon_sym_i8] = ACTIONS(1566), + [anon_sym_u16] = ACTIONS(1566), + [anon_sym_i16] = ACTIONS(1566), + [anon_sym_u32] = ACTIONS(1566), + [anon_sym_i32] = ACTIONS(1566), + [anon_sym_u64] = ACTIONS(1566), + [anon_sym_i64] = ACTIONS(1566), + [anon_sym_u128] = ACTIONS(1566), + [anon_sym_i128] = ACTIONS(1566), + [anon_sym_isize] = ACTIONS(1566), + [anon_sym_usize] = ACTIONS(1566), + [anon_sym_f32] = ACTIONS(1566), + [anon_sym_f64] = ACTIONS(1566), + [anon_sym_bool] = ACTIONS(1566), + [anon_sym_str] = ACTIONS(1566), + [anon_sym_char] = ACTIONS(1566), + [anon_sym_BANG] = ACTIONS(3173), + [anon_sym_AMP] = ACTIONS(1568), + [anon_sym_LT] = ACTIONS(3151), + [anon_sym_COLON_COLON] = ACTIONS(1572), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(1576), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), + [anon_sym_union] = ACTIONS(1578), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), + [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), + }, + [854] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(854), + [sym_block_comment] = STATE(854), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3175), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97630,21 +97935,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97652,37 +97957,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [851] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2542), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [855] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2576), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(851), - [sym_block_comment] = STATE(851), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(855), + [sym_block_comment] = STATE(855), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3177), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97700,22 +98006,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3169), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97723,38 +98028,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [852] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2541), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [856] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2664), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(852), - [sym_block_comment] = STATE(852), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(856), + [sym_block_comment] = STATE(856), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3171), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97772,21 +98076,22 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3179), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97794,37 +98099,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [853] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(3247), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(832), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [857] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2799), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(853), - [sym_block_comment] = STATE(853), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(857), + [sym_block_comment] = STATE(857), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), + [anon_sym_RPAREN] = ACTIONS(3181), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97842,22 +98148,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), - [sym_mutable_specifier] = ACTIONS(3173), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97865,38 +98170,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [854] = { - [sym_function_modifiers] = STATE(3432), - [sym_higher_ranked_trait_bound] = STATE(2166), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2168), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(2169), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [858] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2334), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(854), - [sym_block_comment] = STATE(854), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(858), + [sym_block_comment] = STATE(858), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97914,21 +98218,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(3143), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -97936,38 +98240,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [855] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_type_parameters] = STATE(932), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2293), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(2317), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(2158), - [sym_line_comment] = STATE(855), - [sym_block_comment] = STATE(855), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3175), + [859] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1996), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(859), + [sym_block_comment] = STATE(859), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -97985,21 +98288,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3177), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(3137), + [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98007,38 +98310,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [856] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2982), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [860] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1985), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(856), - [sym_block_comment] = STATE(856), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(860), + [sym_block_comment] = STATE(860), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3179), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98056,21 +98358,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98078,38 +98380,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [857] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2692), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [861] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1994), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(857), - [sym_block_comment] = STATE(857), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(861), + [sym_block_comment] = STATE(861), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_RPAREN] = ACTIONS(3181), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98127,21 +98428,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98149,37 +98450,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [858] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(3022), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [862] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2402), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(858), - [sym_block_comment] = STATE(858), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(862), + [sym_block_comment] = STATE(862), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98197,21 +98498,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98219,247 +98520,667 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [859] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(3141), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(859), - [sym_block_comment] = STATE(859), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), + [863] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1770), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(863), + [sym_block_comment] = STATE(863), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), [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_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), }, - [860] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2189), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(860), - [sym_block_comment] = STATE(860), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), + [864] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1729), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(864), + [sym_block_comment] = STATE(864), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), [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_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), }, - [861] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2948), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(861), - [sym_block_comment] = STATE(861), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), + [865] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1771), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(865), + [sym_block_comment] = STATE(865), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), [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_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), }, - [862] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2429), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [866] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1731), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(866), + [sym_block_comment] = STATE(866), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), + }, + [867] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1732), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(867), + [sym_block_comment] = STATE(867), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), + }, + [868] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1736), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(868), + [sym_block_comment] = STATE(868), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), + }, + [869] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1737), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(869), + [sym_block_comment] = STATE(869), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), + }, + [870] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1738), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(870), + [sym_block_comment] = STATE(870), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), + }, + [871] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1739), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(871), + [sym_block_comment] = STATE(871), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), + }, + [872] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2184), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(862), - [sym_block_comment] = STATE(862), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(872), + [sym_block_comment] = STATE(872), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98477,21 +99198,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98499,37 +99220,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [863] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2332), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [873] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2350), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(863), - [sym_block_comment] = STATE(863), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(873), + [sym_block_comment] = STATE(873), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98547,21 +99268,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98569,37 +99290,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [864] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2989), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [874] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2351), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(864), - [sym_block_comment] = STATE(864), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(874), + [sym_block_comment] = STATE(874), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98617,21 +99338,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98639,37 +99360,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [865] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2329), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [875] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2837), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(865), - [sym_block_comment] = STATE(865), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(875), + [sym_block_comment] = STATE(875), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98687,21 +99408,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98709,37 +99430,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [866] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1986), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [876] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2863), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(866), - [sym_block_comment] = STATE(866), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(876), + [sym_block_comment] = STATE(876), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98757,21 +99478,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98779,37 +99500,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [867] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2832), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [877] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2355), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(867), - [sym_block_comment] = STATE(867), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(877), + [sym_block_comment] = STATE(877), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98827,21 +99548,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98849,37 +99570,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [868] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2651), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [878] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2874), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(868), - [sym_block_comment] = STATE(868), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(878), + [sym_block_comment] = STATE(878), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98897,21 +99618,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98919,37 +99640,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [869] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2348), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [879] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2357), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(869), - [sym_block_comment] = STATE(869), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(879), + [sym_block_comment] = STATE(879), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -98967,21 +99688,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -98989,37 +99710,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [870] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2960), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [880] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1223), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(880), + [sym_block_comment] = STATE(880), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [881] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2668), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(870), - [sym_block_comment] = STATE(870), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(881), + [sym_block_comment] = STATE(881), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99037,21 +99828,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99059,37 +99850,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [871] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2378), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [882] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2896), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(871), - [sym_block_comment] = STATE(871), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(882), + [sym_block_comment] = STATE(882), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99107,21 +99898,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99129,37 +99920,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [872] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2572), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [883] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2952), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(872), - [sym_block_comment] = STATE(872), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(883), + [sym_block_comment] = STATE(883), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99177,21 +99968,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99199,37 +99990,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [873] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2374), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [884] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2467), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(873), - [sym_block_comment] = STATE(873), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(884), + [sym_block_comment] = STATE(884), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99247,21 +100038,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99269,37 +100060,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [874] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2328), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [885] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2698), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(874), - [sym_block_comment] = STATE(874), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(885), + [sym_block_comment] = STATE(885), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99317,21 +100108,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99339,107 +100130,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [875] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1662), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(875), - [sym_block_comment] = STATE(875), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [876] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2346), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [886] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2576), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(876), - [sym_block_comment] = STATE(876), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(886), + [sym_block_comment] = STATE(886), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99457,21 +100178,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99479,37 +100200,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [877] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2800), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [887] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2358), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(877), - [sym_block_comment] = STATE(877), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(887), + [sym_block_comment] = STATE(887), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99527,21 +100248,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99549,37 +100270,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [878] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2933), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [888] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2359), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(878), - [sym_block_comment] = STATE(878), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(888), + [sym_block_comment] = STATE(888), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99597,21 +100318,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99619,37 +100340,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [879] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2229), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [889] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(1991), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(879), - [sym_block_comment] = STATE(879), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(889), + [sym_block_comment] = STATE(889), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99667,21 +100388,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(2957), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99689,37 +100410,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [880] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2909), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [890] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1976), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(880), - [sym_block_comment] = STATE(880), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(890), + [sym_block_comment] = STATE(890), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99737,21 +100458,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99759,37 +100480,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [881] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2991), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [891] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2719), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(881), - [sym_block_comment] = STATE(881), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(891), + [sym_block_comment] = STATE(891), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99807,21 +100528,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99829,37 +100550,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [882] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1993), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [892] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2225), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(882), - [sym_block_comment] = STATE(882), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(892), + [sym_block_comment] = STATE(892), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99877,21 +100598,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99899,37 +100620,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [883] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2487), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [893] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1292), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(893), + [sym_block_comment] = STATE(893), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [894] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2565), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(883), - [sym_block_comment] = STATE(883), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(894), + [sym_block_comment] = STATE(894), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -99947,21 +100738,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -99969,107 +100760,317 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [884] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2451), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(884), - [sym_block_comment] = STATE(884), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2963), - [anon_sym_LPAREN] = ACTIONS(1560), - [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), - [anon_sym_u8] = ACTIONS(1566), - [anon_sym_i8] = ACTIONS(1566), - [anon_sym_u16] = ACTIONS(1566), - [anon_sym_i16] = ACTIONS(1566), - [anon_sym_u32] = ACTIONS(1566), - [anon_sym_i32] = ACTIONS(1566), - [anon_sym_u64] = ACTIONS(1566), - [anon_sym_i64] = ACTIONS(1566), - [anon_sym_u128] = ACTIONS(1566), - [anon_sym_i128] = ACTIONS(1566), - [anon_sym_isize] = ACTIONS(1566), - [anon_sym_usize] = ACTIONS(1566), - [anon_sym_f32] = ACTIONS(1566), - [anon_sym_f64] = ACTIONS(1566), - [anon_sym_bool] = ACTIONS(1566), - [anon_sym_str] = ACTIONS(1566), - [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1568), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(1572), + [895] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1294), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(895), + [sym_block_comment] = STATE(895), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), - [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [896] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1225), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(896), + [sym_block_comment] = STATE(896), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [897] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1210), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(897), + [sym_block_comment] = STATE(897), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [898] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1667), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(898), + [sym_block_comment] = STATE(898), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), [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_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), }, - [885] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2372), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [899] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(3018), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(885), - [sym_block_comment] = STATE(885), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(899), + [sym_block_comment] = STATE(899), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100087,21 +101088,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100109,37 +101110,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [886] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2920), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [900] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1298), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(900), + [sym_block_comment] = STATE(900), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [901] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(3059), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(886), - [sym_block_comment] = STATE(886), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(901), + [sym_block_comment] = STATE(901), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100157,21 +101228,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100179,37 +101250,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [887] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2230), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [902] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(3061), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(887), - [sym_block_comment] = STATE(887), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(902), + [sym_block_comment] = STATE(902), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100227,21 +101298,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100249,37 +101320,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [888] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2327), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [903] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(3015), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(888), - [sym_block_comment] = STATE(888), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(903), + [sym_block_comment] = STATE(903), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100297,21 +101368,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100319,37 +101390,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [889] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2326), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [904] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2506), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(889), - [sym_block_comment] = STATE(889), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(904), + [sym_block_comment] = STATE(904), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100367,21 +101438,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100389,37 +101460,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [890] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2302), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(2325), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(2154), - [sym_line_comment] = STATE(890), - [sym_block_comment] = STATE(890), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3183), + [905] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(1991), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(905), + [sym_block_comment] = STATE(905), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100437,21 +101508,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3185), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100459,37 +101530,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [891] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2782), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [906] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(3277), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(891), - [sym_block_comment] = STATE(891), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(906), + [sym_block_comment] = STATE(906), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100507,21 +101578,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100529,37 +101600,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [892] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2907), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [907] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1305), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(907), + [sym_block_comment] = STATE(907), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [908] = { + [sym_line_comment] = STATE(908), + [sym_block_comment] = STATE(908), + [sym_identifier] = ACTIONS(2412), + [anon_sym_LPAREN] = ACTIONS(2410), + [anon_sym_LBRACK] = ACTIONS(2410), + [anon_sym_RBRACK] = ACTIONS(2410), + [anon_sym_LBRACE] = ACTIONS(2410), + [anon_sym_STAR] = ACTIONS(2410), + [anon_sym_u8] = ACTIONS(2412), + [anon_sym_i8] = ACTIONS(2412), + [anon_sym_u16] = ACTIONS(2412), + [anon_sym_i16] = ACTIONS(2412), + [anon_sym_u32] = ACTIONS(2412), + [anon_sym_i32] = ACTIONS(2412), + [anon_sym_u64] = ACTIONS(2412), + [anon_sym_i64] = ACTIONS(2412), + [anon_sym_u128] = ACTIONS(2412), + [anon_sym_i128] = ACTIONS(2412), + [anon_sym_isize] = ACTIONS(2412), + [anon_sym_usize] = ACTIONS(2412), + [anon_sym_f32] = ACTIONS(2412), + [anon_sym_f64] = ACTIONS(2412), + [anon_sym_bool] = ACTIONS(2412), + [anon_sym_str] = ACTIONS(2412), + [anon_sym_char] = ACTIONS(2412), + [anon_sym_DASH] = ACTIONS(2410), + [anon_sym_BANG] = ACTIONS(2410), + [anon_sym_AMP] = ACTIONS(2410), + [anon_sym_PIPE] = ACTIONS(2410), + [anon_sym_LT] = ACTIONS(2410), + [anon_sym__] = ACTIONS(2412), + [anon_sym_DOT_DOT] = ACTIONS(2410), + [anon_sym_COMMA] = ACTIONS(2410), + [anon_sym_COLON_COLON] = ACTIONS(2410), + [anon_sym_POUND] = ACTIONS(2410), + [anon_sym_SQUOTE] = ACTIONS(2412), + [anon_sym_async] = ACTIONS(2412), + [anon_sym_break] = ACTIONS(2412), + [anon_sym_const] = ACTIONS(2412), + [anon_sym_continue] = ACTIONS(2412), + [anon_sym_default] = ACTIONS(2412), + [anon_sym_for] = ACTIONS(2412), + [anon_sym_if] = ACTIONS(2412), + [anon_sym_loop] = ACTIONS(2412), + [anon_sym_match] = ACTIONS(2412), + [anon_sym_return] = ACTIONS(2412), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_union] = ACTIONS(2412), + [anon_sym_unsafe] = ACTIONS(2412), + [anon_sym_while] = ACTIONS(2412), + [anon_sym_ref] = ACTIONS(2412), + [sym_mutable_specifier] = ACTIONS(2412), + [anon_sym_yield] = ACTIONS(2412), + [anon_sym_move] = ACTIONS(2412), + [anon_sym_try] = ACTIONS(2412), + [sym_integer_literal] = ACTIONS(2410), + [aux_sym_string_literal_token1] = ACTIONS(2410), + [sym_char_literal] = ACTIONS(2410), + [anon_sym_true] = ACTIONS(2412), + [anon_sym_false] = ACTIONS(2412), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(2412), + [sym_super] = ACTIONS(2412), + [sym_crate] = ACTIONS(2412), + [sym_metavariable] = ACTIONS(2410), + [sym__raw_string_literal_start] = ACTIONS(2410), + [sym_float_literal] = ACTIONS(2410), + }, + [909] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2574), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(892), - [sym_block_comment] = STATE(892), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(909), + [sym_block_comment] = STATE(909), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100577,21 +101788,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100599,177 +101810,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [893] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1803), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(893), - [sym_block_comment] = STATE(893), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [894] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1779), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(894), - [sym_block_comment] = STATE(894), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [895] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2404), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [910] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2987), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(895), - [sym_block_comment] = STATE(895), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(910), + [sym_block_comment] = STATE(910), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100787,21 +101858,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100809,37 +101880,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [896] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1965), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [911] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(3166), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(896), - [sym_block_comment] = STATE(896), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(911), + [sym_block_comment] = STATE(911), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100857,21 +101928,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100879,37 +101950,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [897] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1991), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [912] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(3048), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(897), - [sym_block_comment] = STATE(897), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(912), + [sym_block_comment] = STATE(912), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100927,21 +101998,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -100949,37 +102020,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [898] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1979), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [913] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1309), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(913), + [sym_block_comment] = STATE(913), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [914] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2394), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(898), - [sym_block_comment] = STATE(898), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(914), + [sym_block_comment] = STATE(914), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -100997,21 +102138,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101019,37 +102160,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [899] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1985), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [915] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2934), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(899), - [sym_block_comment] = STATE(899), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(915), + [sym_block_comment] = STATE(915), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101067,21 +102208,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101089,37 +102230,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [900] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2528), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [916] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2799), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(900), - [sym_block_comment] = STATE(900), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(916), + [sym_block_comment] = STATE(916), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101137,21 +102278,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101159,37 +102300,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [901] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2669), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [917] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1388), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(917), + [sym_block_comment] = STATE(917), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [918] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1389), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(918), + [sym_block_comment] = STATE(918), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), + }, + [919] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1990), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(901), - [sym_block_comment] = STATE(901), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(919), + [sym_block_comment] = STATE(919), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101207,21 +102488,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101229,107 +102510,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [902] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1324), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(902), - [sym_block_comment] = STATE(902), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), + [920] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1391), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(920), + [sym_block_comment] = STATE(920), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), }, - [903] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2387), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [921] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2569), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(903), - [sym_block_comment] = STATE(903), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(921), + [sym_block_comment] = STATE(921), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101347,21 +102628,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101369,107 +102650,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [904] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1709), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(904), - [sym_block_comment] = STATE(904), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), + [922] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1449), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(922), + [sym_block_comment] = STATE(922), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), }, - [905] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2217), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [923] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1968), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(905), - [sym_block_comment] = STATE(905), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(923), + [sym_block_comment] = STATE(923), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101487,129 +102768,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(1582), + [sym_self] = ACTIONS(3183), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [906] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1415), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(906), - [sym_block_comment] = STATE(906), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), + [924] = { + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1706), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), + [sym_line_comment] = STATE(924), + [sym_block_comment] = STATE(924), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), }, - [907] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2424), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [925] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2601), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(907), - [sym_block_comment] = STATE(907), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(925), + [sym_block_comment] = STATE(925), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101627,21 +102908,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101649,37 +102930,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [908] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2384), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [926] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1993), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(908), - [sym_block_comment] = STATE(908), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(926), + [sym_block_comment] = STATE(926), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101697,21 +102978,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101719,37 +103000,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [909] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2383), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [927] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1995), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(909), - [sym_block_comment] = STATE(909), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(927), + [sym_block_comment] = STATE(927), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101767,21 +103048,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101789,37 +103070,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [910] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2291), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [928] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1972), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(910), - [sym_block_comment] = STATE(910), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(928), + [sym_block_comment] = STATE(928), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101837,21 +103118,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101859,37 +103140,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [911] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2379), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [929] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2734), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(911), - [sym_block_comment] = STATE(911), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(929), + [sym_block_comment] = STATE(929), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101907,21 +103188,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101929,37 +103210,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [912] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [930] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1971), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(912), - [sym_block_comment] = STATE(912), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(930), + [sym_block_comment] = STATE(930), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -101977,21 +103258,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -101999,107 +103280,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [913] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1790), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(913), - [sym_block_comment] = STATE(913), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [914] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2869), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [931] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2189), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(914), - [sym_block_comment] = STATE(914), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(931), + [sym_block_comment] = STATE(931), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102117,21 +103328,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102139,37 +103350,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [915] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(3170), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [932] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2685), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(915), - [sym_block_comment] = STATE(915), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(932), + [sym_block_comment] = STATE(932), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102187,21 +103398,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102209,37 +103420,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [916] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2296), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [933] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2185), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(916), - [sym_block_comment] = STATE(916), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(933), + [sym_block_comment] = STATE(933), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102257,21 +103468,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102279,107 +103490,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [917] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1809), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(917), - [sym_block_comment] = STATE(917), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [918] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2181), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [934] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2930), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(918), - [sym_block_comment] = STATE(918), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(934), + [sym_block_comment] = STATE(934), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102397,21 +103538,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102419,37 +103560,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [919] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2586), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(919), - [sym_block_comment] = STATE(919), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2963), + [935] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2378), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(2379), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(2174), + [sym_line_comment] = STATE(935), + [sym_block_comment] = STATE(935), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3185), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102467,21 +103608,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(3187), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102489,37 +103630,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [920] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(3169), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [936] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2316), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(920), - [sym_block_comment] = STATE(920), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(936), + [sym_block_comment] = STATE(936), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102537,21 +103678,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102559,37 +103700,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [921] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2375), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [937] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2318), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(921), - [sym_block_comment] = STATE(921), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(937), + [sym_block_comment] = STATE(937), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102607,21 +103748,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102629,37 +103770,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [922] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2182), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(922), - [sym_block_comment] = STATE(922), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2963), + [938] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2328), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(2380), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(2131), + [sym_line_comment] = STATE(938), + [sym_block_comment] = STATE(938), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3189), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102677,21 +103818,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(3191), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102699,37 +103840,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [923] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2692), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [939] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2347), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(923), - [sym_block_comment] = STATE(923), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(939), + [sym_block_comment] = STATE(939), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102747,21 +103888,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102769,37 +103910,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [924] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2924), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [940] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1992), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(924), - [sym_block_comment] = STATE(924), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(940), + [sym_block_comment] = STATE(940), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102817,21 +103958,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102839,37 +103980,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [925] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2176), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [941] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2829), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(925), - [sym_block_comment] = STATE(925), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(941), + [sym_block_comment] = STATE(941), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102887,21 +104028,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102909,37 +104050,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [926] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2610), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [942] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2671), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(926), - [sym_block_comment] = STATE(926), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(942), + [sym_block_comment] = STATE(942), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -102957,21 +104098,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -102979,37 +104120,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [927] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2995), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [943] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2927), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(927), - [sym_block_comment] = STATE(927), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(943), + [sym_block_comment] = STATE(943), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103027,21 +104168,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103049,37 +104190,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [928] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2638), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [944] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2183), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(928), - [sym_block_comment] = STATE(928), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(944), + [sym_block_comment] = STATE(944), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103097,21 +104238,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103119,107 +104260,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [929] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1255), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(929), - [sym_block_comment] = STATE(929), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), + [945] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1212), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(945), + [sym_block_comment] = STATE(945), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), }, - [930] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(1996), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [946] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2646), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(930), - [sym_block_comment] = STATE(930), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(946), + [sym_block_comment] = STATE(946), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103237,21 +104378,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103259,107 +104400,107 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [931] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1254), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(931), - [sym_block_comment] = STATE(931), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), + [947] = { + [sym_function_modifiers] = STATE(3338), + [sym_removed_trait_bound] = STATE(1451), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1213), + [sym_bracketed_type] = STATE(3514), + [sym_lifetime] = STATE(3511), + [sym_array_type] = STATE(1451), + [sym_for_lifetimes] = STATE(1592), + [sym_function_type] = STATE(1451), + [sym_tuple_type] = STATE(1451), + [sym_unit_type] = STATE(1451), + [sym_generic_type] = STATE(1078), + [sym_generic_type_with_turbofish] = STATE(3504), + [sym_bounded_type] = STATE(1451), + [sym_reference_type] = STATE(1451), + [sym_pointer_type] = STATE(1451), + [sym_never_type] = STATE(1451), + [sym_abstract_type] = STATE(1451), + [sym_dynamic_type] = STATE(1451), + [sym_macro_invocation] = STATE(1451), + [sym_scoped_identifier] = STATE(3202), + [sym_scoped_type_identifier] = STATE(1028), + [sym_line_comment] = STATE(947), + [sym_block_comment] = STATE(947), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3095), + [anon_sym_LPAREN] = ACTIONS(3097), + [anon_sym_LBRACK] = ACTIONS(3099), + [anon_sym_STAR] = ACTIONS(3103), + [anon_sym_QMARK] = ACTIONS(3105), + [anon_sym_u8] = ACTIONS(3107), + [anon_sym_i8] = ACTIONS(3107), + [anon_sym_u16] = ACTIONS(3107), + [anon_sym_i16] = ACTIONS(3107), + [anon_sym_u32] = ACTIONS(3107), + [anon_sym_i32] = ACTIONS(3107), + [anon_sym_u64] = ACTIONS(3107), + [anon_sym_i64] = ACTIONS(3107), + [anon_sym_u128] = ACTIONS(3107), + [anon_sym_i128] = ACTIONS(3107), + [anon_sym_isize] = ACTIONS(3107), + [anon_sym_usize] = ACTIONS(3107), + [anon_sym_f32] = ACTIONS(3107), + [anon_sym_f64] = ACTIONS(3107), + [anon_sym_bool] = ACTIONS(3107), + [anon_sym_str] = ACTIONS(3107), + [anon_sym_char] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(3109), + [anon_sym_AMP] = ACTIONS(3111), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3113), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3115), + [anon_sym_fn] = ACTIONS(3117), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3119), + [anon_sym_union] = ACTIONS(3121), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3123), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3127), + [sym_super] = ACTIONS(3127), + [sym_crate] = ACTIONS(3127), + [sym_metavariable] = ACTIONS(3129), }, - [932] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2355), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(2310), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(2162), - [sym_line_comment] = STATE(932), - [sym_block_comment] = STATE(932), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3187), + [948] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2997), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(948), + [sym_block_comment] = STATE(948), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103377,21 +104518,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3189), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103399,37 +104540,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [933] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2521), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [949] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2622), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(933), - [sym_block_comment] = STATE(933), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(949), + [sym_block_comment] = STATE(949), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103447,21 +104588,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103469,37 +104610,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [934] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2834), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(934), - [sym_block_comment] = STATE(934), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(2963), + [950] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2291), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(2384), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(2168), + [sym_line_comment] = STATE(950), + [sym_block_comment] = STATE(950), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3193), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103517,21 +104658,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(3195), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103539,37 +104680,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [935] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2553), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [951] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2414), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(935), - [sym_block_comment] = STATE(935), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(951), + [sym_block_comment] = STATE(951), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103587,21 +104728,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103609,37 +104750,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [936] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2318), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(2312), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(2175), - [sym_line_comment] = STATE(936), - [sym_block_comment] = STATE(936), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3191), + [952] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2758), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(952), + [sym_block_comment] = STATE(952), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103657,21 +104798,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(3193), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103679,107 +104820,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [937] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1742), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(937), - [sym_block_comment] = STATE(937), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [938] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2542), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [953] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2307), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(938), - [sym_block_comment] = STATE(938), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(953), + [sym_block_comment] = STATE(953), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103797,21 +104868,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103819,37 +104890,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [939] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2370), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [954] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2308), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(939), - [sym_block_comment] = STATE(939), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(954), + [sym_block_comment] = STATE(954), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103867,21 +104938,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103889,37 +104960,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [940] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1987), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [955] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2538), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(940), - [sym_block_comment] = STATE(940), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(955), + [sym_block_comment] = STATE(955), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -103937,21 +105008,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -103959,37 +105030,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [941] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2541), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [956] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2789), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(941), - [sym_block_comment] = STATE(941), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(956), + [sym_block_comment] = STATE(956), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104007,21 +105078,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104029,107 +105100,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [942] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1244), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(942), - [sym_block_comment] = STATE(942), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), - }, - [943] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2801), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [957] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2450), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(943), - [sym_block_comment] = STATE(943), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(957), + [sym_block_comment] = STATE(957), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104147,21 +105148,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104169,37 +105170,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [944] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1983), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [958] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2541), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(944), - [sym_block_comment] = STATE(944), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(958), + [sym_block_comment] = STATE(958), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104217,59 +105218,59 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3195), + [sym_self] = ACTIONS(1582), [sym_super] = ACTIONS(1582), [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [945] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2344), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(2341), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(2147), - [sym_line_comment] = STATE(945), - [sym_block_comment] = STATE(945), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [959] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2309), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(2386), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(2172), + [sym_line_comment] = STATE(959), + [sym_block_comment] = STATE(959), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(3197), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104292,16 +105293,16 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104309,37 +105310,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [946] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2198), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [960] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2366), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(946), - [sym_block_comment] = STATE(946), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(960), + [sym_block_comment] = STATE(960), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104357,21 +105358,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104379,37 +105380,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [947] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2386), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [961] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2367), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(947), - [sym_block_comment] = STATE(947), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(961), + [sym_block_comment] = STATE(961), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104427,21 +105428,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104449,37 +105450,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [948] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2290), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [962] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2370), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(948), - [sym_block_comment] = STATE(948), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(962), + [sym_block_comment] = STATE(962), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104497,21 +105498,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104519,37 +105520,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [949] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2304), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [963] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2192), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(949), - [sym_block_comment] = STATE(949), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(963), + [sym_block_comment] = STATE(963), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104567,21 +105568,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104589,37 +105590,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [950] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1970), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [964] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2321), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(950), - [sym_block_comment] = STATE(950), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(964), + [sym_block_comment] = STATE(964), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104637,21 +105638,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104659,37 +105660,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [951] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2301), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [965] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2290), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(951), - [sym_block_comment] = STATE(951), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(965), + [sym_block_comment] = STATE(965), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104707,21 +105708,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104729,37 +105730,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [952] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2334), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [966] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2323), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(952), - [sym_block_comment] = STATE(952), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(966), + [sym_block_comment] = STATE(966), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104777,21 +105778,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104799,37 +105800,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [953] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2550), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [967] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2324), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(953), - [sym_block_comment] = STATE(953), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(967), + [sym_block_comment] = STATE(967), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104847,21 +105848,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104869,37 +105870,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [954] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1967), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [968] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2557), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(954), - [sym_block_comment] = STATE(954), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(968), + [sym_block_comment] = STATE(968), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104917,21 +105918,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -104939,37 +105940,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [955] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2299), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [969] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2909), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(955), - [sym_block_comment] = STATE(955), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(969), + [sym_block_comment] = STATE(969), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -104987,21 +105988,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105009,37 +106010,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [956] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(3072), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [970] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2484), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(956), - [sym_block_comment] = STATE(956), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(970), + [sym_block_comment] = STATE(970), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105057,21 +106058,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105079,37 +106080,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [957] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2180), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [971] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2558), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(957), - [sym_block_comment] = STATE(957), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(971), + [sym_block_comment] = STATE(971), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105127,21 +106128,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105149,107 +106150,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [958] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1172), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(958), - [sym_block_comment] = STATE(958), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), - }, - [959] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2298), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [972] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2932), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(959), - [sym_block_comment] = STATE(959), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(972), + [sym_block_comment] = STATE(972), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105267,21 +106198,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105289,37 +106220,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [960] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2687), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [973] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2560), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(960), - [sym_block_comment] = STATE(960), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(973), + [sym_block_comment] = STATE(973), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105337,21 +106268,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105359,107 +106290,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [961] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1811), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(961), - [sym_block_comment] = STATE(961), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [962] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2850), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [974] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2376), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(962), - [sym_block_comment] = STATE(962), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(974), + [sym_block_comment] = STATE(974), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105477,21 +106338,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105499,177 +106360,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [963] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1170), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(963), - [sym_block_comment] = STATE(963), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), - }, - [964] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1166), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(964), - [sym_block_comment] = STATE(964), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), - }, - [965] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2594), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [975] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2218), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(965), - [sym_block_comment] = STATE(965), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(975), + [sym_block_comment] = STATE(975), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105687,21 +106408,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105709,177 +106430,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [966] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1167), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(966), - [sym_block_comment] = STATE(966), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), - }, - [967] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1165), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(967), - [sym_block_comment] = STATE(967), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), - }, - [968] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2819), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [976] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2330), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(968), - [sym_block_comment] = STATE(968), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(976), + [sym_block_comment] = STATE(976), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -105897,21 +106478,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -105919,107 +106500,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [969] = { - [sym_line_comment] = STATE(969), - [sym_block_comment] = STATE(969), - [sym_identifier] = ACTIONS(2656), - [anon_sym_LPAREN] = ACTIONS(2654), - [anon_sym_LBRACK] = ACTIONS(2654), - [anon_sym_RBRACK] = ACTIONS(2654), - [anon_sym_LBRACE] = 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_BANG] = ACTIONS(2654), - [anon_sym_AMP] = ACTIONS(2654), - [anon_sym_PIPE] = ACTIONS(2654), - [anon_sym_LT] = ACTIONS(2654), - [anon_sym__] = ACTIONS(2656), - [anon_sym_DOT_DOT] = ACTIONS(2654), - [anon_sym_COMMA] = ACTIONS(2654), - [anon_sym_COLON_COLON] = ACTIONS(2654), - [anon_sym_POUND] = 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_for] = ACTIONS(2656), - [anon_sym_if] = ACTIONS(2656), - [anon_sym_loop] = ACTIONS(2656), - [anon_sym_match] = ACTIONS(2656), - [anon_sym_return] = ACTIONS(2656), - [anon_sym_static] = ACTIONS(2656), - [anon_sym_union] = ACTIONS(2656), - [anon_sym_unsafe] = ACTIONS(2656), - [anon_sym_while] = ACTIONS(2656), - [anon_sym_ref] = ACTIONS(2656), - [sym_mutable_specifier] = ACTIONS(2656), - [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_start] = ACTIONS(2654), - [sym_float_literal] = ACTIONS(2654), - }, - [970] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2337), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [977] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2331), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(970), - [sym_block_comment] = STATE(970), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(977), + [sym_block_comment] = STATE(977), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106037,21 +106548,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106059,107 +106570,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [971] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1409), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(971), - [sym_block_comment] = STATE(971), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), - }, - [972] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2584), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [978] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2986), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(972), - [sym_block_comment] = STATE(972), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(978), + [sym_block_comment] = STATE(978), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106177,21 +106618,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106199,37 +106640,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [973] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [979] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1968), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(973), - [sym_block_comment] = STATE(973), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(979), + [sym_block_comment] = STATE(979), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106247,21 +106688,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106269,37 +106710,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [974] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2195), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [980] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2332), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(974), - [sym_block_comment] = STATE(974), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(980), + [sym_block_comment] = STATE(980), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106317,21 +106758,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106339,37 +106780,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [975] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1995), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [981] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2333), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(975), - [sym_block_comment] = STATE(975), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(981), + [sym_block_comment] = STATE(981), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106387,21 +106828,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106409,37 +106850,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [976] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2641), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [982] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2335), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(976), - [sym_block_comment] = STATE(976), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(982), + [sym_block_comment] = STATE(982), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106457,21 +106898,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106479,37 +106920,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [977] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1973), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [983] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2224), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(977), - [sym_block_comment] = STATE(977), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(983), + [sym_block_comment] = STATE(983), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106527,21 +106968,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106549,37 +106990,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [978] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2982), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [984] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2570), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(978), - [sym_block_comment] = STATE(978), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(984), + [sym_block_comment] = STATE(984), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106597,21 +107038,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106619,37 +107060,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [979] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2589), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [985] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2338), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(979), - [sym_block_comment] = STATE(979), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(985), + [sym_block_comment] = STATE(985), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106667,21 +107108,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106689,37 +107130,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [980] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(3305), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [986] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2339), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(980), - [sym_block_comment] = STATE(980), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(986), + [sym_block_comment] = STATE(986), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106737,21 +107178,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106759,107 +107200,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [981] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1776), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(981), - [sym_block_comment] = STATE(981), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [982] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2568), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [987] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2186), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(982), - [sym_block_comment] = STATE(982), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(987), + [sym_block_comment] = STATE(987), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106877,21 +107248,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106899,37 +107270,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [983] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1981), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(1996), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [988] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2739), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(983), - [sym_block_comment] = STATE(983), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(988), + [sym_block_comment] = STATE(988), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -106947,21 +107318,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), - [anon_sym_SQUOTE] = ACTIONS(2957), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -106969,107 +107340,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [984] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1745), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(984), - [sym_block_comment] = STATE(984), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [985] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2824), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [989] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2190), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(985), - [sym_block_comment] = STATE(985), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(989), + [sym_block_comment] = STATE(989), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107087,21 +107388,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107109,37 +107410,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [986] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2858), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [990] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2664), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(986), - [sym_block_comment] = STATE(986), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(990), + [sym_block_comment] = STATE(990), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107157,21 +107458,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107179,37 +107480,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [987] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2376), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [991] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2193), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(987), - [sym_block_comment] = STATE(987), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(991), + [sym_block_comment] = STATE(991), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107227,21 +107528,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107249,107 +107550,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [988] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1663), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(988), - [sym_block_comment] = STATE(988), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [989] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2942), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [992] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2195), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(989), - [sym_block_comment] = STATE(989), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(992), + [sym_block_comment] = STATE(992), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107367,21 +107598,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107389,37 +107620,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [990] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2377), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [993] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2780), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(990), - [sym_block_comment] = STATE(990), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(993), + [sym_block_comment] = STATE(993), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107437,21 +107668,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107459,107 +107690,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [991] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1685), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(991), - [sym_block_comment] = STATE(991), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [992] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2578), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [994] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2523), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(992), - [sym_block_comment] = STATE(992), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(994), + [sym_block_comment] = STATE(994), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107577,21 +107738,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107599,37 +107760,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [993] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2390), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [995] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1975), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(993), - [sym_block_comment] = STATE(993), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(995), + [sym_block_comment] = STATE(995), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107647,21 +107808,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107669,37 +107830,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [994] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2210), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [996] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2947), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(994), - [sym_block_comment] = STATE(994), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(996), + [sym_block_comment] = STATE(996), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107717,21 +107878,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107739,107 +107900,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [995] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1780), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(995), - [sym_block_comment] = STATE(995), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, - [996] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2637), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), + [997] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1989), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), - [sym_line_comment] = STATE(996), - [sym_block_comment] = STATE(996), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(997), + [sym_block_comment] = STATE(997), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -107857,21 +107948,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -107879,247 +107970,247 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [997] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1168), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), - [sym_line_comment] = STATE(997), - [sym_block_comment] = STATE(997), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), - }, [998] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1171), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1764), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(998), [sym_block_comment] = STATE(998), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), }, [999] = { - [sym_function_modifiers] = STATE(3337), - [sym_removed_trait_bound] = STATE(1387), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1175), - [sym_bracketed_type] = STATE(3520), - [sym_lifetime] = STATE(3355), - [sym_array_type] = STATE(1387), - [sym_for_lifetimes] = STATE(1630), - [sym_function_type] = STATE(1387), - [sym_tuple_type] = STATE(1387), - [sym_unit_type] = STATE(1387), - [sym_generic_type] = STATE(1072), - [sym_generic_type_with_turbofish] = STATE(3510), - [sym_bounded_type] = STATE(1387), - [sym_reference_type] = STATE(1387), - [sym_pointer_type] = STATE(1387), - [sym_never_type] = STATE(1387), - [sym_abstract_type] = STATE(1387), - [sym_dynamic_type] = STATE(1387), - [sym_macro_invocation] = STATE(1387), - [sym_scoped_identifier] = STATE(3266), - [sym_scoped_type_identifier] = STATE(1030), + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1765), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(999), [sym_block_comment] = STATE(999), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3051), - [anon_sym_LPAREN] = ACTIONS(3053), - [anon_sym_LBRACK] = ACTIONS(3055), - [anon_sym_STAR] = ACTIONS(3059), - [anon_sym_QMARK] = ACTIONS(3061), - [anon_sym_u8] = ACTIONS(3063), - [anon_sym_i8] = ACTIONS(3063), - [anon_sym_u16] = ACTIONS(3063), - [anon_sym_i16] = ACTIONS(3063), - [anon_sym_u32] = ACTIONS(3063), - [anon_sym_i32] = ACTIONS(3063), - [anon_sym_u64] = ACTIONS(3063), - [anon_sym_i64] = ACTIONS(3063), - [anon_sym_u128] = ACTIONS(3063), - [anon_sym_i128] = ACTIONS(3063), - [anon_sym_isize] = ACTIONS(3063), - [anon_sym_usize] = ACTIONS(3063), - [anon_sym_f32] = ACTIONS(3063), - [anon_sym_f64] = ACTIONS(3063), - [anon_sym_bool] = ACTIONS(3063), - [anon_sym_str] = ACTIONS(3063), - [anon_sym_char] = ACTIONS(3063), - [anon_sym_BANG] = ACTIONS(3065), - [anon_sym_AMP] = ACTIONS(3067), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3069), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3071), - [anon_sym_fn] = ACTIONS(3073), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3075), - [anon_sym_union] = ACTIONS(3077), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3079), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3083), - [sym_super] = ACTIONS(3083), - [sym_crate] = ACTIONS(3083), - [sym_metavariable] = ACTIONS(3085), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), }, [1000] = { - [sym_function_modifiers] = STATE(3432), - [sym_removed_trait_bound] = STATE(1994), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(2205), - [sym_bracketed_type] = STATE(3331), - [sym_lifetime] = STATE(3423), - [sym_array_type] = STATE(1994), - [sym_for_lifetimes] = STATE(1624), - [sym_function_type] = STATE(1994), - [sym_tuple_type] = STATE(1994), - [sym_unit_type] = STATE(1994), - [sym_generic_type] = STATE(1949), - [sym_generic_type_with_turbofish] = STATE(3420), - [sym_bounded_type] = STATE(1994), - [sym_reference_type] = STATE(1994), - [sym_pointer_type] = STATE(1994), - [sym_never_type] = STATE(1994), - [sym_abstract_type] = STATE(1994), - [sym_dynamic_type] = STATE(1994), - [sym_macro_invocation] = STATE(1994), - [sym_scoped_identifier] = STATE(3193), - [sym_scoped_type_identifier] = STATE(1917), + [sym_function_modifiers] = STATE(3473), + [sym_removed_trait_bound] = STATE(1701), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(1725), + [sym_bracketed_type] = STATE(3529), + [sym_lifetime] = STATE(3368), + [sym_array_type] = STATE(1701), + [sym_for_lifetimes] = STATE(1613), + [sym_function_type] = STATE(1701), + [sym_tuple_type] = STATE(1701), + [sym_unit_type] = STATE(1701), + [sym_generic_type] = STATE(1608), + [sym_generic_type_with_turbofish] = STATE(3521), + [sym_bounded_type] = STATE(1701), + [sym_reference_type] = STATE(1701), + [sym_pointer_type] = STATE(1701), + [sym_never_type] = STATE(1701), + [sym_abstract_type] = STATE(1701), + [sym_dynamic_type] = STATE(1701), + [sym_macro_invocation] = STATE(1701), + [sym_scoped_identifier] = STATE(3264), + [sym_scoped_type_identifier] = STATE(1526), [sym_line_comment] = STATE(1000), [sym_block_comment] = STATE(1000), - [aux_sym_function_modifiers_repeat1] = STATE(2224), + [aux_sym_function_modifiers_repeat1] = STATE(2206), + [sym_identifier] = ACTIONS(3059), + [anon_sym_LPAREN] = ACTIONS(3061), + [anon_sym_LBRACK] = ACTIONS(3063), + [anon_sym_STAR] = ACTIONS(3067), + [anon_sym_QMARK] = ACTIONS(3069), + [anon_sym_u8] = ACTIONS(3071), + [anon_sym_i8] = ACTIONS(3071), + [anon_sym_u16] = ACTIONS(3071), + [anon_sym_i16] = ACTIONS(3071), + [anon_sym_u32] = ACTIONS(3071), + [anon_sym_i32] = ACTIONS(3071), + [anon_sym_u64] = ACTIONS(3071), + [anon_sym_i64] = ACTIONS(3071), + [anon_sym_u128] = ACTIONS(3071), + [anon_sym_i128] = ACTIONS(3071), + [anon_sym_isize] = ACTIONS(3071), + [anon_sym_usize] = ACTIONS(3071), + [anon_sym_f32] = ACTIONS(3071), + [anon_sym_f64] = ACTIONS(3071), + [anon_sym_bool] = ACTIONS(3071), + [anon_sym_str] = ACTIONS(3071), + [anon_sym_char] = ACTIONS(3071), + [anon_sym_BANG] = ACTIONS(3073), + [anon_sym_AMP] = ACTIONS(3075), + [anon_sym_LT] = ACTIONS(29), + [anon_sym_COLON_COLON] = ACTIONS(3077), + [anon_sym_SQUOTE] = ACTIONS(2969), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), + [anon_sym_default] = ACTIONS(3079), + [anon_sym_fn] = ACTIONS(3081), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(3083), + [anon_sym_union] = ACTIONS(3085), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(3087), + [anon_sym_SLASH_SLASH] = ACTIONS(101), + [anon_sym_SLASH_STAR] = ACTIONS(103), + [sym_self] = ACTIONS(3091), + [sym_super] = ACTIONS(3091), + [sym_crate] = ACTIONS(3091), + [sym_metavariable] = ACTIONS(3093), + }, + [1001] = { + [sym_function_modifiers] = STATE(3427), + [sym_removed_trait_bound] = STATE(1978), + [sym_extern_modifier] = STATE(2320), + [sym__type] = STATE(2312), + [sym_bracketed_type] = STATE(3332), + [sym_lifetime] = STATE(3533), + [sym_array_type] = STATE(1978), + [sym_for_lifetimes] = STATE(1618), + [sym_function_type] = STATE(1978), + [sym_tuple_type] = STATE(1978), + [sym_unit_type] = STATE(1978), + [sym_generic_type] = STATE(1949), + [sym_generic_type_with_turbofish] = STATE(3430), + [sym_bounded_type] = STATE(1978), + [sym_reference_type] = STATE(1978), + [sym_pointer_type] = STATE(1978), + [sym_never_type] = STATE(1978), + [sym_abstract_type] = STATE(1978), + [sym_dynamic_type] = STATE(1978), + [sym_macro_invocation] = STATE(1978), + [sym_scoped_identifier] = STATE(3153), + [sym_scoped_type_identifier] = STATE(1920), + [sym_line_comment] = STATE(1001), + [sym_block_comment] = STATE(1001), + [aux_sym_function_modifiers_repeat1] = STATE(2206), [sym_identifier] = ACTIONS(2963), [anon_sym_LPAREN] = ACTIONS(1560), [anon_sym_LBRACK] = ACTIONS(1562), - [anon_sym_STAR] = ACTIONS(1260), - [anon_sym_QMARK] = ACTIONS(1262), + [anon_sym_STAR] = ACTIONS(1256), + [anon_sym_QMARK] = ACTIONS(1258), [anon_sym_u8] = ACTIONS(1566), [anon_sym_i8] = ACTIONS(1566), [anon_sym_u16] = ACTIONS(1566), @@ -108137,21 +108228,21 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(1566), [anon_sym_str] = ACTIONS(1566), [anon_sym_char] = ACTIONS(1566), - [anon_sym_BANG] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1264), [anon_sym_AMP] = ACTIONS(1568), [anon_sym_LT] = ACTIONS(29), [anon_sym_COLON_COLON] = ACTIONS(1572), [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), + [anon_sym_async] = ACTIONS(1284), + [anon_sym_const] = ACTIONS(1284), [anon_sym_default] = ACTIONS(1576), - [anon_sym_fn] = ACTIONS(1294), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(1298), + [anon_sym_fn] = ACTIONS(1290), + [anon_sym_for] = ACTIONS(1292), + [anon_sym_impl] = ACTIONS(1294), [anon_sym_union] = ACTIONS(1578), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(1306), + [anon_sym_unsafe] = ACTIONS(1284), + [anon_sym_extern] = ACTIONS(1298), + [anon_sym_dyn] = ACTIONS(1302), [anon_sym_SLASH_SLASH] = ACTIONS(101), [anon_sym_SLASH_STAR] = ACTIONS(103), [sym_self] = ACTIONS(1582), @@ -108159,87 +108250,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_crate] = ACTIONS(1582), [sym_metavariable] = ACTIONS(1584), }, - [1001] = { - [sym_function_modifiers] = STATE(3478), - [sym_removed_trait_bound] = STATE(1831), - [sym_extern_modifier] = STATE(2351), - [sym__type] = STATE(1705), - [sym_bracketed_type] = STATE(3535), - [sym_lifetime] = STATE(3573), - [sym_array_type] = STATE(1831), - [sym_for_lifetimes] = STATE(1612), - [sym_function_type] = STATE(1831), - [sym_tuple_type] = STATE(1831), - [sym_unit_type] = STATE(1831), - [sym_generic_type] = STATE(1601), - [sym_generic_type_with_turbofish] = STATE(3527), - [sym_bounded_type] = STATE(1831), - [sym_reference_type] = STATE(1831), - [sym_pointer_type] = STATE(1831), - [sym_never_type] = STATE(1831), - [sym_abstract_type] = STATE(1831), - [sym_dynamic_type] = STATE(1831), - [sym_macro_invocation] = STATE(1831), - [sym_scoped_identifier] = STATE(3131), - [sym_scoped_type_identifier] = STATE(1527), - [sym_line_comment] = STATE(1001), - [sym_block_comment] = STATE(1001), - [aux_sym_function_modifiers_repeat1] = STATE(2224), - [sym_identifier] = ACTIONS(3093), - [anon_sym_LPAREN] = ACTIONS(3095), - [anon_sym_LBRACK] = ACTIONS(3097), - [anon_sym_STAR] = ACTIONS(3101), - [anon_sym_QMARK] = ACTIONS(3103), - [anon_sym_u8] = ACTIONS(3105), - [anon_sym_i8] = ACTIONS(3105), - [anon_sym_u16] = ACTIONS(3105), - [anon_sym_i16] = ACTIONS(3105), - [anon_sym_u32] = ACTIONS(3105), - [anon_sym_i32] = ACTIONS(3105), - [anon_sym_u64] = ACTIONS(3105), - [anon_sym_i64] = ACTIONS(3105), - [anon_sym_u128] = ACTIONS(3105), - [anon_sym_i128] = ACTIONS(3105), - [anon_sym_isize] = ACTIONS(3105), - [anon_sym_usize] = ACTIONS(3105), - [anon_sym_f32] = ACTIONS(3105), - [anon_sym_f64] = ACTIONS(3105), - [anon_sym_bool] = ACTIONS(3105), - [anon_sym_str] = ACTIONS(3105), - [anon_sym_char] = ACTIONS(3105), - [anon_sym_BANG] = ACTIONS(3107), - [anon_sym_AMP] = ACTIONS(3109), - [anon_sym_LT] = ACTIONS(29), - [anon_sym_COLON_COLON] = ACTIONS(3111), - [anon_sym_SQUOTE] = ACTIONS(2969), - [anon_sym_async] = ACTIONS(1288), - [anon_sym_const] = ACTIONS(1288), - [anon_sym_default] = ACTIONS(3113), - [anon_sym_fn] = ACTIONS(3115), - [anon_sym_for] = ACTIONS(1296), - [anon_sym_impl] = ACTIONS(3117), - [anon_sym_union] = ACTIONS(3119), - [anon_sym_unsafe] = ACTIONS(1288), - [anon_sym_extern] = ACTIONS(1302), - [anon_sym_dyn] = ACTIONS(3121), - [anon_sym_SLASH_SLASH] = ACTIONS(101), - [anon_sym_SLASH_STAR] = ACTIONS(103), - [sym_self] = ACTIONS(3125), - [sym_super] = ACTIONS(3125), - [sym_crate] = ACTIONS(3125), - [sym_metavariable] = ACTIONS(3127), - }, [1002] = { [sym_attribute_item] = STATE(1003), [sym_line_comment] = STATE(1002), [sym_block_comment] = STATE(1002), [aux_sym_enum_variant_list_repeat1] = STATE(1002), [sym_identifier] = ACTIONS(3201), - [anon_sym_LPAREN] = ACTIONS(848), - [anon_sym_LBRACK] = ACTIONS(848), - [anon_sym_RBRACK] = ACTIONS(848), - [anon_sym_LBRACE] = ACTIONS(848), - [anon_sym_STAR] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(796), + [anon_sym_LBRACK] = ACTIONS(796), + [anon_sym_RBRACK] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(796), + [anon_sym_STAR] = ACTIONS(796), [anon_sym_u8] = ACTIONS(3201), [anon_sym_i8] = ACTIONS(3201), [anon_sym_u16] = ACTIONS(3201), @@ -108257,15 +108278,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bool] = ACTIONS(3201), [anon_sym_str] = ACTIONS(3201), [anon_sym_char] = ACTIONS(3201), - [anon_sym_DASH] = ACTIONS(848), - [anon_sym_BANG] = ACTIONS(848), - [anon_sym_AMP] = ACTIONS(848), - [anon_sym_PIPE] = ACTIONS(848), - [anon_sym_LT] = ACTIONS(848), - [anon_sym_DOT_DOT] = ACTIONS(848), - [anon_sym_COMMA] = ACTIONS(848), - [anon_sym_COLON_COLON] = ACTIONS(848), - [anon_sym_POUND] = ACTIONS(874), + [anon_sym_DASH] = ACTIONS(796), + [anon_sym_BANG] = ACTIONS(796), + [anon_sym_AMP] = ACTIONS(796), + [anon_sym_PIPE] = ACTIONS(796), + [anon_sym_LT] = ACTIONS(796), + [anon_sym_DOT_DOT] = ACTIONS(796), + [anon_sym_COMMA] = ACTIONS(796), + [anon_sym_COLON_COLON] = ACTIONS(796), + [anon_sym_POUND] = ACTIONS(822), [anon_sym_SQUOTE] = ACTIONS(3201), [anon_sym_async] = ACTIONS(3201), [anon_sym_break] = ACTIONS(3201), @@ -108284,9 +108305,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(3201), [anon_sym_move] = ACTIONS(3201), [anon_sym_try] = ACTIONS(3201), - [sym_integer_literal] = ACTIONS(848), - [aux_sym_string_literal_token1] = ACTIONS(848), - [sym_char_literal] = ACTIONS(848), + [sym_integer_literal] = ACTIONS(796), + [aux_sym_string_literal_token1] = ACTIONS(796), + [sym_char_literal] = ACTIONS(796), [anon_sym_true] = ACTIONS(3201), [anon_sym_false] = ACTIONS(3201), [anon_sym_SLASH_SLASH] = ACTIONS(101), @@ -108294,9 +108315,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_self] = ACTIONS(3201), [sym_super] = ACTIONS(3201), [sym_crate] = ACTIONS(3201), - [sym_metavariable] = ACTIONS(848), - [sym__raw_string_literal_start] = ACTIONS(848), - [sym_float_literal] = ACTIONS(848), + [sym_metavariable] = ACTIONS(796), + [sym__raw_string_literal_start] = ACTIONS(796), + [sym_float_literal] = ACTIONS(796), }, [1003] = { [sym_line_comment] = STATE(1003), @@ -108376,7 +108397,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1004), 2, sym_line_comment, sym_block_comment, - ACTIONS(1552), 17, + ACTIONS(1556), 17, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108394,7 +108415,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1550), 43, + ACTIONS(1554), 43, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108516,7 +108537,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1006), 2, sym_line_comment, sym_block_comment, - ACTIONS(1089), 18, + ACTIONS(1067), 18, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108585,7 +108606,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1007), 2, sym_line_comment, sym_block_comment, - ACTIONS(2654), 17, + ACTIONS(2410), 17, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -108603,7 +108624,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(2656), 38, + ACTIONS(2412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -108713,33 +108734,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1266), 1, + ACTIONS(1262), 1, anon_sym_DASH, - ACTIONS(1312), 1, + ACTIONS(1308), 1, aux_sym_string_literal_token1, - ACTIONS(1322), 1, + ACTIONS(1318), 1, sym__raw_string_literal_start, - ACTIONS(1880), 1, + ACTIONS(2340), 1, anon_sym_COLON_COLON, ACTIONS(3217), 1, sym_identifier, ACTIONS(3227), 1, sym_metavariable, - STATE(2056), 1, + STATE(2048), 1, sym_scoped_identifier, - STATE(2087), 1, + STATE(2091), 1, sym__literal_pattern, - STATE(3323), 1, + STATE(3324), 1, sym_bracketed_type, - STATE(3349), 1, + STATE(3350), 1, sym_generic_type_with_turbofish, - ACTIONS(1314), 2, + ACTIONS(1310), 2, anon_sym_true, anon_sym_false, STATE(1009), 2, sym_line_comment, sym_block_comment, - ACTIONS(1310), 3, + ACTIONS(1306), 3, sym_float_literal, sym_integer_literal, sym_char_literal, @@ -108751,7 +108772,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2017), 4, + STATE(2004), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, @@ -108791,33 +108812,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1266), 1, + ACTIONS(1262), 1, anon_sym_DASH, - ACTIONS(1312), 1, + ACTIONS(1308), 1, aux_sym_string_literal_token1, - ACTIONS(1322), 1, + ACTIONS(1318), 1, sym__raw_string_literal_start, - ACTIONS(1880), 1, + ACTIONS(2340), 1, anon_sym_COLON_COLON, ACTIONS(3229), 1, sym_identifier, ACTIONS(3239), 1, sym_metavariable, - STATE(2071), 1, + STATE(2036), 1, sym_scoped_identifier, - STATE(2092), 1, + STATE(2080), 1, sym__literal_pattern, - STATE(3323), 1, + STATE(3324), 1, sym_bracketed_type, - STATE(3349), 1, + STATE(3350), 1, sym_generic_type_with_turbofish, - ACTIONS(1314), 2, + ACTIONS(1310), 2, anon_sym_true, anon_sym_false, STATE(1010), 2, sym_line_comment, sym_block_comment, - ACTIONS(1310), 3, + ACTIONS(1306), 3, sym_float_literal, sym_integer_literal, sym_char_literal, @@ -108829,7 +108850,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - STATE(2017), 4, + STATE(2004), 4, sym_negative_literal, sym_string_literal, sym_raw_string_literal, @@ -108875,10 +108896,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(3251), 1, anon_sym_LT2, - STATE(1060), 1, - sym_parameters, - STATE(1067), 1, + STATE(1071), 1, sym_type_arguments, + STATE(1087), 1, + sym_parameters, STATE(1011), 2, sym_line_comment, sym_block_comment, @@ -108939,10 +108960,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3257), 1, anon_sym_COLON_COLON, - STATE(1060), 1, - sym_parameters, - STATE(1067), 1, + STATE(1071), 1, sym_type_arguments, + STATE(1087), 1, + sym_parameters, STATE(1012), 2, sym_line_comment, sym_block_comment, @@ -109003,10 +109024,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3257), 1, anon_sym_COLON_COLON, - STATE(1060), 1, - sym_parameters, - STATE(1067), 1, + STATE(1071), 1, sym_type_arguments, + STATE(1087), 1, + sym_parameters, STATE(1013), 2, sym_line_comment, sym_block_comment, @@ -109067,10 +109088,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(3257), 1, anon_sym_COLON_COLON, - STATE(1060), 1, - sym_parameters, - STATE(1067), 1, + STATE(1071), 1, sym_type_arguments, + STATE(1087), 1, + sym_parameters, STATE(1014), 2, sym_line_comment, sym_block_comment, @@ -109128,64 +109149,6 @@ static const uint16_t ts_small_parse_table[] = { STATE(1015), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1234), 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, - [923] = 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(1236), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, @@ -109236,7 +109199,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [986] = 7, + [923] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -109245,7 +109208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3273), 1, anon_sym_COLON_COLON, - STATE(1017), 2, + STATE(1016), 2, sym_line_comment, sym_block_comment, ACTIONS(3269), 17, @@ -109296,7 +109259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1053] = 7, + [990] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -109305,7 +109268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3281), 1, anon_sym_COLON_COLON, - STATE(1018), 2, + STATE(1017), 2, sym_line_comment, sym_block_comment, ACTIONS(3277), 17, @@ -109356,6 +109319,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, + [1057] = 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(1206), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1208), 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, [1120] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -109364,7 +109385,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1019), 2, sym_line_comment, sym_block_comment, - ACTIONS(1244), 9, + ACTIONS(987), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109374,7 +109395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1246), 39, + ACTIONS(985), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109414,7 +109435,65 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1183] = 9, + [1183] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1020), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1232), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1234), 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, + [1246] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -109423,11 +109502,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3251), 1, anon_sym_LT2, - STATE(1059), 1, - sym_parameters, - STATE(1066), 1, + STATE(1075), 1, sym_type_arguments, - STATE(1020), 2, + STATE(1086), 1, + sym_parameters, + STATE(1021), 2, sym_line_comment, sym_block_comment, ACTIONS(3285), 17, @@ -109476,7 +109555,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1254] = 9, + [1317] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -109485,11 +109564,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3251), 1, anon_sym_LT2, - STATE(1059), 1, - sym_parameters, - STATE(1066), 1, + STATE(1075), 1, sym_type_arguments, - STATE(1021), 2, + STATE(1086), 1, + sym_parameters, + STATE(1022), 2, sym_line_comment, sym_block_comment, ACTIONS(3289), 17, @@ -109538,15 +109617,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1325] = 5, + [1388] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1022), 2, + STATE(1023), 2, sym_line_comment, sym_block_comment, - ACTIONS(993), 9, + ACTIONS(991), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109556,7 +109635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(991), 39, + ACTIONS(989), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109596,7 +109675,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1388] = 7, + [1451] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -109605,7 +109684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3297), 1, anon_sym_COLON_COLON, - STATE(1023), 2, + STATE(1024), 2, sym_line_comment, sym_block_comment, ACTIONS(3293), 17, @@ -109656,15 +109735,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_else, anon_sym_LT2, - [1455] = 5, + [1518] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1024), 2, + STATE(1025), 2, sym_line_comment, sym_block_comment, - ACTIONS(1328), 9, + ACTIONS(1442), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109674,7 +109753,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1330), 39, + ACTIONS(1444), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109714,15 +109793,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1518] = 5, + [1581] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1025), 2, + STATE(1026), 2, sym_line_comment, sym_block_comment, - ACTIONS(999), 9, + ACTIONS(1320), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109732,7 +109811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(997), 39, + ACTIONS(1322), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109772,69 +109851,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1581] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1059), 1, - sym_parameters, - STATE(1066), 1, - sym_type_arguments, - STATE(1026), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3301), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 27, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [1652] = 5, + [1644] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -109842,7 +109859,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1027), 2, sym_line_comment, sym_block_comment, - ACTIONS(1206), 9, + ACTIONS(1244), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -109852,7 +109869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1208), 39, + ACTIONS(1246), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -109892,19 +109909,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1715] = 7, + [1707] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3307), 1, - anon_sym_BANG, - ACTIONS(3309), 1, - anon_sym_COLON_COLON, + ACTIONS(3243), 1, + anon_sym_LPAREN, + ACTIONS(3251), 1, + anon_sym_LT2, + STATE(1075), 1, + sym_type_arguments, + STATE(1086), 1, + sym_parameters, STATE(1028), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 17, + ACTIONS(3301), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -109922,9 +109943,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 29, + ACTIONS(3299), 27, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -109951,66 +109971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [1782] = 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(1240), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1242), 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, - [1845] = 9, + [1778] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -110019,14 +109980,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(3251), 1, anon_sym_LT2, - STATE(1059), 1, - sym_parameters, - STATE(1066), 1, + STATE(1075), 1, sym_type_arguments, - STATE(1030), 2, + STATE(1086), 1, + sym_parameters, + STATE(1029), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 17, + ACTIONS(3305), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110044,7 +110005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3311), 27, + ACTIONS(3303), 27, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_LBRACK, @@ -110072,15 +110033,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [1916] = 5, + [1849] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1031), 2, + STATE(1030), 2, sym_line_comment, sym_block_comment, - ACTIONS(1414), 9, + ACTIONS(1240), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110090,7 +110051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1416), 39, + ACTIONS(1242), 39, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110130,32 +110091,37 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [1979] = 5, + [1912] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1032), 2, + ACTIONS(3311), 1, + anon_sym_BANG, + ACTIONS(3313), 1, + anon_sym_COLON_COLON, + STATE(1031), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3309), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 31, + ACTIONS(3307), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110174,35 +110140,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2041] = 5, + anon_sym_LT2, + [1979] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1033), 2, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3321), 1, + anon_sym_COLON_COLON, + STATE(1032), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 16, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + ACTIONS(3317), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -110212,13 +110186,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3309), 31, + anon_sym_as, + ACTIONS(3315), 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_AMP_AMP, @@ -110239,77 +110211,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [2103] = 5, + [2047] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1034), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2130), 9, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_LT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2132), 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, - [2165] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1035), 2, + STATE(1033), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3295), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110326,7 +110236,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 31, + ACTIONS(3297), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110358,15 +110268,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2227] = 5, + [2109] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1036), 2, + STATE(1034), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3311), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110383,7 +110293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 31, + ACTIONS(3313), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -110415,29 +110325,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2289] = 9, + [2171] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3315), 1, - anon_sym_LBRACE, - ACTIONS(3317), 1, + STATE(1035), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2795), 9, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COMMA, anon_sym_COLON_COLON, - STATE(1455), 1, - sym_field_initializer_list, - STATE(1037), 2, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2797), 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, + [2233] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1036), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3279), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -110447,12 +110407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 28, + ACTIONS(3281), 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_AMP_AMP, @@ -110474,17 +110435,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [2359] = 5, + [2295] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1038), 2, + STATE(1037), 2, sym_line_comment, sym_block_comment, - ACTIONS(1734), 9, + ACTIONS(1762), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110494,7 +110457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1736), 38, + ACTIONS(1764), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110533,15 +110496,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2421] = 5, + [2357] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1039), 2, + STATE(1038), 2, sym_line_comment, sym_block_comment, - ACTIONS(2326), 9, + ACTIONS(2458), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110551,7 +110514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2328), 38, + ACTIONS(2460), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110590,15 +110553,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2483] = 5, + [2419] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1040), 2, + STATE(1039), 2, sym_line_comment, sym_block_comment, - ACTIONS(2322), 9, + ACTIONS(1994), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110608,7 +110571,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2324), 38, + ACTIONS(1996), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110647,26 +110610,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2545] = 8, + [2481] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, + ACTIONS(3247), 1, anon_sym_BANG, ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(3327), 1, anon_sym_COLON_COLON, - STATE(1041), 2, + STATE(1199), 1, + sym_field_initializer_list, + STATE(1040), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - ACTIONS(3321), 16, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -110682,11 +110642,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3319), 23, + ACTIONS(1418), 28, anon_sym_SEMI, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -110707,17 +110668,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [2613] = 7, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [2551] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(3333), 1, anon_sym_POUND, - STATE(1478), 2, + STATE(1479), 2, sym_attribute_item, sym_inner_attribute_item, - STATE(1042), 3, + STATE(1041), 3, sym_line_comment, sym_block_comment, aux_sym_match_arm_repeat1, @@ -110766,6 +110730,63 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, + [2617] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1042), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3271), 16, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3273), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, [2679] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -110774,7 +110795,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1043), 2, sym_line_comment, sym_block_comment, - ACTIONS(2346), 9, + ACTIONS(2146), 9, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -110784,7 +110805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2348), 38, + ACTIONS(2148), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -110823,171 +110844,138 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [2741] = 24, - ACTIONS(29), 1, - anon_sym_LT, + [2741] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3336), 1, - sym_identifier, - ACTIONS(3340), 1, - anon_sym_LPAREN, - ACTIONS(3342), 1, - anon_sym_STAR, - ACTIONS(3346), 1, - anon_sym_AMP, - ACTIONS(3348), 1, - anon_sym_COLON_COLON, - ACTIONS(3350), 1, - anon_sym_SQUOTE, - ACTIONS(3354), 1, - anon_sym_for, - ACTIONS(3358), 1, - sym_metavariable, - STATE(2577), 1, - sym_scoped_type_identifier, - STATE(2716), 1, - sym_where_predicate, - STATE(2937), 1, - sym_generic_type, - STATE(3339), 1, - sym_generic_type_with_turbofish, - STATE(3411), 1, - sym_scoped_identifier, - STATE(3474), 1, - sym_bracketed_type, - ACTIONS(3338), 2, - anon_sym_SEMI, - anon_sym_LBRACE, - ACTIONS(3352), 2, - anon_sym_default, - anon_sym_union, STATE(1044), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 3, - sym_self, - sym_super, - sym_crate, - STATE(3172), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3344), 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, - [2840] = 24, - ACTIONS(29), 1, + ACTIONS(3338), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3336), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_DASH_GT, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [2802] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3336), 1, - sym_identifier, - ACTIONS(3340), 1, - anon_sym_LPAREN, - ACTIONS(3342), 1, - anon_sym_STAR, - ACTIONS(3346), 1, - anon_sym_AMP, - ACTIONS(3348), 1, - anon_sym_COLON_COLON, - ACTIONS(3350), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(3354), 1, - anon_sym_for, - ACTIONS(3358), 1, - sym_metavariable, - STATE(2577), 1, - sym_scoped_type_identifier, - STATE(2716), 1, - sym_where_predicate, - STATE(2937), 1, - sym_generic_type, - STATE(3339), 1, - sym_generic_type_with_turbofish, - STATE(3411), 1, - sym_scoped_identifier, - STATE(3474), 1, - sym_bracketed_type, - ACTIONS(3352), 2, - anon_sym_default, - anon_sym_union, - ACTIONS(3360), 2, - anon_sym_SEMI, - anon_sym_LBRACE, + STATE(1386), 1, + sym_label, STATE(1045), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 3, - sym_self, - sym_super, - sym_crate, - STATE(3172), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3344), 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, - [2939] = 5, + ACTIONS(3342), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3340), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [2867] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3346), 1, + anon_sym_LBRACE, STATE(1046), 2, sym_line_comment, sym_block_comment, - ACTIONS(3364), 15, + ACTIONS(3311), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -110997,13 +110985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3362), 31, + ACTIONS(3313), 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_AMP_AMP, @@ -111025,21 +111012,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [3000] = 6, + [2930] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3370), 1, - anon_sym_DASH_GT, STATE(1047), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 15, + ACTIONS(3350), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111055,7 +111039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3366), 30, + ACTIONS(3348), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111083,22 +111067,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3063] = 7, + [2991] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1413), 1, - sym_label, STATE(1048), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 15, + ACTIONS(3354), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111114,7 +111095,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3372), 29, + ACTIONS(3352), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111142,17 +111123,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3128] = 5, + [3052] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3360), 1, + anon_sym_DASH_GT, STATE(1049), 2, sym_line_comment, sym_block_comment, - ACTIONS(3380), 15, + ACTIONS(3358), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111168,7 +111153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3378), 31, + ACTIONS(3356), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111196,21 +111181,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3189] = 6, + [3115] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_COLON_COLON, + ACTIONS(3362), 1, + anon_sym_else, + STATE(1239), 1, + sym_else_clause, STATE(1050), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(1196), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111226,7 +111212,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 30, + ACTIONS(1194), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111256,16 +111242,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_else, - [3252] = 5, + [3180] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3364), 1, + anon_sym_COLON_COLON, STATE(1051), 2, sym_line_comment, sym_block_comment, - ACTIONS(3386), 15, + ACTIONS(3305), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111281,7 +111268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3384), 31, + ACTIONS(3303), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111309,11 +111296,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3313] = 5, + [3243] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -111321,7 +111307,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1052), 2, sym_line_comment, sym_block_comment, - ACTIONS(3390), 15, + ACTIONS(3368), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111337,7 +111323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3388), 31, + ACTIONS(3366), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111369,17 +111355,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3374] = 6, + [3304] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3396), 1, - anon_sym_DASH_GT, STATE(1053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3394), 15, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111395,7 +111379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3392), 30, + ACTIONS(3370), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111423,20 +111407,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3437] = 6, + [3365] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3402), 1, - anon_sym_DASH_GT, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3069), 1, + anon_sym_QMARK, + ACTIONS(3081), 1, + anon_sym_fn, + ACTIONS(3374), 1, + sym_identifier, + ACTIONS(3376), 1, + anon_sym_LPAREN, + ACTIONS(3380), 1, + anon_sym_COLON_COLON, + ACTIONS(3382), 1, + anon_sym_default, + ACTIONS(3384), 1, + anon_sym_for, + ACTIONS(3386), 1, + anon_sym_union, + ACTIONS(3390), 1, + sym_metavariable, + STATE(1530), 1, + sym_scoped_type_identifier, + STATE(1597), 1, + sym_generic_type, + STATE(1613), 1, + sym_for_lifetimes, + STATE(2206), 1, + aux_sym_function_modifiers_repeat1, + STATE(2320), 1, + sym_extern_modifier, + STATE(3473), 1, + sym_function_modifiers, + STATE(3507), 1, + sym_scoped_identifier, + STATE(3524), 1, + sym_generic_type_with_turbofish, + STATE(3530), 1, + sym_bracketed_type, STATE(1054), 2, sym_line_comment, sym_block_comment, - ACTIONS(3400), 15, + ACTIONS(1284), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3388), 3, + sym_self, + sym_super, + sym_crate, + STATE(1708), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3378), 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, + [3470] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3394), 1, + anon_sym_LPAREN, + STATE(1209), 1, + sym_arguments, + STATE(1055), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111452,9 +111517,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3398), 30, + ACTIONS(3392), 29, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -111483,23 +111547,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3500] = 6, + [3535] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3408), 1, - anon_sym_DASH_GT, - STATE(1055), 2, + ACTIONS(3398), 1, + anon_sym_LBRACE, + STATE(1056), 2, sym_line_comment, sym_block_comment, - ACTIONS(3406), 15, + ACTIONS(3279), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -111509,13 +111574,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3404), 30, + ACTIONS(3281), 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_AMP_AMP, @@ -111537,18 +111601,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [3563] = 5, + [3598] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1056), 2, + STATE(1057), 2, sym_line_comment, sym_block_comment, - ACTIONS(3412), 15, + ACTIONS(3402), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111564,7 +111628,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3410), 31, + ACTIONS(3400), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111592,19 +111656,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3624] = 5, + [3659] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1057), 2, + STATE(1058), 2, sym_line_comment, sym_block_comment, - ACTIONS(3269), 17, + ACTIONS(3406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111615,14 +111679,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3267), 29, + ACTIONS(3404), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111641,30 +111703,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - anon_sym_LT2, - [3685] = 7, + [3720] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3414), 1, - anon_sym_else, - STATE(1227), 1, - sym_else_clause, - STATE(1058), 2, + STATE(1059), 2, sym_line_comment, sym_block_comment, - ACTIONS(1198), 15, + ACTIONS(3410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111680,7 +111740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1196), 29, + ACTIONS(3408), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111708,19 +111768,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [3750] = 6, + anon_sym_else, + [3781] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3420), 1, + ACTIONS(3416), 1, anon_sym_DASH_GT, - STATE(1059), 2, + STATE(1060), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111736,7 +111798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3416), 30, + ACTIONS(3412), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111767,17 +111829,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3813] = 6, + [3844] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3426), 1, - anon_sym_DASH_GT, - STATE(1060), 2, + STATE(1061), 2, sym_line_comment, sym_block_comment, - ACTIONS(3424), 15, + ACTIONS(3420), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111793,7 +111853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3422), 30, + ACTIONS(3418), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111821,20 +111881,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3876] = 6, + [3905] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3105), 1, + anon_sym_QMARK, + ACTIONS(3117), 1, + anon_sym_fn, + ACTIONS(3422), 1, + sym_identifier, + ACTIONS(3424), 1, + anon_sym_LPAREN, + ACTIONS(3428), 1, anon_sym_COLON_COLON, - STATE(1061), 2, + ACTIONS(3430), 1, + anon_sym_default, + ACTIONS(3432), 1, + anon_sym_for, + ACTIONS(3434), 1, + anon_sym_union, + ACTIONS(3438), 1, + sym_metavariable, + STATE(1022), 1, + sym_scoped_type_identifier, + STATE(1088), 1, + sym_generic_type, + STATE(1592), 1, + sym_for_lifetimes, + STATE(2206), 1, + aux_sym_function_modifiers_repeat1, + STATE(2320), 1, + sym_extern_modifier, + STATE(3338), 1, + sym_function_modifiers, + STATE(3483), 1, + sym_scoped_identifier, + STATE(3516), 1, + sym_generic_type_with_turbofish, + STATE(3526), 1, + sym_bracketed_type, + STATE(1062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(1284), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3436), 3, + sym_self, + sym_super, + sym_crate, + STATE(1293), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3426), 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, + [4010] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1063), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1546), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111850,7 +111987,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 30, + ACTIONS(1548), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111858,6 +111995,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_AMP_AMP, anon_sym_PIPE_PIPE, @@ -111881,17 +112019,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [3939] = 6, + [4071] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3428), 1, - anon_sym_COLON_COLON, - STATE(1062), 2, + STATE(1064), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3309), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111902,12 +112038,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 30, + ACTIONS(3307), 29, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111926,29 +112064,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4002] = 6, + anon_sym_LT2, + [4132] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, + ACTIONS(3440), 1, + anon_sym_POUND, + STATE(1476), 1, + sym_attribute_item, + STATE(1065), 3, + sym_line_comment, + sym_block_comment, + aux_sym_enum_variant_list_repeat1, + ACTIONS(796), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1063), 2, + anon_sym_SQUOTE, + sym_integer_literal, + sym_metavariable, + ACTIONS(3201), 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, + [4197] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3445), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -111964,7 +112157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(3443), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -111992,20 +112185,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4065] = 6, + [4258] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3434), 1, + ACTIONS(3451), 1, anon_sym_DASH_GT, - STATE(1064), 2, + STATE(1067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3432), 15, + ACTIONS(3449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112021,7 +112215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3430), 30, + ACTIONS(3447), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112052,21 +112246,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4128] = 5, + [4321] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1065), 2, + ACTIONS(1292), 1, + anon_sym_for, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3069), 1, + anon_sym_QMARK, + ACTIONS(3081), 1, + anon_sym_fn, + ACTIONS(3376), 1, + anon_sym_LPAREN, + ACTIONS(3380), 1, + anon_sym_COLON_COLON, + ACTIONS(3382), 1, + anon_sym_default, + ACTIONS(3386), 1, + anon_sym_union, + ACTIONS(3390), 1, + sym_metavariable, + ACTIONS(3453), 1, + sym_identifier, + STATE(1520), 1, + sym_scoped_type_identifier, + STATE(1613), 1, + sym_for_lifetimes, + STATE(1633), 1, + sym_generic_type, + STATE(2206), 1, + aux_sym_function_modifiers_repeat1, + STATE(2320), 1, + sym_extern_modifier, + STATE(3473), 1, + sym_function_modifiers, + STATE(3507), 1, + sym_scoped_identifier, + STATE(3524), 1, + sym_generic_type_with_turbofish, + STATE(3530), 1, + sym_bracketed_type, + STATE(1068), 2, sym_line_comment, sym_block_comment, - ACTIONS(3213), 15, + ACTIONS(1284), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3388), 3, + sym_self, + sym_super, + sym_crate, + STATE(1730), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3378), 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, + [4426] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3455), 1, + anon_sym_LBRACE, + STATE(1069), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3271), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -112076,15 +112351,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3215), 31, + ACTIONS(3273), 29, 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_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112105,18 +112378,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [4189] = 5, + [4489] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1066), 2, + ACTIONS(3364), 1, + anon_sym_COLON_COLON, + STATE(1070), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 15, + ACTIONS(3285), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112132,7 +112407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3436), 31, + ACTIONS(3283), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112160,19 +112435,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4250] = 5, + [4552] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1067), 2, + STATE(1071), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112188,7 +112462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 31, + ACTIONS(3457), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112220,15 +112494,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4311] = 5, + [4613] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1068), 2, + STATE(1072), 2, sym_line_comment, sym_block_comment, - ACTIONS(3446), 15, + ACTIONS(3463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112244,7 +112518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3444), 31, + ACTIONS(3461), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112276,77 +112550,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4372] = 7, + [4674] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3448), 1, - anon_sym_POUND, - STATE(1481), 1, - sym_attribute_item, - STATE(1069), 3, - sym_line_comment, - sym_block_comment, - aux_sym_enum_variant_list_repeat1, - ACTIONS(848), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, + ACTIONS(3465), 1, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(3201), 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, - [4437] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3453), 1, - anon_sym_LPAREN, - STATE(1470), 1, - sym_arguments, - STATE(1070), 2, + STATE(1073), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 15, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112362,8 +112576,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 29, + ACTIONS(1418), 30, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_RBRACK, @@ -112392,67 +112607,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4502] = 27, + [4737] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1262), 1, + ACTIONS(1292), 1, + anon_sym_for, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3105), 1, anon_sym_QMARK, - ACTIONS(1294), 1, + ACTIONS(3117), 1, anon_sym_fn, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3340), 1, + ACTIONS(3424), 1, anon_sym_LPAREN, - ACTIONS(3348), 1, + ACTIONS(3428), 1, anon_sym_COLON_COLON, - ACTIONS(3352), 1, + ACTIONS(3430), 1, + anon_sym_default, + ACTIONS(3434), 1, anon_sym_union, - ACTIONS(3358), 1, + ACTIONS(3438), 1, sym_metavariable, - ACTIONS(3457), 1, + ACTIONS(3467), 1, sym_identifier, - ACTIONS(3461), 1, - anon_sym_default, - ACTIONS(3463), 1, - anon_sym_for, - STATE(1624), 1, - sym_for_lifetimes, - STATE(1916), 1, + STATE(1021), 1, sym_scoped_type_identifier, - STATE(1941), 1, + STATE(1070), 1, sym_generic_type, - STATE(2224), 1, + STATE(1592), 1, + sym_for_lifetimes, + STATE(2206), 1, aux_sym_function_modifiers_repeat1, - STATE(2351), 1, + STATE(2320), 1, sym_extern_modifier, - STATE(3339), 1, - sym_generic_type_with_turbofish, - STATE(3411), 1, - sym_scoped_identifier, - STATE(3432), 1, + STATE(3338), 1, sym_function_modifiers, - STATE(3474), 1, + STATE(3483), 1, + sym_scoped_identifier, + STATE(3516), 1, + sym_generic_type_with_turbofish, + STATE(3526), 1, sym_bracketed_type, - STATE(1071), 2, + STATE(1074), 2, sym_line_comment, sym_block_comment, - ACTIONS(1288), 3, + ACTIONS(1284), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3356), 3, + ACTIONS(3436), 3, sym_self, sym_super, sym_crate, - STATE(1972), 3, + STATE(1296), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3459), 17, + ACTIONS(3426), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -112470,17 +112685,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [4607] = 6, + [4842] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3382), 1, - anon_sym_COLON_COLON, - STATE(1072), 2, + STATE(1075), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 15, + ACTIONS(3471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112496,7 +112709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3311), 30, + ACTIONS(3469), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112524,77 +112737,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [4670] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3465), 1, anon_sym_COLON_COLON, - STATE(1073), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3313), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3311), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4733] = 6, + [4903] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3467), 1, + ACTIONS(3473), 1, anon_sym_COLON_COLON, - STATE(1074), 2, + STATE(1076), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 15, + ACTIONS(3301), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112610,7 +112767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3311), 30, + ACTIONS(3299), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112641,72 +112798,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4796] = 6, + [4966] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(1075), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3307), 16, - anon_sym_PLUS, + ACTIONS(1562), 1, + anon_sym_LBRACK, + ACTIONS(3475), 1, + sym_identifier, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(3481), 1, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_BANG, + ACTIONS(3485), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3309), 29, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + ACTIONS(3487), 1, anon_sym_COLON_COLON, - anon_sym_as, - anon_sym_else, - [4859] = 5, + ACTIONS(3489), 1, + anon_sym_SQUOTE, + ACTIONS(3493), 1, + anon_sym_for, + ACTIONS(3497), 1, + sym_metavariable, + STATE(2507), 1, + sym_scoped_type_identifier, + STATE(2546), 1, + sym_where_predicate, + STATE(3020), 1, + sym_generic_type, + STATE(3340), 1, + sym_generic_type_with_turbofish, + STATE(3385), 1, + sym_scoped_identifier, + STATE(3469), 1, + sym_bracketed_type, + ACTIONS(3477), 2, + anon_sym_SEMI, + anon_sym_LBRACE, + ACTIONS(3491), 2, + anon_sym_default, + anon_sym_union, + STATE(1077), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3495), 3, + sym_self, + sym_super, + sym_crate, + STATE(3194), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3483), 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, + [5065] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1076), 2, + ACTIONS(3364), 1, + anon_sym_COLON_COLON, + STATE(1078), 2, sym_line_comment, sym_block_comment, - ACTIONS(1546), 15, + ACTIONS(3301), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112722,7 +112899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1548), 31, + ACTIONS(3299), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112730,7 +112907,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_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112754,15 +112930,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4920] = 5, + [5128] = 27, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1077), 2, + ACTIONS(1258), 1, + anon_sym_QMARK, + ACTIONS(1290), 1, + anon_sym_fn, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(3487), 1, + anon_sym_COLON_COLON, + ACTIONS(3491), 1, + anon_sym_union, + ACTIONS(3497), 1, + sym_metavariable, + ACTIONS(3499), 1, + sym_identifier, + ACTIONS(3503), 1, + anon_sym_default, + ACTIONS(3505), 1, + anon_sym_for, + STATE(1618), 1, + sym_for_lifetimes, + STATE(1914), 1, + sym_scoped_type_identifier, + STATE(1951), 1, + sym_generic_type, + STATE(2206), 1, + aux_sym_function_modifiers_repeat1, + STATE(2320), 1, + sym_extern_modifier, + STATE(3340), 1, + sym_generic_type_with_turbofish, + STATE(3385), 1, + sym_scoped_identifier, + STATE(3427), 1, + sym_function_modifiers, + STATE(3469), 1, + sym_bracketed_type, + STATE(1079), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1284), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3495), 3, + sym_self, + sym_super, + sym_crate, + STATE(1966), 3, + sym_removed_trait_bound, + sym_function_type, + sym_tuple_type, + ACTIONS(3501), 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, + [5233] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1080), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 15, + ACTIONS(3213), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112778,7 +113032,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3471), 31, + ACTIONS(3215), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112786,6 +113040,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_AMP_AMP, anon_sym_PIPE_PIPE, @@ -112806,19 +113061,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [4981] = 5, + [5294] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1078), 2, + STATE(1081), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, + ACTIONS(3509), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -112834,7 +113088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3475), 31, + ACTIONS(3507), 31, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -112866,24 +113120,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5042] = 6, + [5355] = 24, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1562), 1, + anon_sym_LBRACK, + ACTIONS(3475), 1, + sym_identifier, ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(3481), 1, + anon_sym_STAR, + ACTIONS(3485), 1, + anon_sym_AMP, + ACTIONS(3487), 1, + anon_sym_COLON_COLON, + ACTIONS(3489), 1, + anon_sym_SQUOTE, + ACTIONS(3493), 1, + anon_sym_for, + ACTIONS(3497), 1, + sym_metavariable, + STATE(2507), 1, + sym_scoped_type_identifier, + STATE(2546), 1, + sym_where_predicate, + STATE(3020), 1, + sym_generic_type, + STATE(3340), 1, + sym_generic_type_with_turbofish, + STATE(3385), 1, + sym_scoped_identifier, + STATE(3469), 1, + sym_bracketed_type, + ACTIONS(3491), 2, + anon_sym_default, + anon_sym_union, + ACTIONS(3511), 2, + anon_sym_SEMI, anon_sym_LBRACE, - STATE(1079), 2, + STATE(1082), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3495), 3, + sym_self, + sym_super, + sym_crate, + STATE(3194), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3483), 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, + [5454] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3517), 1, + anon_sym_DASH_GT, + STATE(1083), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3515), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -112893,12 +113221,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 29, + ACTIONS(3513), 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_AMP_AMP, @@ -112920,70 +113249,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5105] = 27, + [5517] = 27, ACTIONS(29), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1296), 1, - anon_sym_for, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3103), 1, + ACTIONS(1258), 1, anon_sym_QMARK, - ACTIONS(3115), 1, + ACTIONS(1290), 1, anon_sym_fn, - ACTIONS(3481), 1, - sym_identifier, - ACTIONS(3483), 1, + ACTIONS(1292), 1, + anon_sym_for, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3479), 1, anon_sym_LPAREN, ACTIONS(3487), 1, anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_default, ACTIONS(3491), 1, anon_sym_union, - ACTIONS(3495), 1, + ACTIONS(3497), 1, sym_metavariable, - STATE(1531), 1, + ACTIONS(3503), 1, + anon_sym_default, + ACTIONS(3519), 1, + sym_identifier, + STATE(1618), 1, + sym_for_lifetimes, + STATE(1916), 1, sym_scoped_type_identifier, - STATE(1581), 1, + STATE(1940), 1, sym_generic_type, - STATE(1612), 1, - sym_for_lifetimes, - STATE(2224), 1, + STATE(2206), 1, aux_sym_function_modifiers_repeat1, - STATE(2351), 1, + STATE(2320), 1, sym_extern_modifier, - STATE(3478), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3530), 1, + STATE(3340), 1, sym_generic_type_with_turbofish, - STATE(3536), 1, + STATE(3385), 1, + sym_scoped_identifier, + STATE(3427), 1, + sym_function_modifiers, + STATE(3469), 1, sym_bracketed_type, - STATE(1080), 2, + STATE(1084), 2, sym_line_comment, sym_block_comment, - ACTIONS(1288), 3, + ACTIONS(1284), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3493), 3, + ACTIONS(3495), 3, sym_self, sym_super, sym_crate, - STATE(1716), 3, + STATE(1979), 3, sym_removed_trait_bound, sym_function_type, sym_tuple_type, - ACTIONS(3485), 17, + ACTIONS(3501), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113001,102 +113330,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5210] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [5622] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3103), 1, - anon_sym_QMARK, - ACTIONS(3115), 1, - anon_sym_fn, - ACTIONS(3483), 1, - anon_sym_LPAREN, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_default, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3495), 1, - sym_metavariable, - ACTIONS(3497), 1, - sym_identifier, - ACTIONS(3499), 1, - anon_sym_for, - STATE(1530), 1, - sym_scoped_type_identifier, - STATE(1612), 1, - sym_for_lifetimes, - STATE(1616), 1, - sym_generic_type, - STATE(2224), 1, - aux_sym_function_modifiers_repeat1, - STATE(2351), 1, - sym_extern_modifier, - STATE(3478), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3530), 1, - sym_generic_type_with_turbofish, - STATE(3536), 1, - sym_bracketed_type, - STATE(1081), 2, + ACTIONS(3525), 1, + anon_sym_DASH_GT, + STATE(1085), 2, sym_line_comment, sym_block_comment, - ACTIONS(1288), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3493), 3, - sym_self, - sym_super, - sym_crate, - STATE(1772), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3485), 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, - [5315] = 6, + ACTIONS(3523), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3521), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [5685] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3501), 1, - anon_sym_LBRACE, - STATE(1082), 2, + ACTIONS(3531), 1, + anon_sym_DASH_GT, + STATE(1086), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -113106,12 +113413,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 29, + ACTIONS(3527), 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_AMP_AMP, @@ -113133,18 +113441,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5378] = 5, + [5748] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1083), 2, + ACTIONS(3537), 1, + anon_sym_DASH_GT, + STATE(1087), 2, sym_line_comment, sym_block_comment, - ACTIONS(3505), 15, + ACTIONS(3535), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113160,7 +113470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3503), 31, + ACTIONS(3533), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113188,19 +113498,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5439] = 5, + [5811] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1084), 2, + ACTIONS(3364), 1, + anon_sym_COLON_COLON, + STATE(1088), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(3289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113216,7 +113527,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 31, + ACTIONS(3287), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113244,18 +113555,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5500] = 6, + [5874] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3511), 1, + ACTIONS(3539), 1, anon_sym_LBRACE, - STATE(1085), 2, + STATE(1089), 2, sym_line_comment, sym_block_comment, ACTIONS(3295), 16, @@ -113305,15 +113615,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_as, anon_sym_else, - [5563] = 5, + [5937] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1086), 2, + ACTIONS(3541), 1, + anon_sym_COLON_COLON, + STATE(1090), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(3301), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113329,7 +113641,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 31, + ACTIONS(3299), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113357,19 +113669,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5624] = 5, + [6000] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1087), 2, + STATE(1091), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 15, + ACTIONS(1368), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -113385,7 +113696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3517), 31, + ACTIONS(1366), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -113413,71 +113724,191 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [5685] = 27, - ACTIONS(29), 1, - anon_sym_LT, + [6060] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1296), 1, - anon_sym_for, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3073), 1, + STATE(1092), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1958), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1960), 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, - ACTIONS(3521), 1, + 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, - ACTIONS(3523), 1, - anon_sym_LPAREN, - ACTIONS(3527), 1, + sym_self, + sym_super, + sym_crate, + [6120] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1093), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1962), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(3529), 1, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1964), 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, - ACTIONS(3531), 1, + 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, - ACTIONS(3535), 1, - sym_metavariable, - STATE(1020), 1, - sym_scoped_type_identifier, - STATE(1050), 1, - sym_generic_type, - STATE(1630), 1, - sym_for_lifetimes, - STATE(2224), 1, - aux_sym_function_modifiers_repeat1, - STATE(2351), 1, - sym_extern_modifier, - STATE(3337), 1, - sym_function_modifiers, - STATE(3488), 1, - sym_scoped_identifier, - STATE(3522), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1088), 2, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [6180] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1094), 2, sym_line_comment, sym_block_comment, - ACTIONS(1288), 3, + ACTIONS(1966), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1968), 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, - ACTIONS(3533), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1169), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3525), 17, + [6240] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1095), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1970), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1972), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113495,67 +113926,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5790] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3061), 1, - anon_sym_QMARK, - ACTIONS(3073), 1, - anon_sym_fn, - ACTIONS(3523), 1, - anon_sym_LPAREN, - ACTIONS(3527), 1, - anon_sym_COLON_COLON, - ACTIONS(3529), 1, - anon_sym_default, - ACTIONS(3531), 1, - anon_sym_union, - ACTIONS(3535), 1, - sym_metavariable, - ACTIONS(3537), 1, - sym_identifier, - ACTIONS(3539), 1, - anon_sym_for, - STATE(1026), 1, - sym_scoped_type_identifier, - STATE(1063), 1, - sym_generic_type, - STATE(1630), 1, - sym_for_lifetimes, - STATE(2224), 1, - aux_sym_function_modifiers_repeat1, - STATE(2351), 1, - sym_extern_modifier, - STATE(3337), 1, - sym_function_modifiers, - STATE(3488), 1, - sym_scoped_identifier, - STATE(3522), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1089), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1288), 3, 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, - ACTIONS(3533), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1322), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3525), 17, + [6300] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1096), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1974), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1976), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113573,67 +113981,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [5895] = 27, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1262), 1, - anon_sym_QMARK, - ACTIONS(1294), 1, - anon_sym_fn, - ACTIONS(1296), 1, - anon_sym_for, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3340), 1, - anon_sym_LPAREN, - ACTIONS(3348), 1, - anon_sym_COLON_COLON, - ACTIONS(3352), 1, - anon_sym_union, - ACTIONS(3358), 1, - sym_metavariable, - ACTIONS(3461), 1, - anon_sym_default, - ACTIONS(3541), 1, - sym_identifier, - STATE(1624), 1, - sym_for_lifetimes, - STATE(1914), 1, - sym_scoped_type_identifier, - STATE(1957), 1, - sym_generic_type, - STATE(2224), 1, - aux_sym_function_modifiers_repeat1, - STATE(2351), 1, - sym_extern_modifier, - STATE(3339), 1, - sym_generic_type_with_turbofish, - STATE(3411), 1, - sym_scoped_identifier, - STATE(3432), 1, - sym_function_modifiers, - STATE(3474), 1, - sym_bracketed_type, - STATE(1090), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1288), 3, 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, - ACTIONS(3356), 3, + anon_sym_use, + anon_sym_extern, + sym_identifier, sym_self, sym_super, sym_crate, - STATE(1968), 3, - sym_removed_trait_bound, - sym_function_type, - sym_tuple_type, - ACTIONS(3459), 17, + [6360] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1097), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1978), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1980), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113651,15 +114036,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [6000] = 5, + 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, + [6420] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1091), 2, + STATE(1098), 2, sym_line_comment, sym_block_comment, - ACTIONS(2795), 7, + ACTIONS(1982), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113667,7 +114073,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2797), 38, + ACTIONS(1984), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113706,29 +114112,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6060] = 5, + [6480] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1092), 2, + STATE(1099), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 13, + ACTIONS(1986), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3543), 32, + ACTIONS(1988), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113749,82 +114149,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, - [6120] = 5, + [6540] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1093), 2, + STATE(1100), 2, sym_line_comment, sym_block_comment, - ACTIONS(3549), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3547), 30, + ACTIONS(1990), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6180] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1992), 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, + [6600] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1094), 2, + STATE(1101), 2, sym_line_comment, sym_block_comment, - ACTIONS(1940), 7, + ACTIONS(1874), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113832,7 +114238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1942), 38, + ACTIONS(1876), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113871,15 +114277,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6240] = 5, + [6660] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1095), 2, + STATE(1102), 2, sym_line_comment, sym_block_comment, - ACTIONS(2334), 7, + ACTIONS(1998), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113887,7 +114293,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2336), 38, + ACTIONS(2000), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113926,15 +114332,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6300] = 5, + [6720] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1096), 2, + STATE(1103), 2, sym_line_comment, sym_block_comment, - ACTIONS(1706), 7, + ACTIONS(2002), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -113942,7 +114348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1708), 38, + ACTIONS(2004), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -113981,125 +114387,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6360] = 5, + [6780] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1097), 2, + STATE(1104), 2, sym_line_comment, sym_block_comment, - ACTIONS(1402), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1400), 30, + ACTIONS(2006), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6420] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2008), 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, + [6840] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1098), 2, + STATE(1105), 2, sym_line_comment, sym_block_comment, - ACTIONS(1238), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1236), 30, + ACTIONS(2010), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6480] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2012), 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, + [6900] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1099), 2, + STATE(1106), 2, sym_line_comment, sym_block_comment, - ACTIONS(2530), 7, + ACTIONS(2014), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114107,7 +114513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2532), 38, + ACTIONS(2016), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114146,15 +114552,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6540] = 5, + [6960] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1100), 2, + STATE(1107), 2, sym_line_comment, sym_block_comment, - ACTIONS(2570), 7, + ACTIONS(2018), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114162,7 +114568,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2572), 38, + ACTIONS(2020), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114201,15 +114607,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6600] = 5, + [7020] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1101), 2, + STATE(1108), 2, sym_line_comment, sym_block_comment, - ACTIONS(2578), 7, + ACTIONS(2022), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114217,7 +114623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2580), 38, + ACTIONS(2024), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114256,15 +114662,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6660] = 5, + [7080] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1102), 2, + STATE(1109), 2, sym_line_comment, sym_block_comment, - ACTIONS(2915), 7, + ACTIONS(2026), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114272,7 +114678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2917), 38, + ACTIONS(2028), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114311,15 +114717,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6720] = 5, + [7140] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1103), 2, + STATE(1110), 2, sym_line_comment, sym_block_comment, - ACTIONS(2879), 7, + ACTIONS(2030), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114327,7 +114733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2881), 38, + ACTIONS(2032), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114366,15 +114772,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6780] = 5, + [7200] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1104), 2, + STATE(1111), 2, sym_line_comment, sym_block_comment, - ACTIONS(2871), 7, + ACTIONS(2034), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114382,7 +114788,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2873), 38, + ACTIONS(2036), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114421,15 +114827,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6840] = 5, + [7260] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1105), 2, + STATE(1112), 2, sym_line_comment, sym_block_comment, - ACTIONS(2867), 7, + ACTIONS(2038), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114437,7 +114843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2869), 38, + ACTIONS(2040), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114476,70 +114882,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [6900] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1106), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3553), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3551), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [6960] = 5, + [7320] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1107), 2, + STATE(1113), 2, sym_line_comment, sym_block_comment, - ACTIONS(2843), 7, + ACTIONS(2042), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114547,7 +114898,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2845), 38, + ACTIONS(2044), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114586,15 +114937,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7020] = 5, + [7380] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1108), 2, + STATE(1114), 2, sym_line_comment, sym_block_comment, - ACTIONS(2827), 7, + ACTIONS(2046), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114602,7 +114953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2829), 38, + ACTIONS(2048), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114641,15 +114992,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7080] = 5, + [7440] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1109), 2, + STATE(1115), 2, sym_line_comment, sym_block_comment, - ACTIONS(2823), 7, + ACTIONS(2050), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114657,7 +115008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2825), 38, + ACTIONS(2052), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114696,15 +115047,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7140] = 5, + [7500] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1110), 2, + STATE(1116), 2, sym_line_comment, sym_block_comment, - ACTIONS(2807), 7, + ACTIONS(2054), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114712,7 +115063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2809), 38, + ACTIONS(2056), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114751,15 +115102,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7200] = 5, + [7560] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1111), 2, + STATE(1117), 2, sym_line_comment, sym_block_comment, - ACTIONS(2799), 7, + ACTIONS(2058), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114767,7 +115118,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2801), 38, + ACTIONS(2060), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114806,15 +115157,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7260] = 5, + [7620] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1112), 2, + STATE(1118), 2, sym_line_comment, sym_block_comment, - ACTIONS(2779), 7, + ACTIONS(2062), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114822,7 +115173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2781), 38, + ACTIONS(2064), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114861,15 +115212,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7320] = 5, + [7680] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1113), 2, + STATE(1119), 2, sym_line_comment, sym_block_comment, - ACTIONS(2634), 7, + ACTIONS(2066), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114877,7 +115228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2636), 38, + ACTIONS(2068), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114916,15 +115267,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7380] = 5, + [7740] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1114), 2, + STATE(1120), 2, sym_line_comment, sym_block_comment, - ACTIONS(2566), 7, + ACTIONS(2070), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114932,7 +115283,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2568), 38, + ACTIONS(2072), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -114971,15 +115322,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7440] = 5, + [7800] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1115), 2, + STATE(1121), 2, sym_line_comment, sym_block_comment, - ACTIONS(2562), 7, + ACTIONS(2074), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -114987,7 +115338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2564), 38, + ACTIONS(2076), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115026,15 +115377,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7500] = 5, + [7860] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1116), 2, + STATE(1122), 2, sym_line_comment, sym_block_comment, - ACTIONS(2558), 7, + ACTIONS(2078), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115042,7 +115393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2560), 38, + ACTIONS(2080), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115081,15 +115432,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7560] = 5, + [7920] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1117), 2, + STATE(1123), 2, sym_line_comment, sym_block_comment, - ACTIONS(2534), 7, + ACTIONS(2082), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115097,7 +115448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2536), 38, + ACTIONS(2084), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115136,15 +115487,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7620] = 5, + [7980] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1118), 2, + STATE(1124), 2, sym_line_comment, sym_block_comment, - ACTIONS(2488), 7, + ACTIONS(2086), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115152,7 +115503,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2490), 38, + ACTIONS(2088), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115191,15 +115542,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7680] = 5, + [8040] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1119), 2, + STATE(1125), 2, sym_line_comment, sym_block_comment, - ACTIONS(2464), 7, + ACTIONS(2090), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115207,7 +115558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2466), 38, + ACTIONS(2092), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115246,15 +115597,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7740] = 5, + [8100] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1120), 2, + STATE(1126), 2, sym_line_comment, sym_block_comment, - ACTIONS(2456), 7, + ACTIONS(2094), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115262,7 +115613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2458), 38, + ACTIONS(2096), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115301,15 +115652,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7800] = 5, + [8160] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1121), 2, + STATE(1127), 2, sym_line_comment, sym_block_comment, - ACTIONS(2420), 7, + ACTIONS(1430), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1428), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [8220] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1128), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1878), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115317,7 +115723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2422), 38, + ACTIONS(1880), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115356,15 +115762,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7860] = 5, + [8280] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1122), 2, + STATE(1129), 2, sym_line_comment, sym_block_comment, - ACTIONS(2416), 7, + ACTIONS(1882), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115372,7 +115778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2418), 38, + ACTIONS(1884), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115411,15 +115817,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7920] = 5, + [8340] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1130), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1400), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1398), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [8400] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1123), 2, + STATE(1131), 2, sym_line_comment, sym_block_comment, - ACTIONS(2412), 7, + ACTIONS(2102), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115427,7 +115888,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2414), 38, + ACTIONS(2104), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115466,15 +115927,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [7980] = 5, + [8460] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1124), 2, + STATE(1132), 2, sym_line_comment, sym_block_comment, - ACTIONS(1662), 7, + ACTIONS(2106), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115482,7 +115943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1664), 38, + ACTIONS(2108), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115521,15 +115982,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8040] = 5, + [8520] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1125), 2, + STATE(1133), 2, sym_line_comment, sym_block_comment, - ACTIONS(2314), 7, + ACTIONS(2110), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115537,7 +115998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2316), 38, + ACTIONS(2112), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115576,70 +116037,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8100] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1126), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3557), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3555), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8160] = 5, + [8580] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1127), 2, + STATE(1134), 2, sym_line_comment, sym_block_comment, - ACTIONS(2290), 7, + ACTIONS(2114), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115647,7 +116053,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2292), 38, + ACTIONS(2116), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115686,70 +116092,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8220] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1128), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3561), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3559), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8280] = 5, + [8640] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1129), 2, + STATE(1135), 2, sym_line_comment, sym_block_comment, - ACTIONS(2258), 7, + ACTIONS(2118), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115757,7 +116108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2260), 38, + ACTIONS(2120), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115796,15 +116147,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8340] = 5, + [8700] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1130), 2, + STATE(1136), 2, sym_line_comment, sym_block_comment, - ACTIONS(2226), 7, + ACTIONS(2122), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115812,7 +116163,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2228), 38, + ACTIONS(2124), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115851,70 +116202,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8400] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1131), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3565), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3563), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8460] = 5, + [8760] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1132), 2, + STATE(1137), 2, sym_line_comment, sym_block_comment, - ACTIONS(2206), 7, + ACTIONS(2126), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115922,7 +116218,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2208), 38, + ACTIONS(2128), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -115961,15 +116257,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8520] = 5, + [8820] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1133), 2, + STATE(1138), 2, sym_line_comment, sym_block_comment, - ACTIONS(2110), 7, + ACTIONS(2130), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -115977,7 +116273,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2112), 38, + ACTIONS(2132), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116016,15 +116312,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8580] = 5, + [8880] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1134), 2, + STATE(1139), 2, sym_line_comment, sym_block_comment, - ACTIONS(2142), 7, + ACTIONS(2134), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116032,7 +116328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2144), 38, + ACTIONS(2136), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116071,15 +116367,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8640] = 5, + [8940] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1135), 2, + STATE(1140), 2, sym_line_comment, sym_block_comment, - ACTIONS(2368), 7, + ACTIONS(2138), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116087,7 +116383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2370), 38, + ACTIONS(2140), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116126,180 +116422,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8700] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1136), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3569), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3567), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8760] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1137), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1432), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1430), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8820] = 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(3573), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3571), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [8880] = 5, + [9000] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1139), 2, + STATE(1141), 2, sym_line_comment, sym_block_comment, - ACTIONS(1996), 7, + ACTIONS(2142), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116307,7 +116438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1998), 38, + ACTIONS(2144), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116346,15 +116477,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [8940] = 5, + [9060] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1140), 2, + STATE(1142), 2, sym_line_comment, sym_block_comment, - ACTIONS(1972), 7, + ACTIONS(1894), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116362,7 +116493,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1974), 38, + ACTIONS(1896), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116401,15 +116532,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9000] = 5, + [9120] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1141), 2, + STATE(1143), 2, sym_line_comment, sym_block_comment, - ACTIONS(1924), 7, + ACTIONS(2150), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116417,7 +116548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1926), 38, + ACTIONS(2152), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116456,15 +116587,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9060] = 5, + [9180] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1142), 2, + STATE(1144), 2, sym_line_comment, sym_block_comment, - ACTIONS(1830), 7, + ACTIONS(2154), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116472,7 +116603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1832), 38, + ACTIONS(2156), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116511,15 +116642,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9120] = 5, + [9240] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1143), 2, + STATE(1145), 2, sym_line_comment, sym_block_comment, - ACTIONS(1822), 7, + ACTIONS(2158), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116527,7 +116658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1824), 38, + ACTIONS(2160), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116566,70 +116697,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9180] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1144), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3577), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3575), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9240] = 5, + [9300] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1145), 2, + STATE(1146), 2, sym_line_comment, sym_block_comment, - ACTIONS(1806), 7, + ACTIONS(2162), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116637,7 +116713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1808), 38, + ACTIONS(2164), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116676,15 +116752,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9300] = 5, + [9360] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1146), 2, + STATE(1147), 2, sym_line_comment, sym_block_comment, - ACTIONS(1782), 7, + ACTIONS(2166), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116692,7 +116768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1784), 38, + ACTIONS(2168), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116731,15 +116807,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9360] = 5, + [9420] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1147), 2, + STATE(1148), 2, sym_line_comment, sym_block_comment, - ACTIONS(1730), 7, + ACTIONS(2170), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116747,7 +116823,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1732), 38, + ACTIONS(2172), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116786,15 +116862,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9420] = 5, + [9480] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1148), 2, + STATE(1149), 2, sym_line_comment, sym_block_comment, - ACTIONS(1726), 7, + ACTIONS(2174), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116802,7 +116878,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1728), 38, + ACTIONS(2176), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116841,61 +116917,6 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9480] = 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(3581), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3579), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, [9540] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -116904,7 +116925,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1150), 2, sym_line_comment, sym_block_comment, - ACTIONS(1682), 7, + ACTIONS(2178), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -116912,7 +116933,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1684), 38, + ACTIONS(2180), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -116959,117 +116980,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1151), 2, sym_line_comment, sym_block_comment, - ACTIONS(1360), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1358), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9660] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1152), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1368), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1366), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [9720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1153), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2895), 7, + ACTIONS(2182), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117077,7 +116988,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2897), 38, + ACTIONS(2184), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117116,15 +117027,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9780] = 5, + [9660] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1154), 2, + STATE(1152), 2, sym_line_comment, sym_block_comment, - ACTIONS(2911), 7, + ACTIONS(2186), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117132,7 +117043,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2913), 38, + ACTIONS(2188), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117171,15 +117082,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9840] = 5, + [9720] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1155), 2, + STATE(1153), 2, sym_line_comment, sym_block_comment, - ACTIONS(1858), 7, + ACTIONS(2190), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117187,7 +117098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1860), 38, + ACTIONS(2192), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117226,15 +117137,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9900] = 5, + [9780] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1156), 2, + STATE(1154), 2, sym_line_comment, sym_block_comment, - ACTIONS(1742), 7, + ACTIONS(2194), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117242,7 +117153,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1744), 38, + ACTIONS(2196), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117281,15 +117192,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [9960] = 5, + [9840] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1157), 2, + STATE(1155), 2, sym_line_comment, sym_block_comment, - ACTIONS(1702), 7, + ACTIONS(2198), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117297,7 +117208,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1704), 38, + ACTIONS(2200), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117336,15 +117247,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10020] = 5, + [9900] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1158), 2, + STATE(1156), 2, sym_line_comment, sym_block_comment, - ACTIONS(1794), 7, + ACTIONS(2202), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117352,7 +117263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1796), 38, + ACTIONS(2204), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117391,15 +117302,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10080] = 5, + [9960] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1159), 2, + STATE(1157), 2, sym_line_comment, sym_block_comment, - ACTIONS(2338), 7, + ACTIONS(2206), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117407,7 +117318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2340), 38, + ACTIONS(2208), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117446,70 +117357,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10140] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1160), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(991), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(993), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10200] = 5, + [10020] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1161), 2, + STATE(1158), 2, sym_line_comment, sym_block_comment, - ACTIONS(2891), 7, + ACTIONS(2210), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117517,7 +117373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2893), 38, + ACTIONS(2212), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117556,15 +117412,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10260] = 5, + [10080] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1162), 2, + STATE(1159), 2, sym_line_comment, sym_block_comment, - ACTIONS(1678), 7, + ACTIONS(2214), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117572,7 +117428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1680), 38, + ACTIONS(2216), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117611,15 +117467,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10320] = 5, + [10140] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1163), 2, + STATE(1160), 2, sym_line_comment, sym_block_comment, - ACTIONS(1686), 7, + ACTIONS(2218), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -117627,7 +117483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1688), 38, + ACTIONS(2220), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -117666,675 +117522,290 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [10380] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1164), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3585), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3583), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10440] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1165), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3589), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3587), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10500] = 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(3593), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3591), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10560] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1167), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3597), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3595), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10620] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1168), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3601), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3599), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10680] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1169), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3285), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10740] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1170), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3605), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3603), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10800] = 5, + [10200] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1171), 2, + STATE(1161), 2, sym_line_comment, sym_block_comment, - ACTIONS(3609), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3607), 30, + ACTIONS(2222), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1172), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3613), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3611), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2224), 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, + [10260] = 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(2226), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10920] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2228), 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, + [10320] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1173), 2, + STATE(1163), 2, sym_line_comment, sym_block_comment, - ACTIONS(3617), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3615), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [10980] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + 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, + [10380] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1174), 2, + STATE(1164), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3619), 30, + ACTIONS(2234), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11040] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2236), 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, + [10440] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1175), 2, + STATE(1165), 2, sym_line_comment, sym_block_comment, - ACTIONS(3625), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3623), 30, + ACTIONS(2238), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11100] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2240), 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, + [10500] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1176), 2, + STATE(1166), 2, sym_line_comment, sym_block_comment, - ACTIONS(2803), 7, + ACTIONS(2242), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118342,7 +117813,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2805), 38, + ACTIONS(2244), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118381,15 +117852,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11160] = 5, + [10560] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1177), 2, + STATE(1167), 2, sym_line_comment, sym_block_comment, - ACTIONS(2791), 7, + ACTIONS(2250), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118397,7 +117868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2793), 38, + ACTIONS(2252), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118436,15 +117907,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11220] = 5, + [10620] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1178), 2, + STATE(1168), 2, sym_line_comment, sym_block_comment, - ACTIONS(1690), 7, + ACTIONS(2254), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118452,7 +117923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1692), 38, + ACTIONS(2256), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118491,15 +117962,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11280] = 5, + [10680] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1179), 2, + STATE(1169), 2, sym_line_comment, sym_block_comment, - ACTIONS(2646), 7, + ACTIONS(2258), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118507,7 +117978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2648), 38, + ACTIONS(2260), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118546,15 +118017,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11340] = 5, + [10740] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1180), 2, + STATE(1170), 2, sym_line_comment, sym_block_comment, - ACTIONS(2638), 7, + ACTIONS(2262), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118562,7 +118033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2640), 38, + ACTIONS(2264), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118601,15 +118072,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11400] = 5, + [10800] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1181), 2, + STATE(1171), 2, sym_line_comment, sym_block_comment, - ACTIONS(2354), 7, + ACTIONS(2266), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118617,7 +118088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2356), 38, + ACTIONS(2268), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118656,15 +118127,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11460] = 5, + [10860] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1182), 2, + STATE(1172), 2, sym_line_comment, sym_block_comment, - ACTIONS(2574), 7, + ACTIONS(2915), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118672,7 +118143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2576), 38, + ACTIONS(2917), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118711,70 +118182,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11520] = 5, + [10920] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1183), 2, + STATE(1173), 2, sym_line_comment, sym_block_comment, - ACTIONS(1250), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1248), 30, + ACTIONS(2274), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [11580] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2276), 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, + [10980] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1184), 2, + STATE(1174), 2, sym_line_comment, sym_block_comment, - ACTIONS(2506), 7, + ACTIONS(2278), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118782,7 +118253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2508), 38, + ACTIONS(2280), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118821,15 +118292,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11640] = 5, + [11040] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1185), 2, + STATE(1175), 2, sym_line_comment, sym_block_comment, - ACTIONS(2554), 7, + ACTIONS(2282), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118837,7 +118308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2556), 38, + ACTIONS(2284), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118876,15 +118347,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11700] = 5, + [11100] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1186), 2, + STATE(1176), 2, sym_line_comment, sym_block_comment, - ACTIONS(2396), 7, + ACTIONS(2286), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118892,7 +118363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2398), 38, + ACTIONS(2288), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118931,15 +118402,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11760] = 5, + [11160] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1187), 2, + STATE(1177), 2, sym_line_comment, sym_block_comment, - ACTIONS(2590), 7, + ACTIONS(2290), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -118947,7 +118418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2592), 38, + ACTIONS(2292), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -118986,15 +118457,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11820] = 5, + [11220] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1188), 2, + STATE(1178), 2, sym_line_comment, sym_block_comment, - ACTIONS(2654), 7, + ACTIONS(2294), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119002,7 +118473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2656), 38, + ACTIONS(2296), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119041,15 +118512,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11880] = 5, + [11280] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1189), 2, + STATE(1179), 2, sym_line_comment, sym_block_comment, - ACTIONS(2594), 7, + ACTIONS(2302), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119057,7 +118528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2596), 38, + ACTIONS(2304), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119096,15 +118567,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [11940] = 5, + [11340] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1190), 2, + STATE(1180), 2, sym_line_comment, sym_block_comment, - ACTIONS(2626), 7, + ACTIONS(2306), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119112,7 +118583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2628), 38, + ACTIONS(2308), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119151,15 +118622,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12000] = 5, + [11400] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1191), 2, + STATE(1181), 2, sym_line_comment, sym_block_comment, - ACTIONS(2642), 7, + ACTIONS(2310), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119167,7 +118638,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2644), 38, + ACTIONS(2312), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119206,15 +118677,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12060] = 5, + [11460] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1192), 2, + STATE(1182), 2, sym_line_comment, sym_block_comment, - ACTIONS(2759), 7, + ACTIONS(2314), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119222,7 +118693,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2761), 38, + ACTIONS(2316), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119261,15 +118732,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12120] = 5, + [11520] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1193), 2, + STATE(1183), 2, sym_line_comment, sym_block_comment, - ACTIONS(2392), 7, + ACTIONS(3545), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3543), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11580] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1184), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1906), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119277,7 +118803,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2394), 38, + ACTIONS(1908), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119316,15 +118842,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12180] = 5, + [11640] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1194), 2, + STATE(1185), 2, sym_line_comment, sym_block_comment, - ACTIONS(2811), 7, + ACTIONS(2098), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119332,7 +118858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2813), 38, + ACTIONS(2100), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119371,15 +118897,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12240] = 5, + [11700] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1195), 2, + STATE(1186), 2, sym_line_comment, sym_block_comment, - ACTIONS(2899), 7, + ACTIONS(3549), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3547), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11760] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1187), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1662), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119387,7 +118968,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2901), 38, + ACTIONS(1664), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119426,15 +119007,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12300] = 5, + [11820] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1196), 2, + STATE(1188), 2, sym_line_comment, sym_block_comment, - ACTIONS(2903), 7, + ACTIONS(2246), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119442,7 +119023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2905), 38, + ACTIONS(2248), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119481,15 +119062,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12360] = 5, + [11880] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1197), 2, + STATE(1189), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3553), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3551), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [11940] = 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(2432), 7, + ACTIONS(2298), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119497,7 +119133,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2434), 38, + ACTIONS(2300), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119536,15 +119172,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12420] = 5, + [12000] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1198), 2, + STATE(1191), 2, sym_line_comment, sym_block_comment, - ACTIONS(1666), 7, + ACTIONS(2318), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119552,7 +119188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1668), 38, + ACTIONS(2320), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119591,15 +119227,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12480] = 5, + [12060] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1199), 2, + STATE(1192), 2, sym_line_comment, sym_block_comment, - ACTIONS(2907), 7, + ACTIONS(1416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1418), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12120] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1193), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3557), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3555), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12180] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1194), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2322), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119607,7 +119353,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2909), 38, + ACTIONS(2324), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119646,15 +119392,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12540] = 5, + [12240] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1200), 2, + STATE(1195), 2, sym_line_comment, sym_block_comment, - ACTIONS(3629), 15, + ACTIONS(1452), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -119670,7 +119416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3627), 30, + ACTIONS(1450), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -119701,15 +119447,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [12600] = 5, + [12300] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1201), 2, + STATE(1196), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1322), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1320), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12360] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1197), 2, sym_line_comment, sym_block_comment, - ACTIONS(2428), 7, + ACTIONS(2326), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119717,7 +119518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2430), 38, + ACTIONS(2328), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119756,15 +119557,125 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12660] = 5, + [12420] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1202), 2, + STATE(1198), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(753), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(755), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12480] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1199), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3561), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3559), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12540] = 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(2408), 7, + ACTIONS(2380), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119772,7 +119683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2410), 38, + ACTIONS(2382), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119811,15 +119722,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12720] = 5, + [12600] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1203), 2, + STATE(1201), 2, sym_line_comment, sym_block_comment, - ACTIONS(2400), 7, + ACTIONS(2384), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119827,7 +119738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2402), 38, + ACTIONS(2386), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119866,15 +119777,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12780] = 5, + [12660] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1204), 2, + STATE(1202), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3565), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3563), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [12720] = 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(2350), 7, + ACTIONS(2388), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119882,7 +119848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2352), 38, + ACTIONS(2390), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119921,15 +119887,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [12840] = 5, + [12780] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1205), 2, + STATE(1204), 2, sym_line_comment, sym_block_comment, - ACTIONS(2342), 7, + ACTIONS(2392), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -119937,7 +119903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2344), 38, + ACTIONS(2394), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -119976,6 +119942,61 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, + [12840] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1205), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1208), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1206), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, [12900] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -119984,400 +120005,600 @@ static const uint16_t ts_small_parse_table[] = { STATE(1206), 2, sym_line_comment, sym_block_comment, - ACTIONS(2278), 7, + ACTIONS(1384), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1382), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2280), 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, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, [12960] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1207), 2, + STATE(1207), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3569), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3567), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13020] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1208), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3573), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3571), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13080] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1209), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3577), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3575), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13140] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1210), 2, sym_line_comment, sym_block_comment, - ACTIONS(2222), 7, + ACTIONS(3581), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3579), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2224), 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, - [13020] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13200] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1208), 2, + STATE(1211), 2, sym_line_comment, sym_block_comment, - ACTIONS(2118), 7, + ACTIONS(3585), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3583), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2120), 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, - [13080] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13260] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1209), 2, + STATE(1212), 2, sym_line_comment, sym_block_comment, - ACTIONS(2819), 7, + ACTIONS(3589), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3587), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2821), 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, - [13140] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13320] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1210), 2, + STATE(1213), 2, sym_line_comment, sym_block_comment, - ACTIONS(2114), 7, + ACTIONS(3593), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3591), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2116), 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, - [13200] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13380] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1211), 2, + STATE(1214), 2, sym_line_comment, sym_block_comment, - ACTIONS(1952), 7, + ACTIONS(1416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1418), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [13260] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13440] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1212), 2, + STATE(1215), 2, sym_line_comment, sym_block_comment, - ACTIONS(1948), 7, + ACTIONS(3396), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3392), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13500] = 21, + ACTIONS(29), 1, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [13320] = 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(1936), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, + ACTIONS(1614), 1, + anon_sym_DASH, + ACTIONS(1638), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + sym__raw_string_literal_start, + ACTIONS(3221), 1, + anon_sym_if, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(3599), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3603), 1, sym_metavariable, - ACTIONS(1938), 38, + STATE(2726), 1, + sym_scoped_identifier, + STATE(2895), 1, + sym__literal_pattern, + STATE(3465), 1, + sym_bracketed_type, + STATE(3478), 1, + sym_generic_type_with_turbofish, + ACTIONS(1640), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3219), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1216), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1636), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3601), 3, + sym_self, + sym_super, + sym_crate, + STATE(2299), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3597), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -120395,36 +120616,17 @@ 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_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, - [13380] = 5, + [13592] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1214), 2, + STATE(1217), 2, sym_line_comment, sym_block_comment, - ACTIONS(957), 15, + ACTIONS(3607), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120440,7 +120642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(959), 30, + ACTIONS(3605), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120471,70 +120673,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13440] = 5, + [13652] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1215), 2, + STATE(1218), 2, sym_line_comment, sym_block_comment, - ACTIONS(1774), 7, + ACTIONS(1422), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1420), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1776), 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, - [13500] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13712] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1216), 2, + STATE(1219), 2, sym_line_comment, sym_block_comment, - ACTIONS(1436), 15, + ACTIONS(3611), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120550,7 +120752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1434), 30, + ACTIONS(3609), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120581,180 +120783,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13560] = 5, + [13772] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1217), 2, + STATE(1220), 2, sym_line_comment, sym_block_comment, - ACTIONS(2134), 7, + ACTIONS(3615), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3613), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [13620] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13832] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1218), 2, + STATE(1221), 2, sym_line_comment, sym_block_comment, - ACTIONS(2154), 7, + ACTIONS(3619), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3617), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2156), 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, - [13680] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13892] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1219), 2, + STATE(1222), 2, sym_line_comment, sym_block_comment, - ACTIONS(2166), 7, + ACTIONS(3623), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3621), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2168), 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, - [13740] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [13952] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1220), 2, + STATE(1223), 2, sym_line_comment, sym_block_comment, - ACTIONS(3633), 15, + ACTIONS(3627), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120770,7 +120972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3631), 30, + ACTIONS(3625), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120801,125 +121003,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13800] = 5, + [14012] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1221), 2, + STATE(1224), 2, sym_line_comment, sym_block_comment, - ACTIONS(2254), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3627), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2256), 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, - [13860] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1222), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2274), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3625), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2276), 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, - [13920] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14072] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1223), 2, + STATE(1225), 2, sym_line_comment, sym_block_comment, - ACTIONS(3637), 15, + ACTIONS(3631), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120935,7 +121082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3635), 30, + ACTIONS(3629), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -120966,15 +121113,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [13980] = 5, + [14132] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1224), 2, + STATE(1226), 2, sym_line_comment, sym_block_comment, - ACTIONS(3641), 15, + ACTIONS(3635), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -120990,7 +121137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3639), 30, + ACTIONS(3633), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121021,15 +121168,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14040] = 5, + [14192] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1225), 2, + STATE(1227), 2, sym_line_comment, sym_block_comment, - ACTIONS(2622), 7, + ACTIONS(2400), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121037,7 +121184,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2624), 38, + ACTIONS(2402), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121076,23 +121223,84 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14100] = 5, + [14252] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1226), 2, + STATE(1228), 2, sym_line_comment, sym_block_comment, - ACTIONS(2618), 7, + ACTIONS(3639), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3637), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14312] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1229), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3643), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2620), 38, + ACTIONS(3641), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121113,33 +121321,82 @@ 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, - [14160] = 5, + [14372] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1227), 2, + STATE(1230), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3647), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3645), 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, + [14432] = 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(1428), 15, + ACTIONS(985), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121155,7 +121412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1426), 30, + ACTIONS(987), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121186,15 +121443,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14220] = 5, + [14492] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1228), 2, + STATE(1232), 2, sym_line_comment, sym_block_comment, - ACTIONS(2855), 7, + ACTIONS(2418), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121202,7 +121459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2857), 38, + ACTIONS(2420), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121241,15 +121498,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14280] = 5, + [14552] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1229), 2, + STATE(1233), 2, sym_line_comment, sym_block_comment, - ACTIONS(1770), 7, + ACTIONS(2422), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121257,7 +121514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1772), 38, + ACTIONS(2424), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121296,15 +121553,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14340] = 5, + [14612] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1230), 2, + STATE(1234), 2, sym_line_comment, sym_block_comment, - ACTIONS(2875), 7, + ACTIONS(2426), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121312,7 +121569,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2877), 38, + ACTIONS(2428), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121351,15 +121608,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14400] = 5, + [14672] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1231), 2, + STATE(1235), 2, sym_line_comment, sym_block_comment, - ACTIONS(2863), 7, + ACTIONS(2430), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121367,7 +121624,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2865), 38, + ACTIONS(2432), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121406,15 +121663,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14460] = 5, + [14732] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1232), 2, + STATE(1236), 2, sym_line_comment, sym_block_comment, - ACTIONS(2851), 7, + ACTIONS(2434), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121422,7 +121679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2853), 38, + ACTIONS(2436), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121461,70 +121718,182 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14520] = 5, + [14792] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1233), 2, + STATE(1237), 2, sym_line_comment, sym_block_comment, - ACTIONS(2847), 7, + ACTIONS(3651), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3649), 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_LT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14852] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3321), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2849), 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, - [14580] = 5, + ACTIONS(3653), 1, + anon_sym_BANG, + STATE(1238), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3317), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3315), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [14916] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1234), 2, + STATE(1239), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1388), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1386), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [14976] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1240), 2, sym_line_comment, sym_block_comment, - ACTIONS(2783), 7, + ACTIONS(2438), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121532,7 +121901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2785), 38, + ACTIONS(2440), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121571,15 +121940,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14640] = 5, + [15036] = 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(997), 15, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121595,7 +121964,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(999), 30, + ACTIONS(1418), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -121626,15 +121995,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [14700] = 5, + [15096] = 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(2614), 7, + ACTIONS(2442), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121642,7 +122011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2616), 38, + ACTIONS(2444), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121681,70 +122050,71 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14760] = 5, + [15156] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1237), 2, + ACTIONS(3659), 1, + anon_sym_RBRACE, + STATE(1243), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3657), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [14820] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3655), 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, + [15218] = 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(2602), 7, + ACTIONS(2410), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121752,7 +122122,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2604), 38, + ACTIONS(2412), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121791,15 +122161,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14880] = 5, + [15278] = 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(2242), 7, + ACTIONS(2446), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121807,7 +122177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2244), 38, + ACTIONS(2448), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121846,15 +122216,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [14940] = 5, + [15338] = 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(1698), 7, + ACTIONS(2450), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121862,7 +122232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1700), 38, + ACTIONS(2452), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121901,15 +122271,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15000] = 5, + [15398] = 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(2598), 7, + ACTIONS(2454), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -121917,7 +122287,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2600), 38, + ACTIONS(2456), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -121956,15 +122326,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15060] = 5, + [15458] = 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(3645), 15, + ACTIONS(1396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -121980,7 +122350,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3643), 30, + ACTIONS(1394), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122011,15 +122381,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15120] = 5, + [15518] = 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(3649), 15, + ACTIONS(3663), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122035,7 +122405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3647), 30, + ACTIONS(3661), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122066,15 +122436,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15180] = 5, + [15578] = 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(3649), 15, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122090,7 +122460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3647), 30, + ACTIONS(1418), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122121,29 +122491,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15240] = 5, + [15638] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1245), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + STATE(1251), 2, sym_line_comment, sym_block_comment, - ACTIONS(3653), 13, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, + ACTIONS(3669), 14, + anon_sym_PLUS, anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, + anon_sym_DOT_DOT, + ACTIONS(3665), 27, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_SQUOTE, + anon_sym_else, + [15706] = 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(2462), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, sym_metavariable, - ACTIONS(3651), 32, + ACTIONS(2464), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122164,82 +122587,143 @@ 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, - [15300] = 5, + [15766] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1246), 2, + STATE(1253), 2, sym_line_comment, sym_block_comment, - ACTIONS(817), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(2466), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(819), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2468), 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, + [15826] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1254), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2470), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15360] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2472), 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, + [15886] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1247), 2, + STATE(1255), 2, sym_line_comment, sym_block_comment, - ACTIONS(2542), 7, + ACTIONS(2474), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122247,7 +122731,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2544), 38, + ACTIONS(2476), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122286,15 +122770,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15420] = 5, + [15946] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1248), 2, + STATE(1256), 2, sym_line_comment, sym_block_comment, - ACTIONS(2538), 7, + ACTIONS(2478), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122302,7 +122786,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2540), 38, + ACTIONS(2480), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122341,15 +122825,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15480] = 5, + [16006] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1249), 2, + STATE(1257), 2, sym_line_comment, sym_block_comment, - ACTIONS(3657), 15, + ACTIONS(3679), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122365,7 +122849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3655), 30, + ACTIONS(3677), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122396,15 +122880,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15540] = 5, + [16066] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1250), 2, + STATE(1258), 2, sym_line_comment, sym_block_comment, - ACTIONS(2526), 7, + ACTIONS(2482), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122412,7 +122896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2528), 38, + ACTIONS(2484), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122451,15 +122935,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15600] = 5, + [16126] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1251), 2, + STATE(1259), 2, sym_line_comment, sym_block_comment, - ACTIONS(2835), 7, + ACTIONS(2486), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122467,7 +122951,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2837), 38, + ACTIONS(2488), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122506,78 +122990,29 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [15660] = 5, + [16186] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1252), 2, + STATE(1260), 2, sym_line_comment, sym_block_comment, - ACTIONS(3661), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3659), 30, + ACTIONS(3683), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15720] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1253), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1710), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(1712), 38, + ACTIONS(3681), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122598,88 +123033,82 @@ 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, - [15780] = 5, + [16246] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1254), 2, + STATE(1261), 2, sym_line_comment, sym_block_comment, - ACTIONS(3665), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3663), 30, + ACTIONS(3687), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15840] = 5, + sym_metavariable, + ACTIONS(3685), 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, + [16306] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1255), 2, + STATE(1262), 2, sym_line_comment, sym_block_comment, - ACTIONS(3669), 15, + ACTIONS(3691), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122695,7 +123124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 30, + ACTIONS(3689), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122726,70 +123155,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [15900] = 5, + [16366] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1256), 2, + STATE(1263), 2, sym_line_comment, sym_block_comment, - ACTIONS(3673), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3671), 30, + ACTIONS(2490), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [15960] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2492), 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, + [16426] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1257), 2, + STATE(1264), 2, sym_line_comment, sym_block_comment, - ACTIONS(3677), 15, + ACTIONS(3695), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -122805,7 +123234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3675), 30, + ACTIONS(3693), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -122836,15 +123265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16020] = 5, + [16486] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1258), 2, + STATE(1265), 2, sym_line_comment, sym_block_comment, - ACTIONS(2522), 7, + ACTIONS(2494), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122852,7 +123281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2524), 38, + ACTIONS(2496), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122891,15 +123320,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16080] = 5, + [16546] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1259), 2, + STATE(1266), 2, sym_line_comment, sym_block_comment, - ACTIONS(2514), 7, + ACTIONS(2498), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122907,7 +123336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2516), 38, + ACTIONS(2500), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -122946,15 +123375,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16140] = 5, + [16606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1260), 2, + STATE(1267), 2, sym_line_comment, sym_block_comment, - ACTIONS(2510), 7, + ACTIONS(2502), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -122962,7 +123391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2512), 38, + ACTIONS(2504), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123001,15 +123430,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16200] = 5, + [16666] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1261), 2, + STATE(1268), 2, sym_line_comment, sym_block_comment, - ACTIONS(2484), 7, + ACTIONS(2506), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123017,7 +123446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2486), 38, + ACTIONS(2508), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123056,15 +123485,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16260] = 5, + [16726] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1262), 2, + STATE(1269), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1376), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1374), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [16786] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1270), 2, sym_line_comment, sym_block_comment, - ACTIONS(2480), 7, + ACTIONS(2514), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123072,7 +123556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2482), 38, + ACTIONS(2516), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123111,15 +123595,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16320] = 5, + [16846] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1263), 2, + STATE(1271), 2, sym_line_comment, sym_block_comment, - ACTIONS(2476), 7, + ACTIONS(2518), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123127,7 +123611,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2478), 38, + ACTIONS(2520), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123166,23 +123650,194 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16380] = 5, + [16906] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1264), 2, + STATE(1272), 2, sym_line_comment, sym_block_comment, - ACTIONS(2440), 7, + ACTIONS(3699), 13, anon_sym_SEMI, - anon_sym_macro_rules_BANG, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3697), 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, + [16966] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1273), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3703), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3701), 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, + [17026] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1274), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3707), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3705), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [17086] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1275), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3711), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2442), 38, + ACTIONS(3709), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123203,33 +123858,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, - [16440] = 5, + [17146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1265), 2, + STATE(1276), 2, sym_line_comment, sym_block_comment, - ACTIONS(2436), 7, + ACTIONS(2522), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123237,7 +123886,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2438), 38, + ACTIONS(2524), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123276,29 +123925,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16500] = 5, + [17206] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1266), 2, + STATE(1277), 2, sym_line_comment, sym_block_comment, - ACTIONS(3681), 13, + ACTIONS(2528), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3679), 32, + ACTIONS(2530), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123319,27 +123962,33 @@ 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, - [16560] = 5, + [17266] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1267), 2, + STATE(1278), 2, sym_line_comment, sym_block_comment, - ACTIONS(1372), 15, + ACTIONS(3715), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123355,7 +124004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1370), 30, + ACTIONS(3713), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123386,15 +124035,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [16620] = 5, + [17326] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1268), 2, + STATE(1279), 2, sym_line_comment, sym_block_comment, - ACTIONS(1960), 7, + ACTIONS(2615), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123402,7 +124051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1962), 38, + ACTIONS(2617), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123441,15 +124090,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16680] = 5, + [17386] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1269), 2, + STATE(1280), 2, sym_line_comment, sym_block_comment, - ACTIONS(2310), 7, + ACTIONS(2619), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123457,7 +124106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2312), 38, + ACTIONS(2621), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123496,29 +124145,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16740] = 5, + [17446] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1270), 2, + STATE(1281), 2, sym_line_comment, sym_block_comment, - ACTIONS(3685), 13, + ACTIONS(2623), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3683), 32, + ACTIONS(2625), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123539,27 +124182,33 @@ 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, - [16800] = 5, + [17506] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1271), 2, + STATE(1282), 2, sym_line_comment, sym_block_comment, - ACTIONS(2306), 7, + ACTIONS(2627), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123567,7 +124216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2308), 38, + ACTIONS(2629), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123606,15 +124255,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16860] = 5, + [17566] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1272), 2, + STATE(1283), 2, sym_line_comment, sym_block_comment, - ACTIONS(2302), 7, + ACTIONS(2631), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123622,7 +124271,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2304), 38, + ACTIONS(2633), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123661,15 +124310,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16920] = 5, + [17626] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1273), 2, + STATE(1284), 2, sym_line_comment, sym_block_comment, - ACTIONS(2298), 7, + ACTIONS(2637), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123677,7 +124326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2300), 38, + ACTIONS(2639), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123716,15 +124365,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [16980] = 5, + [17686] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1274), 2, + STATE(1285), 2, sym_line_comment, sym_block_comment, - ACTIONS(2294), 7, + ACTIONS(2641), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123732,7 +124381,182 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2296), 38, + ACTIONS(2643), 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, + [17746] = 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(3719), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3717), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [17806] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1287), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1426), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1424), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [17866] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3725), 1, + anon_sym_RBRACE, + STATE(1288), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3723), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT, + anon_sym_DOT_DOT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3721), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123750,36 +124574,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, - [17040] = 5, + [17928] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1275), 2, + STATE(1289), 2, sym_line_comment, sym_block_comment, - ACTIONS(2238), 7, + ACTIONS(2645), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123787,7 +124602,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2240), 38, + ACTIONS(2647), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123826,15 +124641,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17100] = 5, + [17988] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1276), 2, + STATE(1290), 2, sym_line_comment, sym_block_comment, - ACTIONS(1838), 7, + ACTIONS(2653), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -123842,7 +124657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1840), 38, + ACTIONS(2655), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -123881,15 +124696,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17160] = 5, + [18048] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1277), 2, + STATE(1291), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3729), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -123905,7 +124720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 30, + ACTIONS(3727), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -123936,70 +124751,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [17220] = 5, + [18108] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1278), 2, + STATE(1292), 2, sym_line_comment, sym_block_comment, - ACTIONS(2234), 7, + ACTIONS(3733), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3731), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2236), 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, - [17280] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18168] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1279), 2, + STATE(1293), 2, sym_line_comment, sym_block_comment, - ACTIONS(1234), 15, + ACTIONS(3289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124015,7 +124830,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1232), 30, + ACTIONS(3287), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124046,236 +124861,400 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [17340] = 5, + [18228] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1280), 2, + STATE(1294), 2, sym_line_comment, sym_block_comment, - ACTIONS(2202), 7, + ACTIONS(3737), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3735), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2204), 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, - [17400] = 6, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18288] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3691), 1, + STATE(1295), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3741), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3739), 30, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - STATE(1281), 2, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18348] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1296), 2, sym_line_comment, sym_block_comment, - ACTIONS(3689), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3285), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18408] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1297), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3305), 15, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3687), 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, - [17462] = 5, + ACTIONS(3303), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18468] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1282), 2, + STATE(1298), 2, sym_line_comment, sym_block_comment, - ACTIONS(2170), 7, + ACTIONS(3745), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3743), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18528] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1299), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3749), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2172), 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, - [17522] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3747), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18588] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1283), 2, + STATE(1300), 2, sym_line_comment, sym_block_comment, - ACTIONS(1718), 7, + ACTIONS(3753), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3751), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1720), 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, - [17582] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18648] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1284), 2, + STATE(1301), 2, sym_line_comment, sym_block_comment, - ACTIONS(1964), 7, + ACTIONS(2406), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124283,7 +125262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1966), 38, + ACTIONS(2408), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124322,23 +125301,113 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17642] = 5, + [18708] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1285), 2, + STATE(1302), 2, sym_line_comment, sym_block_comment, - ACTIONS(1842), 7, + ACTIONS(1242), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1240), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18768] = 21, + ACTIONS(29), 1, anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1614), 1, + anon_sym_DASH, + ACTIONS(1638), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + sym__raw_string_literal_start, + ACTIONS(3233), 1, + anon_sym_if, + ACTIONS(3599), 1, anon_sym_COLON_COLON, - anon_sym_POUND, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3761), 1, sym_metavariable, - ACTIONS(1844), 38, + STATE(2696), 1, + sym_scoped_identifier, + STATE(2971), 1, + sym__literal_pattern, + STATE(3465), 1, + sym_bracketed_type, + STATE(3478), 1, + sym_generic_type_with_turbofish, + ACTIONS(1640), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(3231), 2, + anon_sym_EQ_GT, + anon_sym_PIPE, + STATE(1303), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1636), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3759), 3, + sym_self, + sym_super, + sym_crate, + STATE(2299), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3757), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124356,146 +125425,127 @@ 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_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, - [17702] = 5, + [18860] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1286), 2, + STATE(1304), 2, sym_line_comment, sym_block_comment, - ACTIONS(1722), 7, + ACTIONS(3765), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3763), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1724), 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, - [17762] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18920] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1287), 2, + STATE(1305), 2, sym_line_comment, sym_block_comment, - ACTIONS(2388), 7, + ACTIONS(3769), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3767), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2390), 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, - [17822] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [18980] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1288), 2, + STATE(1306), 2, sym_line_comment, sym_block_comment, - ACTIONS(1846), 7, + ACTIONS(2657), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124503,7 +125553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1848), 38, + ACTIONS(2659), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124542,15 +125592,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17882] = 5, + [19040] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1289), 2, + STATE(1307), 2, sym_line_comment, sym_block_comment, - ACTIONS(1850), 7, + ACTIONS(2661), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124558,7 +125608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1852), 38, + ACTIONS(2663), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124597,70 +125647,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [17942] = 5, + [19100] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1290), 2, + STATE(1308), 2, sym_line_comment, sym_block_comment, - ACTIONS(1834), 7, + ACTIONS(3773), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3771), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1836), 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, - [18002] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19160] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1291), 2, + STATE(1309), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(3777), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124676,7 +125726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3693), 30, + ACTIONS(3775), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124707,15 +125757,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18062] = 5, + [19220] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1292), 2, + STATE(1310), 2, sym_line_comment, sym_block_comment, - ACTIONS(1330), 15, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124731,7 +125781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1328), 30, + ACTIONS(1418), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124762,15 +125812,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18122] = 5, + [19280] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1293), 2, + STATE(1311), 2, sym_line_comment, sym_block_comment, - ACTIONS(1376), 15, + ACTIONS(989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -124786,7 +125836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1374), 30, + ACTIONS(991), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -124817,15 +125867,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18182] = 5, + [19340] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1294), 2, + STATE(1312), 2, sym_line_comment, sym_block_comment, - ACTIONS(1738), 7, + ACTIONS(2665), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124833,7 +125883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1740), 38, + ACTIONS(2667), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -124872,125 +125922,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18242] = 5, + [19400] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1295), 2, + STATE(1313), 2, sym_line_comment, sym_block_comment, - ACTIONS(1758), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(767), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1760), 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, - [18302] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1296), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1694), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(769), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1696), 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, - [18362] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19460] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1297), 2, + STATE(1314), 2, sym_line_comment, sym_block_comment, - ACTIONS(1674), 7, + ACTIONS(2669), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -124998,7 +125993,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1676), 38, + ACTIONS(2671), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125037,15 +126032,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18422] = 5, + [19520] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1298), 2, + STATE(1315), 2, sym_line_comment, sym_block_comment, - ACTIONS(2262), 7, + ACTIONS(2673), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125053,7 +126048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2264), 38, + ACTIONS(2675), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125092,15 +126087,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18482] = 5, + [19580] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1299), 2, + STATE(1316), 2, sym_line_comment, sym_block_comment, - ACTIONS(2182), 7, + ACTIONS(2677), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125108,7 +126103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2184), 38, + ACTIONS(2679), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125147,15 +126142,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18542] = 5, + [19640] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1300), 2, + STATE(1317), 2, sym_line_comment, sym_block_comment, - ACTIONS(2839), 7, + ACTIONS(2681), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125163,7 +126158,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2841), 38, + ACTIONS(2683), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125202,15 +126197,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18602] = 5, + [19700] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1301), 2, + STATE(1318), 2, sym_line_comment, sym_block_comment, - ACTIONS(1814), 7, + ACTIONS(2685), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125218,7 +126213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1816), 38, + ACTIONS(2687), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125257,70 +126252,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [18662] = 5, + [19760] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1302), 2, + STATE(1319), 2, sym_line_comment, sym_block_comment, - ACTIONS(1798), 7, + ACTIONS(1352), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1350), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1800), 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, - [18722] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19820] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1303), 2, + STATE(1320), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 15, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125336,7 +126331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1410), 30, + ACTIONS(3779), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125367,180 +126362,183 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [18782] = 5, + [19880] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1304), 2, + STATE(1321), 2, sym_line_comment, sym_block_comment, - ACTIONS(1826), 7, + ACTIONS(1356), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1354), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [18842] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [19940] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1305), 2, + STATE(1322), 2, sym_line_comment, sym_block_comment, - ACTIONS(1790), 7, + ACTIONS(3785), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3783), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1792), 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, - [18902] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20000] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1306), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + STATE(1323), 2, sym_line_comment, sym_block_comment, - ACTIONS(1786), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(1788), 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, - [18962] = 5, + ACTIONS(3789), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3787), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20066] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1307), 2, + STATE(1324), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3793), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125556,7 +126554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 30, + ACTIONS(3791), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125587,125 +126585,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19022] = 5, + [20126] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1308), 2, + STATE(1325), 2, sym_line_comment, sym_block_comment, - ACTIONS(2230), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3797), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [19082] = 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(1714), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3795), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [19142] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [20186] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1310), 2, + STATE(1326), 2, sym_line_comment, sym_block_comment, - ACTIONS(1750), 7, + ACTIONS(2689), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125713,7 +126656,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1752), 38, + ACTIONS(2691), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125752,70 +126695,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19202] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1311), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1416), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1414), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19262] = 5, + [20246] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1312), 2, + STATE(1327), 2, sym_line_comment, sym_block_comment, - ACTIONS(1448), 15, + ACTIONS(3801), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -125831,7 +126719,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1446), 30, + ACTIONS(3799), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -125862,15 +126750,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19322] = 5, + [20306] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1313), 2, + STATE(1328), 2, sym_line_comment, sym_block_comment, - ACTIONS(2218), 7, + ACTIONS(2693), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125878,7 +126766,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2220), 38, + ACTIONS(2695), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125917,29 +126805,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19382] = 5, + [20366] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1314), 2, + STATE(1329), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 13, + ACTIONS(2697), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3697), 32, + ACTIONS(2699), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -125960,27 +126842,33 @@ 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, - [19442] = 5, + [20426] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1315), 2, + STATE(1330), 2, sym_line_comment, sym_block_comment, - ACTIONS(1754), 7, + ACTIONS(2701), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -125988,7 +126876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1756), 38, + ACTIONS(2703), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126027,29 +126915,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19502] = 5, + [20486] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1316), 2, + STATE(1331), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 13, + ACTIONS(2705), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3701), 32, + ACTIONS(2707), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126070,27 +126952,33 @@ 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, - [19562] = 5, + [20546] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1317), 2, + STATE(1332), 2, sym_line_comment, sym_block_comment, - ACTIONS(1670), 7, + ACTIONS(2709), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126098,7 +126986,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1672), 38, + ACTIONS(2711), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126137,125 +127025,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19622] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1318), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3289), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3287), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19682] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1319), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3455), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3451), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19742] = 5, + [20606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1320), 2, + STATE(1333), 2, sym_line_comment, sym_block_comment, - ACTIONS(1854), 7, + ACTIONS(2713), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126263,7 +127041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1856), 38, + ACTIONS(2715), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126302,29 +127080,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [19802] = 5, + [20666] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1321), 2, + STATE(1334), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 13, + ACTIONS(2717), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3705), 32, + ACTIONS(2719), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126345,82 +127117,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, - [19862] = 5, + [20726] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1322), 2, + STATE(1335), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 30, + ACTIONS(2721), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [19922] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2723), 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, + [20786] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1323), 2, + STATE(1336), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 15, + ACTIONS(1364), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -126436,7 +127214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3709), 30, + ACTIONS(1362), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -126467,15 +127245,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [19982] = 5, + [20846] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1324), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + STATE(1337), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, + ACTIONS(3805), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -126489,17 +127273,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3713), 30, + ACTIONS(3803), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -126522,84 +127303,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [20042] = 5, + [20912] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1325), 2, + STATE(1338), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3717), 30, + ACTIONS(2791), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [20102] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2793), 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, + [20972] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1326), 2, + STATE(1339), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 13, + ACTIONS(2799), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3721), 32, + ACTIONS(2801), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126620,27 +127395,33 @@ 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, - [20162] = 5, + [21032] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1327), 2, + STATE(1340), 2, sym_line_comment, sym_block_comment, - ACTIONS(1746), 7, + ACTIONS(2803), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126648,7 +127429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1748), 38, + ACTIONS(2805), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126687,58 +127468,78 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20222] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [21092] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3221), 1, - anon_sym_if, - ACTIONS(3725), 1, - sym_identifier, - ACTIONS(3729), 1, - anon_sym_COLON_COLON, - ACTIONS(3733), 1, - sym_metavariable, - STATE(2665), 1, - sym_scoped_identifier, - STATE(2761), 1, - sym__literal_pattern, - STATE(3470), 1, - sym_bracketed_type, - STATE(3483), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3219), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1328), 2, + STATE(1341), 2, sym_line_comment, sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3731), 3, + ACTIONS(2807), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2809), 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, - STATE(2309), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3727), 19, + [21152] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1342), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2811), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2813), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126756,17 +127557,36 @@ 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_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, - [20314] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21212] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1329), 2, + STATE(1343), 2, sym_line_comment, sym_block_comment, - ACTIONS(2214), 7, + ACTIONS(2815), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126774,7 +127594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2216), 38, + ACTIONS(2817), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126813,15 +127633,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20374] = 5, + [21272] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1330), 2, + STATE(1344), 2, sym_line_comment, sym_block_comment, - ACTIONS(2210), 7, + ACTIONS(2819), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126829,7 +127649,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2212), 38, + ACTIONS(2821), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126868,15 +127688,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20434] = 5, + [21332] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1331), 2, + STATE(1345), 2, sym_line_comment, sym_block_comment, - ACTIONS(1928), 7, + ACTIONS(2823), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126884,7 +127704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1930), 38, + ACTIONS(2825), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126923,15 +127743,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20494] = 5, + [21392] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1332), 2, + STATE(1346), 2, sym_line_comment, sym_block_comment, - ACTIONS(2186), 7, + ACTIONS(2827), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126939,7 +127759,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2188), 38, + ACTIONS(2829), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -126978,15 +127798,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20554] = 5, + [21452] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1333), 2, + STATE(1347), 2, sym_line_comment, sym_block_comment, - ACTIONS(2178), 7, + ACTIONS(2831), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -126994,7 +127814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2180), 38, + ACTIONS(2833), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127033,15 +127853,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20614] = 5, + [21512] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1334), 2, + STATE(1348), 2, sym_line_comment, sym_block_comment, - ACTIONS(2282), 7, + ACTIONS(2835), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127049,7 +127869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2284), 38, + ACTIONS(2837), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127088,15 +127908,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20674] = 5, + [21572] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1335), 2, + STATE(1349), 2, sym_line_comment, sym_block_comment, - ACTIONS(1762), 7, + ACTIONS(2839), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127104,7 +127924,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1764), 38, + ACTIONS(2841), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127143,15 +127963,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20734] = 5, + [21632] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1336), 2, + STATE(1350), 2, sym_line_comment, sym_block_comment, - ACTIONS(2286), 7, + ACTIONS(2843), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127159,7 +127979,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2288), 38, + ACTIONS(2845), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127198,58 +128018,191 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20794] = 21, - ACTIONS(29), 1, - anon_sym_LT, + [21692] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3233), 1, - anon_sym_if, - ACTIONS(3729), 1, + STATE(1351), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2847), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, anon_sym_COLON_COLON, - ACTIONS(3735), 1, - sym_identifier, - ACTIONS(3741), 1, + anon_sym_POUND, sym_metavariable, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2774), 1, - sym__literal_pattern, - STATE(3470), 1, - sym_bracketed_type, - STATE(3483), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(3231), 2, - anon_sym_EQ_GT, - anon_sym_PIPE, - STATE(1337), 2, + ACTIONS(2849), 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, + [21752] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1352), 2, sym_line_comment, sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3739), 3, + ACTIONS(2851), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2853), 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, - STATE(2309), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3737), 19, + [21812] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + STATE(1353), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3809), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3807), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [21878] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1354), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(2855), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2857), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127267,17 +128220,36 @@ 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_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, - [20886] = 5, + anon_sym_unsafe, + anon_sym_use, + anon_sym_extern, + sym_identifier, + sym_self, + sym_super, + sym_crate, + [21938] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1338), 2, + STATE(1355), 2, sym_line_comment, sym_block_comment, - ACTIONS(2174), 7, + ACTIONS(2859), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127285,7 +128257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2176), 38, + ACTIONS(2861), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127324,15 +128296,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [20946] = 5, + [21998] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1339), 2, + STATE(1356), 2, sym_line_comment, sym_block_comment, - ACTIONS(2380), 7, + ACTIONS(2863), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127340,7 +128312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2382), 38, + ACTIONS(2865), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127379,15 +128351,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21006] = 5, + [22058] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1340), 2, + STATE(1357), 2, sym_line_comment, sym_block_comment, - ACTIONS(2424), 7, + ACTIONS(2867), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127395,7 +128367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2426), 38, + ACTIONS(2869), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127434,15 +128406,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21066] = 5, + [22118] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1341), 2, + STATE(1358), 2, sym_line_comment, sym_block_comment, - ACTIONS(2162), 7, + ACTIONS(2871), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127450,7 +128422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2164), 38, + ACTIONS(2873), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127489,15 +128461,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21126] = 5, + [22178] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1342), 2, + STATE(1359), 2, sym_line_comment, sym_block_comment, - ACTIONS(1766), 7, + ACTIONS(2875), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127505,7 +128477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1768), 38, + ACTIONS(2877), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127544,15 +128516,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21186] = 5, + [22238] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1343), 2, + STATE(1360), 2, sym_line_comment, sym_block_comment, - ACTIONS(2887), 7, + ACTIONS(2879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127560,7 +128532,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2889), 38, + ACTIONS(2881), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127599,67 +128571,12 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21246] = 5, + [22298] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1344), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1208), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1206), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21306] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1345), 2, + STATE(1361), 2, sym_line_comment, sym_block_comment, ACTIONS(2883), 7, @@ -127709,29 +128626,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21366] = 5, + [22358] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1346), 2, + STATE(1362), 2, sym_line_comment, sym_block_comment, - ACTIONS(3745), 13, + ACTIONS(2887), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3743), 32, + ACTIONS(2889), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127752,82 +128663,33 @@ 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, - [21426] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1347), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3749), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3747), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21486] = 5, + [22418] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1348), 2, + STATE(1363), 2, sym_line_comment, sym_block_comment, - ACTIONS(2859), 7, + ACTIONS(2891), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -127835,7 +128697,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2861), 38, + ACTIONS(2893), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -127874,237 +128736,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21546] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_COLON_COLON, - ACTIONS(3751), 1, - anon_sym_BANG, - STATE(1349), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3321), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3319), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [21610] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1350), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21670] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1351), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3755), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3753), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21730] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1352), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3759), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3757), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21790] = 5, + [22478] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1353), 2, + STATE(1364), 2, sym_line_comment, sym_block_comment, - ACTIONS(2831), 7, + ACTIONS(2895), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128112,7 +128752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2833), 38, + ACTIONS(2897), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128151,81 +128791,139 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [21850] = 8, + [22538] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - STATE(1354), 2, + STATE(1365), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 14, - anon_sym_PLUS, + ACTIONS(3813), 13, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3761), 28, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3811), 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, + [22598] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1366), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3817), 13, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_RBRACE, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_EQ, + anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [21916] = 5, + sym_metavariable, + ACTIONS(3815), 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, + [22658] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1355), 2, + STATE(1367), 2, sym_line_comment, sym_block_comment, - ACTIONS(2815), 7, + ACTIONS(3821), 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_BANG, + anon_sym_AMP, + anon_sym_EQ, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_POUND, + anon_sym_SQUOTE, sym_metavariable, - ACTIONS(2817), 38, + ACTIONS(3819), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128246,33 +128944,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, - [21976] = 5, + [22718] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1356), 2, + STATE(1368), 2, sym_line_comment, sym_block_comment, - ACTIONS(2787), 7, + ACTIONS(2899), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128280,7 +128972,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2789), 38, + ACTIONS(2901), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128319,21 +129011,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22036] = 8, + [22778] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - STATE(1357), 2, + STATE(1369), 2, sym_line_comment, sym_block_comment, - ACTIONS(3773), 14, + ACTIONS(3825), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -128347,14 +129033,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3771), 28, + ACTIONS(3823), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -128377,15 +129066,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22102] = 5, + [22838] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1358), 2, + STATE(1370), 2, sym_line_comment, sym_block_comment, - ACTIONS(2775), 7, + ACTIONS(2903), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128393,7 +129082,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2777), 38, + ACTIONS(2905), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128432,15 +129121,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22162] = 5, + [22898] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1359), 2, + STATE(1371), 2, sym_line_comment, sym_block_comment, - ACTIONS(2741), 7, + ACTIONS(2907), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128448,7 +129137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2743), 38, + ACTIONS(2909), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128487,15 +129176,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22222] = 5, + [22958] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1360), 2, + STATE(1372), 2, sym_line_comment, sym_block_comment, - ACTIONS(2771), 7, + ACTIONS(2911), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128503,7 +129192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2773), 38, + ACTIONS(2913), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128542,15 +129231,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22282] = 5, + [23018] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1361), 2, + STATE(1373), 2, sym_line_comment, sym_block_comment, - ACTIONS(2747), 7, + ACTIONS(2270), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128558,7 +129247,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2749), 38, + ACTIONS(2272), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128597,15 +129286,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22342] = 5, + [23078] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1362), 2, + STATE(1374), 2, sym_line_comment, sym_block_comment, - ACTIONS(2767), 7, + ACTIONS(2649), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128613,7 +129302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2769), 38, + ACTIONS(2651), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128652,125 +129341,128 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22402] = 5, + [23138] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1363), 2, + STATE(1375), 2, sym_line_comment, sym_block_comment, - ACTIONS(2763), 7, + ACTIONS(1234), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1232), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - 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, - [22462] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23198] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1364), 2, + STATE(1376), 2, sym_line_comment, sym_block_comment, - ACTIONS(2755), 7, + ACTIONS(1380), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1378), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2757), 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, - [22522] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23258] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1365), 2, + ACTIONS(3827), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1377), 2, sym_line_comment, sym_block_comment, - ACTIONS(1364), 15, + ACTIONS(3545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -128786,13 +129478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1362), 30, + ACTIONS(3543), 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_AMP_AMP, @@ -128814,18 +129505,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22582] = 5, + [23320] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1366), 2, + STATE(1378), 2, sym_line_comment, sym_block_comment, - ACTIONS(2751), 7, + ACTIONS(1666), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128833,7 +129523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2753), 38, + ACTIONS(1668), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128872,15 +129562,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22642] = 5, + [23380] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1367), 2, + STATE(1379), 2, sym_line_comment, sym_block_comment, - ACTIONS(2650), 7, + ACTIONS(1670), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -128888,7 +129578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2652), 38, + ACTIONS(1672), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -128927,125 +129617,180 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [22702] = 5, + [23440] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1368), 2, + STATE(1380), 2, sym_line_comment, sym_block_comment, - ACTIONS(2630), 7, + ACTIONS(771), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(773), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2632), 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, - [22762] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23500] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1369), 2, + STATE(1381), 2, sym_line_comment, sym_block_comment, - ACTIONS(2610), 7, + ACTIONS(1372), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1370), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23560] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1382), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3831), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2612), 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, - [22822] = 5, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3829), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23620] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1370), 2, + STATE(1383), 2, sym_line_comment, sym_block_comment, - ACTIONS(1420), 15, + ACTIONS(3835), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129061,7 +129806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1418), 30, + ACTIONS(3833), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129092,70 +129837,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [22882] = 5, + [23680] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1371), 2, + STATE(1384), 2, sym_line_comment, sym_block_comment, - ACTIONS(2606), 7, + ACTIONS(3839), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3837), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2608), 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, - [22942] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23740] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1372), 2, + STATE(1385), 2, sym_line_comment, sym_block_comment, - ACTIONS(1398), 15, + ACTIONS(3843), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129171,7 +129916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1396), 30, + ACTIONS(3841), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129202,290 +129947,235 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23002] = 5, + [23800] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1373), 2, + STATE(1386), 2, sym_line_comment, sym_block_comment, - ACTIONS(2586), 7, - anon_sym_SEMI, - anon_sym_macro_rules_BANG, - anon_sym_RBRACE, + ACTIONS(3847), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2588), 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, - [23062] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1374), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2582), 7, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3845), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2584), 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, - [23122] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23860] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1375), 2, + STATE(1387), 2, sym_line_comment, sym_block_comment, - ACTIONS(2550), 7, + ACTIONS(1444), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1442), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2552), 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, - [23182] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23920] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1376), 2, + STATE(1388), 2, sym_line_comment, sym_block_comment, - ACTIONS(2546), 7, + ACTIONS(3851), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3849), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2548), 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, - [23242] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [23980] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1377), 2, + STATE(1389), 2, sym_line_comment, sym_block_comment, - ACTIONS(2518), 7, + ACTIONS(3855), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3853), 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_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_metavariable, - ACTIONS(2520), 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, - [23302] = 5, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [24040] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1378), 2, + STATE(1390), 2, sym_line_comment, sym_block_comment, - ACTIONS(2500), 7, + ACTIONS(1758), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129493,7 +130183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2502), 38, + ACTIONS(1760), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129532,15 +130222,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23362] = 5, + [24100] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1379), 2, + STATE(1391), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 15, + ACTIONS(3859), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129556,7 +130246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1450), 30, + ACTIONS(3857), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -129587,15 +130277,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23422] = 5, + [24160] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1380), 2, + STATE(1392), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 15, + ACTIONS(1674), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1676), 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, + [24220] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3247), 1, + anon_sym_BANG, + ACTIONS(3861), 1, + anon_sym_COLON_COLON, + STATE(1393), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -129611,13 +130360,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1442), 30, + ACTIONS(1418), 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_AMP_AMP, @@ -129639,32 +130387,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [23482] = 5, + [24284] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1381), 2, + STATE(1394), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 13, + ACTIONS(1678), 7, anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_EQ, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, anon_sym_COLON_COLON, - anon_sym_SQUOTE, + anon_sym_POUND, sym_metavariable, - ACTIONS(3775), 32, + ACTIONS(1680), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129685,27 +130426,33 @@ 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, - [23542] = 5, + [24344] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1382), 2, + STATE(1395), 2, sym_line_comment, sym_block_comment, - ACTIONS(2496), 7, + ACTIONS(1682), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129713,7 +130460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2498), 38, + ACTIONS(1684), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129752,71 +130499,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23602] = 6, + [24404] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3783), 1, - anon_sym_RBRACE, - STATE(1383), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3781), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, - anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, - sym_metavariable, - ACTIONS(3779), 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, - [23664] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1384), 2, + STATE(1396), 2, sym_line_comment, sym_block_comment, - ACTIONS(2492), 7, + ACTIONS(1686), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129824,7 +130515,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2494), 38, + ACTIONS(1688), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129863,15 +130554,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23724] = 5, + [24464] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1385), 2, + STATE(1397), 2, sym_line_comment, sym_block_comment, - ACTIONS(2472), 7, + ACTIONS(1690), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129879,7 +130570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2474), 38, + ACTIONS(1692), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129918,15 +130609,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23784] = 5, + [24524] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1386), 2, + STATE(1398), 2, sym_line_comment, sym_block_comment, - ACTIONS(1778), 7, + ACTIONS(1694), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -129934,7 +130625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1780), 38, + ACTIONS(1696), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -129973,70 +130664,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23844] = 5, + [24584] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1387), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3313), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3311), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [23904] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1388), 2, + STATE(1399), 2, sym_line_comment, sym_block_comment, - ACTIONS(2468), 7, + ACTIONS(1698), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130044,7 +130680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2470), 38, + ACTIONS(1700), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130083,70 +130719,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [23964] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1389), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3787), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3785), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24024] = 5, + [24644] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1390), 2, + STATE(1400), 2, sym_line_comment, sym_block_comment, - ACTIONS(2158), 7, + ACTIONS(1702), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130154,7 +130735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2160), 38, + ACTIONS(1704), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130193,15 +130774,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24084] = 5, + [24704] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1391), 2, + STATE(1401), 2, sym_line_comment, sym_block_comment, - ACTIONS(2460), 7, + ACTIONS(1706), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130209,7 +130790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2462), 38, + ACTIONS(1708), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130248,70 +130829,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24144] = 5, + [24764] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1392), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3791), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3789), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24204] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1393), 2, + STATE(1402), 2, sym_line_comment, sym_block_comment, - ACTIONS(2122), 7, + ACTIONS(1710), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130319,7 +130845,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2124), 38, + ACTIONS(1712), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130358,15 +130884,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24264] = 5, + [24824] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1394), 2, + STATE(1403), 2, sym_line_comment, sym_block_comment, - ACTIONS(2106), 7, + ACTIONS(1714), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130374,7 +130900,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2108), 38, + ACTIONS(1716), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130413,15 +130939,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24324] = 5, + [24884] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1395), 2, + STATE(1404), 2, sym_line_comment, sym_block_comment, - ACTIONS(1920), 7, + ACTIONS(1718), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130429,7 +130955,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1922), 38, + ACTIONS(1720), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130468,15 +130994,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24384] = 5, + [24944] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1396), 2, + STATE(1405), 2, sym_line_comment, sym_block_comment, - ACTIONS(2448), 7, + ACTIONS(1722), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130484,7 +131010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2450), 38, + ACTIONS(1724), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130523,15 +131049,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24444] = 5, + [25004] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1397), 2, + STATE(1406), 2, sym_line_comment, sym_block_comment, - ACTIONS(2102), 7, + ACTIONS(1726), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130539,7 +131065,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2104), 38, + ACTIONS(1728), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130578,125 +131104,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24504] = 5, + [25064] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1398), 2, + STATE(1407), 2, sym_line_comment, sym_block_comment, - ACTIONS(3795), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3793), 30, + ACTIONS(1730), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24564] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1399), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3799), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3797), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24624] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1732), 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, + [25124] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1400), 2, + STATE(1408), 2, sym_line_comment, sym_block_comment, - ACTIONS(2444), 7, + ACTIONS(1734), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130704,7 +131175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2446), 38, + ACTIONS(1736), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130743,15 +131214,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24684] = 5, + [25184] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1401), 2, + STATE(1409), 2, sym_line_comment, sym_block_comment, - ACTIONS(2098), 7, + ACTIONS(1738), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130759,7 +131230,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2100), 38, + ACTIONS(1740), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130798,15 +131269,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24744] = 5, + [25244] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1402), 2, + STATE(1410), 2, sym_line_comment, sym_block_comment, - ACTIONS(2094), 7, + ACTIONS(1742), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130814,7 +131285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2096), 38, + ACTIONS(1744), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130853,15 +131324,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24804] = 5, + [25304] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1403), 2, + STATE(1411), 2, sym_line_comment, sym_block_comment, - ACTIONS(2090), 7, + ACTIONS(1746), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130869,7 +131340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2092), 38, + ACTIONS(1748), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -130908,70 +131379,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24864] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1404), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1242), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1240), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [24924] = 5, + [25364] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1405), 2, + STATE(1412), 2, sym_line_comment, sym_block_comment, - ACTIONS(2404), 7, + ACTIONS(1750), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -130979,7 +131395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2406), 38, + ACTIONS(1752), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131018,15 +131434,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [24984] = 5, + [25424] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1413), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1392), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1390), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [25484] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1406), 2, + STATE(1414), 2, sym_line_comment, sym_block_comment, - ACTIONS(1810), 7, + ACTIONS(1754), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131034,7 +131505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1812), 38, + ACTIONS(1756), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131073,15 +131544,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25044] = 5, + [25544] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1407), 2, + STATE(1415), 2, sym_line_comment, sym_block_comment, - ACTIONS(1802), 7, + ACTIONS(1766), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131089,7 +131560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1804), 38, + ACTIONS(1768), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131128,15 +131599,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25104] = 5, + [25604] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1408), 2, + STATE(1416), 2, sym_line_comment, sym_block_comment, - ACTIONS(1818), 7, + ACTIONS(1770), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131144,7 +131615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1820), 38, + ACTIONS(1772), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131183,125 +131654,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25164] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1409), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3803), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3801), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25224] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1410), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(797), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(799), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25284] = 5, + [25664] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1411), 2, + STATE(1417), 2, sym_line_comment, sym_block_comment, - ACTIONS(1932), 7, + ACTIONS(1774), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131309,7 +131670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1934), 38, + ACTIONS(1776), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131348,70 +131709,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25344] = 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(3807), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3805), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25404] = 5, + [25724] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1413), 2, + STATE(1418), 2, sym_line_comment, sym_block_comment, - ACTIONS(3811), 15, + ACTIONS(1246), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131427,7 +131733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3809), 30, + ACTIONS(1244), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -131458,71 +131764,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25464] = 6, + [25784] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3813), 2, + ACTIONS(3863), 2, anon_sym_LBRACE, anon_sym_COLON_COLON, - STATE(1414), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3807), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3805), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [25526] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1415), 2, + STATE(1419), 2, sym_line_comment, sym_block_comment, - ACTIONS(3817), 15, + ACTIONS(3545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -131538,13 +131791,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3815), 30, + ACTIONS(3543), 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_AMP_AMP, @@ -131566,18 +131818,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [25586] = 5, + [25846] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1416), 2, + STATE(1420), 2, sym_line_comment, sym_block_comment, - ACTIONS(2384), 7, + ACTIONS(1778), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131585,7 +131836,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2386), 38, + ACTIONS(1780), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131624,70 +131875,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25646] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1417), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3821), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3819), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [25706] = 5, + [25906] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1418), 2, + STATE(1421), 2, sym_line_comment, sym_block_comment, - ACTIONS(2360), 7, + ACTIONS(1782), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131695,7 +131891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2362), 38, + ACTIONS(1784), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131734,15 +131930,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25766] = 5, + [25966] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1419), 2, + STATE(1422), 2, sym_line_comment, sym_block_comment, - ACTIONS(2376), 7, + ACTIONS(1786), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131750,7 +131946,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2378), 38, + ACTIONS(1788), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131789,15 +131985,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25826] = 5, + [26026] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1420), 2, + STATE(1423), 2, sym_line_comment, sym_block_comment, - ACTIONS(2372), 7, + ACTIONS(1790), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131805,7 +132001,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2374), 38, + ACTIONS(1792), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131844,15 +132040,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25886] = 5, + [26086] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1421), 2, + STATE(1424), 2, sym_line_comment, sym_block_comment, - ACTIONS(2086), 7, + ACTIONS(1794), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131860,7 +132056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2088), 38, + ACTIONS(1796), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -131899,70 +132095,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [25946] = 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(3825), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3823), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26006] = 5, + [26146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1423), 2, + STATE(1425), 2, sym_line_comment, sym_block_comment, - ACTIONS(1944), 7, + ACTIONS(1798), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -131970,7 +132111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1946), 38, + ACTIONS(1800), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132009,15 +132150,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26066] = 5, + [26206] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1424), 2, + STATE(1426), 2, sym_line_comment, sym_block_comment, - ACTIONS(2364), 7, + ACTIONS(1802), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132025,7 +132166,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2366), 38, + ACTIONS(1804), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132043,141 +132184,28 @@ 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_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, - [26126] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - STATE(1425), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3829), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3827), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26192] = 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(3833), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3831), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26252] = 5, + 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, + [26266] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -132185,7 +132213,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1427), 2, sym_line_comment, sym_block_comment, - ACTIONS(2330), 7, + ACTIONS(1806), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132193,7 +132221,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2332), 38, + ACTIONS(1808), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132232,7 +132260,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26312] = 5, + [26326] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -132240,7 +132268,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1428), 2, sym_line_comment, sym_block_comment, - ACTIONS(2318), 7, + ACTIONS(1810), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132248,7 +132276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2320), 38, + ACTIONS(1812), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132287,7 +132315,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26372] = 5, + [26386] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -132295,7 +132323,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1429), 2, sym_line_comment, sym_block_comment, - ACTIONS(2266), 7, + ACTIONS(1814), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132303,7 +132331,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2268), 38, + ACTIONS(1816), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132342,7 +132370,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26432] = 5, + [26446] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -132350,7 +132378,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1430), 2, sym_line_comment, sym_block_comment, - ACTIONS(2082), 7, + ACTIONS(1818), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132358,7 +132386,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2084), 38, + ACTIONS(1820), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132397,7 +132425,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26492] = 5, + [26506] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -132405,7 +132433,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1431), 2, sym_line_comment, sym_block_comment, - ACTIONS(1956), 7, + ACTIONS(1822), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132413,7 +132441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1958), 38, + ACTIONS(1824), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132452,7 +132480,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26552] = 5, + [26566] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -132460,7 +132488,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1432), 2, sym_line_comment, sym_block_comment, - ACTIONS(2250), 7, + ACTIONS(1826), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132468,7 +132496,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2252), 38, + ACTIONS(1828), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132507,7 +132535,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26612] = 5, + [26626] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -132515,54 +132543,54 @@ static const uint16_t ts_small_parse_table[] = { STATE(1433), 2, sym_line_comment, sym_block_comment, - ACTIONS(3837), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3835), 30, + ACTIONS(1830), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26672] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1832), 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, + [26686] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -132570,54 +132598,54 @@ static const uint16_t ts_small_parse_table[] = { STATE(1434), 2, sym_line_comment, sym_block_comment, - ACTIONS(3841), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3839), 30, + ACTIONS(1834), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26732] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1836), 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, + [26746] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -132625,7 +132653,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1435), 2, sym_line_comment, sym_block_comment, - ACTIONS(1968), 7, + ACTIONS(1838), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132633,7 +132661,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1970), 38, + ACTIONS(1840), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132672,7 +132700,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26792] = 5, + [26806] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -132680,118 +132708,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1436), 2, sym_line_comment, sym_block_comment, - ACTIONS(777), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(779), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [26852] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3843), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1437), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3807), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3805), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [26914] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1438), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(2246), 7, + ACTIONS(1842), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132799,7 +132716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2248), 38, + ACTIONS(1844), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -132838,129 +132755,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [26974] = 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(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27034] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - STATE(1440), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3847), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3845), 27, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_else, - [27102] = 5, + [26866] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1441), 2, + STATE(1437), 2, sym_line_comment, sym_block_comment, - ACTIONS(1976), 7, + ACTIONS(1846), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -132968,7 +132771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1978), 38, + ACTIONS(1848), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133007,15 +132810,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27162] = 5, + [26926] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1442), 2, + STATE(1438), 2, sym_line_comment, sym_block_comment, - ACTIONS(2198), 7, + ACTIONS(1850), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133023,7 +132826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2200), 38, + ACTIONS(1852), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133062,15 +132865,70 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27222] = 5, + [26986] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1443), 2, + STATE(1439), 2, sym_line_comment, sym_block_comment, - ACTIONS(2194), 7, + ACTIONS(3867), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3865), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [27046] = 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(1854), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133078,7 +132936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2196), 38, + ACTIONS(1856), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133117,15 +132975,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27282] = 5, + [27106] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1444), 2, + STATE(1441), 2, sym_line_comment, sym_block_comment, - ACTIONS(1980), 7, + ACTIONS(1858), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133133,7 +132991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1982), 38, + ACTIONS(1860), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133172,15 +133030,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27342] = 5, + [27166] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1445), 2, + STATE(1442), 2, sym_line_comment, sym_block_comment, - ACTIONS(2078), 7, + ACTIONS(1862), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133188,7 +133046,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2080), 38, + ACTIONS(1864), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133227,15 +133085,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27402] = 5, + [27226] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1446), 2, + STATE(1443), 2, sym_line_comment, sym_block_comment, - ACTIONS(2074), 7, + ACTIONS(1866), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133243,7 +133101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2076), 38, + ACTIONS(1868), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133282,15 +133140,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27462] = 5, + [27286] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1447), 2, + STATE(1444), 2, sym_line_comment, sym_block_comment, - ACTIONS(3853), 15, + ACTIONS(3871), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133306,7 +133164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3851), 30, + ACTIONS(3869), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133337,15 +133195,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27522] = 5, + [27346] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1448), 2, + STATE(1445), 2, sym_line_comment, sym_block_comment, - ACTIONS(2004), 7, + ACTIONS(1870), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133353,7 +133211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2006), 38, + ACTIONS(1872), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133392,15 +133250,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27582] = 5, + [27406] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1449), 2, + STATE(1446), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 15, + ACTIONS(1238), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133416,7 +133274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3855), 30, + ACTIONS(1236), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133447,70 +133305,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27642] = 5, + [27466] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1450), 2, + STATE(1447), 2, sym_line_comment, sym_block_comment, - ACTIONS(785), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, + ACTIONS(1886), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(787), 30, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1888), 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, + [27526] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1448), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1890), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [27702] = 5, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1892), 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, + [27586] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1451), 2, + STATE(1449), 2, sym_line_comment, sym_block_comment, - ACTIONS(3861), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133526,7 +133439,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3859), 30, + ACTIONS(3873), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133557,15 +133470,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27762] = 5, + [27646] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1452), 2, + STATE(1450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, + ACTIONS(1898), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1900), 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, + [27706] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1451), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3301), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133581,7 +133549,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3863), 30, + ACTIONS(3299), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133612,15 +133580,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [27822] = 5, + [27766] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1453), 2, + STATE(1452), 2, sym_line_comment, sym_block_comment, - ACTIONS(2190), 7, + ACTIONS(1902), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133628,7 +133596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2192), 38, + ACTIONS(1904), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133667,15 +133635,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27882] = 5, + [27826] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1454), 2, + STATE(1453), 2, sym_line_comment, sym_block_comment, - ACTIONS(2150), 7, + ACTIONS(1910), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133683,7 +133651,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2152), 38, + ACTIONS(1912), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133722,15 +133690,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [27942] = 5, + [27886] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1455), 2, + STATE(1454), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, + ACTIONS(1404), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -133746,7 +133714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3867), 30, + ACTIONS(1402), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -133777,7 +133745,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28002] = 5, + [27946] = 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(1914), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1916), 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, + [28006] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -133785,7 +133808,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1456), 2, sym_line_comment, sym_block_comment, - ACTIONS(3873), 7, + ACTIONS(3879), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133793,7 +133816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(3871), 38, + ACTIONS(3877), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133832,7 +133855,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28062] = 5, + [28066] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -133840,7 +133863,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1457), 2, sym_line_comment, sym_block_comment, - ACTIONS(1984), 7, + ACTIONS(1918), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133848,7 +133871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1986), 38, + ACTIONS(1920), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133887,7 +133910,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28122] = 5, + [28126] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -133895,7 +133918,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1458), 2, sym_line_comment, sym_block_comment, - ACTIONS(2146), 7, + ACTIONS(1922), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133903,7 +133926,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2148), 38, + ACTIONS(1924), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133942,7 +133965,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28182] = 5, + [28186] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -133950,7 +133973,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1459), 2, sym_line_comment, sym_block_comment, - ACTIONS(1988), 7, + ACTIONS(1926), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -133958,7 +133981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1990), 38, + ACTIONS(1928), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -133997,7 +134020,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28242] = 5, + [28246] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -134005,7 +134028,62 @@ static const uint16_t ts_small_parse_table[] = { STATE(1460), 2, sym_line_comment, sym_block_comment, - ACTIONS(2138), 7, + ACTIONS(3883), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3881), 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_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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_else, + [28306] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1461), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1930), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134013,7 +134091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2140), 38, + ACTIONS(1932), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134052,19 +134130,15 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28302] = 7, + [28366] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3875), 1, - anon_sym_COLON_COLON, - STATE(1461), 2, + STATE(1462), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(935), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134080,12 +134154,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 28, + ACTIONS(937), 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_AMP_AMP, @@ -134107,17 +134182,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28366] = 5, + [28426] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1462), 2, + STATE(1463), 2, sym_line_comment, sym_block_comment, - ACTIONS(1246), 15, + ACTIONS(967), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134133,7 +134209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1244), 30, + ACTIONS(969), 30, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -134164,15 +134240,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, anon_sym_as, anon_sym_else, - [28426] = 5, + [28486] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1463), 2, + STATE(1464), 2, sym_line_comment, sym_block_comment, - ACTIONS(1866), 7, + ACTIONS(1934), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134180,7 +134256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1868), 38, + ACTIONS(1936), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134219,61 +134295,6 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28486] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1464), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1326), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1324), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, [28546] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -134282,7 +134303,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1465), 2, sym_line_comment, sym_block_comment, - ACTIONS(1862), 7, + ACTIONS(1938), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134290,7 +134311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1864), 38, + ACTIONS(1940), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134337,7 +134358,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1466), 2, sym_line_comment, sym_block_comment, - ACTIONS(2126), 7, + ACTIONS(1942), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134345,7 +134366,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2128), 38, + ACTIONS(1944), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134392,7 +134413,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1467), 2, sym_line_comment, sym_block_comment, - ACTIONS(2000), 7, + ACTIONS(1946), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134400,7 +134421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(2002), 38, + ACTIONS(1948), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134447,7 +134468,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1468), 2, sym_line_comment, sym_block_comment, - ACTIONS(1992), 7, + ACTIONS(1950), 7, anon_sym_SEMI, anon_sym_macro_rules_BANG, anon_sym_RBRACE, @@ -134455,7 +134476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_POUND, sym_metavariable, - ACTIONS(1994), 38, + ACTIONS(1952), 38, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134502,53 +134523,53 @@ static const uint16_t ts_small_parse_table[] = { STATE(1469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3879), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3877), 30, + ACTIONS(1954), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(1956), 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, [28846] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -134557,62 +134578,116 @@ static const uint16_t ts_small_parse_table[] = { STATE(1470), 2, sym_line_comment, sym_block_comment, - ACTIONS(3883), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(2510), 7, + anon_sym_SEMI, + anon_sym_macro_rules_BANG, + anon_sym_RBRACE, + anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_metavariable, + ACTIONS(2512), 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, + [28906] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1471), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3887), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3881), 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_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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_else, - [28906] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3885), 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, + [28965] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1471), 2, + STATE(1472), 2, sym_line_comment, sym_block_comment, - ACTIONS(2654), 12, + ACTIONS(2410), 12, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -134625,7 +134700,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, sym_integer_literal, sym_metavariable, - ACTIONS(2656), 32, + ACTIONS(2412), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134658,70 +134733,69 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [28965] = 6, + [29024] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3325), 1, - anon_sym_COLON_COLON, - STATE(1472), 2, + STATE(1473), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 15, - anon_sym_PLUS, - anon_sym_STAR, + ACTIONS(3657), 15, + sym__raw_string_literal_start, + sym_float_literal, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3319), 28, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_as, - anon_sym_else, - [29026] = 5, + anon_sym_COLON_COLON, + anon_sym_POUND, + sym_integer_literal, + aux_sym_string_literal_token1, + sym_char_literal, + sym_metavariable, + ACTIONS(3655), 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, + [29083] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1473), 2, + STATE(1474), 2, sym_line_comment, sym_block_comment, - ACTIONS(1686), 15, + ACTIONS(2657), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -134737,7 +134811,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(1688), 29, + ACTIONS(2659), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134767,103 +134841,83 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29085] = 23, - ACTIONS(29), 1, - anon_sym_LT, + [29142] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1562), 1, - anon_sym_LBRACK, - ACTIONS(3336), 1, - sym_identifier, - ACTIONS(3340), 1, - anon_sym_LPAREN, - ACTIONS(3342), 1, - anon_sym_STAR, - ACTIONS(3346), 1, - anon_sym_AMP, - ACTIONS(3348), 1, + ACTIONS(3889), 1, anon_sym_COLON_COLON, - ACTIONS(3350), 1, - anon_sym_SQUOTE, - ACTIONS(3354), 1, - anon_sym_for, - ACTIONS(3358), 1, - sym_metavariable, - STATE(2395), 1, - sym_where_predicate, - STATE(2577), 1, - sym_scoped_type_identifier, - STATE(2937), 1, - sym_generic_type, - STATE(3339), 1, - sym_generic_type_with_turbofish, - STATE(3411), 1, - sym_scoped_identifier, - STATE(3474), 1, - sym_bracketed_type, - ACTIONS(3352), 2, - anon_sym_default, - anon_sym_union, - STATE(1474), 2, + STATE(1475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 3, - sym_self, - sym_super, - sym_crate, - STATE(3172), 6, - sym_higher_ranked_trait_bound, - sym_lifetime, - sym_array_type, - sym_tuple_type, - sym_reference_type, - sym_pointer_type, - ACTIONS(3344), 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, - [29180] = 5, + ACTIONS(1416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1418), 28, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_as, + anon_sym_else, + [29203] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1475), 2, + STATE(1476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3781), 15, - sym__raw_string_literal_start, - sym_float_literal, + ACTIONS(3205), 12, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_DASH, + anon_sym_STAR, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, anon_sym_LT, - anon_sym_DOT_DOT, anon_sym_COLON_COLON, anon_sym_POUND, + anon_sym_SQUOTE, sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, sym_metavariable, - ACTIONS(3779), 29, + ACTIONS(3203), 32, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134881,27 +134935,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - anon_sym__, + 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_ref, - sym_mutable_specifier, - anon_sym_true, - anon_sym_false, + anon_sym_unsafe, + anon_sym_extern, + anon_sym_dyn, sym_identifier, sym_self, sym_super, sym_crate, - [29239] = 5, + [29262] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1476), 2, + STATE(1477), 2, sym_line_comment, sym_block_comment, - ACTIONS(3887), 15, + ACTIONS(3723), 15, sym__raw_string_literal_start, sym_float_literal, anon_sym_LPAREN, @@ -134917,7 +134974,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_string_literal_token1, sym_char_literal, sym_metavariable, - ACTIONS(3885), 29, + ACTIONS(3721), 29, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -134947,17 +135004,17 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29298] = 6, + [29321] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, + ACTIONS(3321), 1, anon_sym_COLON_COLON, - STATE(1477), 2, + STATE(1478), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3317), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -134973,7 +135030,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 28, + ACTIONS(3315), 28, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135002,12 +135059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_as, anon_sym_else, - [29359] = 5, + [29382] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1478), 2, + STATE(1479), 2, sym_line_comment, sym_block_comment, ACTIONS(3893), 15, @@ -135056,7 +135113,7 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [29418] = 23, + [29441] = 23, ACTIONS(29), 1, anon_sym_LT, ACTIONS(101), 1, @@ -135065,52 +135122,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(1562), 1, anon_sym_LBRACK, - ACTIONS(3336), 1, + ACTIONS(3475), 1, sym_identifier, - ACTIONS(3340), 1, + ACTIONS(3479), 1, anon_sym_LPAREN, - ACTIONS(3342), 1, + ACTIONS(3481), 1, anon_sym_STAR, - ACTIONS(3346), 1, + ACTIONS(3485), 1, anon_sym_AMP, - ACTIONS(3348), 1, + ACTIONS(3487), 1, anon_sym_COLON_COLON, - ACTIONS(3350), 1, + ACTIONS(3489), 1, anon_sym_SQUOTE, - ACTIONS(3354), 1, + ACTIONS(3493), 1, anon_sym_for, - ACTIONS(3358), 1, + ACTIONS(3497), 1, sym_metavariable, - STATE(2577), 1, + STATE(2507), 1, sym_scoped_type_identifier, - STATE(2716), 1, + STATE(2546), 1, sym_where_predicate, - STATE(2937), 1, + STATE(3020), 1, sym_generic_type, - STATE(3339), 1, + STATE(3340), 1, sym_generic_type_with_turbofish, - STATE(3411), 1, + STATE(3385), 1, sym_scoped_identifier, - STATE(3474), 1, + STATE(3469), 1, sym_bracketed_type, - ACTIONS(3352), 2, + ACTIONS(3491), 2, anon_sym_default, anon_sym_union, - STATE(1479), 2, + STATE(1480), 2, sym_line_comment, sym_block_comment, - ACTIONS(3356), 3, + ACTIONS(3495), 3, sym_self, sym_super, sym_crate, - STATE(3172), 6, + STATE(3194), 6, sym_higher_ranked_trait_bound, sym_lifetime, sym_array_type, sym_tuple_type, sym_reference_type, sym_pointer_type, - ACTIONS(3344), 17, + ACTIONS(3483), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135128,82 +135185,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [29513] = 5, + [29536] = 23, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1480), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3689), 15, - sym__raw_string_literal_start, - sym_float_literal, - anon_sym_LPAREN, + ACTIONS(1562), 1, anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(3475), 1, + sym_identifier, + ACTIONS(3479), 1, + anon_sym_LPAREN, + ACTIONS(3481), 1, + anon_sym_STAR, + ACTIONS(3485), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT, - anon_sym_DOT_DOT, + ACTIONS(3487), 1, anon_sym_COLON_COLON, - anon_sym_POUND, - sym_integer_literal, - aux_sym_string_literal_token1, - sym_char_literal, + ACTIONS(3489), 1, + anon_sym_SQUOTE, + ACTIONS(3493), 1, + anon_sym_for, + ACTIONS(3497), 1, sym_metavariable, - ACTIONS(3687), 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, + STATE(2438), 1, + sym_where_predicate, + STATE(2507), 1, + sym_scoped_type_identifier, + STATE(3020), 1, + sym_generic_type, + STATE(3340), 1, + sym_generic_type_with_turbofish, + STATE(3385), 1, + sym_scoped_identifier, + STATE(3469), 1, + sym_bracketed_type, + ACTIONS(3491), 2, 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, - [29572] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, STATE(1481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3205), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_POUND, - anon_sym_SQUOTE, - sym_integer_literal, - sym_metavariable, - ACTIONS(3203), 32, + ACTIONS(3495), 3, + sym_self, + sym_super, + sym_crate, + STATE(3194), 6, + sym_higher_ranked_trait_bound, + sym_lifetime, + sym_array_type, + sym_tuple_type, + sym_reference_type, + sym_pointer_type, + ACTIONS(3483), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -135221,33 +135257,18 @@ 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_pub, - anon_sym_union, - anon_sym_unsafe, - anon_sym_extern, - anon_sym_dyn, - sym_identifier, - sym_self, - sym_super, - sym_crate, [29631] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -135303,18 +135324,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29717] = 22, + [29717] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -135354,15 +135375,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3855), 7, + ACTIONS(3919), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - ACTIONS(3919), 10, + [29807] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(3327), 1, + anon_sym_COLON_COLON, + ACTIONS(3927), 1, + anon_sym_BANG, + STATE(1199), 1, + sym_field_initializer_list, + STATE(1484), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1418), 24, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [29873] = 13, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1485), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3669), 6, + anon_sym_CARET, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3665), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135373,18 +135503,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [29809] = 12, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [29947] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3897), 2, anon_sym_PLUS, @@ -135392,14 +135530,14 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1484), 2, + STATE(1486), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 7, + ACTIONS(3669), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -135407,7 +135545,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3845), 25, + ACTIONS(3665), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135433,18 +135571,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29881] = 14, + [30019] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3923), 1, + anon_sym_DOT_DOT, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3925), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1487), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3661), 7, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3929), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [30111] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -135456,27 +135664,102 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1485), 2, + STATE(1488), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 5, + ACTIONS(3669), 5, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3845), 25, + ACTIONS(3665), 25, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, + anon_sym_else, + [30187] = 21, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3923), 1, + anon_sym_DOT_DOT, + ACTIONS(3935), 1, + anon_sym_EQ, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(3925), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1489), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3933), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135487,26 +135770,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [29957] = 17, + [30277] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -135514,7 +135791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3847), 2, + ACTIONS(3669), 2, anon_sym_EQ, anon_sym_DOT_DOT, ACTIONS(3897), 2, @@ -135526,7 +135803,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - STATE(1486), 2, + STATE(1490), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -135538,7 +135815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3845), 21, + ACTIONS(3665), 21, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135560,18 +135837,150 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30039] = 18, + [30359] = 25, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1290), 1, + anon_sym_fn, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3145), 1, + anon_sym_for, + ACTIONS(3487), 1, + anon_sym_COLON_COLON, + ACTIONS(3491), 1, + anon_sym_union, + ACTIONS(3497), 1, + sym_metavariable, + ACTIONS(3503), 1, + anon_sym_default, + ACTIONS(3937), 1, + sym_identifier, + STATE(1618), 1, + sym_for_lifetimes, + STATE(1917), 1, + sym_scoped_type_identifier, + STATE(1944), 1, + sym_generic_type, + STATE(2206), 1, + aux_sym_function_modifiers_repeat1, + STATE(2320), 1, + sym_extern_modifier, + STATE(3340), 1, + sym_generic_type_with_turbofish, + STATE(3385), 1, + sym_scoped_identifier, + STATE(3427), 1, + sym_function_modifiers, + STATE(3469), 1, + sym_bracketed_type, + STATE(1491), 2, + sym_line_comment, + sym_block_comment, + STATE(1984), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1284), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3495), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3501), 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, + [30457] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3939), 1, + anon_sym_LPAREN, + ACTIONS(3941), 1, + anon_sym_BANG, + ACTIONS(3943), 1, + anon_sym_COLON_COLON, + ACTIONS(3945), 1, + anon_sym_LT2, + STATE(1582), 1, + sym_type_arguments, + STATE(1602), 1, + sym_parameters, + STATE(1492), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3245), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3241), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [30527] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -135581,7 +135990,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(3847), 2, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(370), 2, anon_sym_EQ, anon_sym_DOT_DOT, ACTIONS(3897), 2, @@ -135593,7 +136004,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - STATE(1487), 2, + STATE(1493), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -135605,13 +136016,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3845), 20, + ACTIONS(368), 19, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135626,18 +136036,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30123] = 21, + [30613] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -135651,7 +136061,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(3923), 1, anon_sym_DOT_DOT, - ACTIONS(3929), 1, + ACTIONS(3949), 1, anon_sym_EQ, ACTIONS(3897), 2, anon_sym_PLUS, @@ -135665,7 +136075,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3925), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1488), 2, + STATE(1494), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -135677,12 +136087,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3927), 17, + ACTIONS(3947), 17, + anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_COMMA, + anon_sym_else, + [30703] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + STATE(1495), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3669), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3665), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135693,20 +136155,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30213] = 21, + [30771] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -135720,7 +136188,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(3923), 1, anon_sym_DOT_DOT, - ACTIONS(3933), 1, + ACTIONS(3931), 1, anon_sym_EQ, ACTIONS(3897), 2, anon_sym_PLUS, @@ -135734,7 +136202,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3925), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1489), 2, + STATE(1496), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -135746,12 +136214,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3931), 17, + ACTIONS(3771), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_else, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135762,20 +136233,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [30303] = 15, + [30863] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -135789,19 +136258,19 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1490), 2, + STATE(1497), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 4, + ACTIONS(3669), 4, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3845), 25, + ACTIONS(3665), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135827,20 +136296,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30381] = 21, + [30941] = 25, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3763), 1, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3117), 1, + anon_sym_fn, + ACTIONS(3428), 1, + anon_sym_COLON_COLON, + ACTIONS(3430), 1, + anon_sym_default, + ACTIONS(3434), 1, + anon_sym_union, + ACTIONS(3438), 1, + sym_metavariable, + ACTIONS(3951), 1, + sym_identifier, + ACTIONS(3953), 1, + anon_sym_for, + STATE(1029), 1, + sym_scoped_type_identifier, + STATE(1051), 1, + sym_generic_type, + STATE(1592), 1, + sym_for_lifetimes, + STATE(2206), 1, + aux_sym_function_modifiers_repeat1, + STATE(2320), 1, + sym_extern_modifier, + STATE(3338), 1, + sym_function_modifiers, + STATE(3483), 1, + sym_scoped_identifier, + STATE(3516), 1, + sym_generic_type_with_turbofish, + STATE(3526), 1, + sym_bracketed_type, + STATE(1297), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + STATE(1498), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1284), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3436), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3426), 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, + [31039] = 21, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -135854,6 +136394,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(3923), 1, anon_sym_DOT_DOT, + ACTIONS(3957), 1, + anon_sym_EQ, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -135866,7 +136408,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3925), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1491), 2, + STATE(1499), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -135878,7 +136420,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 17, + ACTIONS(3955), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -135896,18 +136438,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [30471] = 21, + [31129] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -135917,12 +136459,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3937), 1, + ACTIONS(3669), 2, anon_sym_EQ, + anon_sym_DOT_DOT, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -135932,10 +136471,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1492), 2, + STATE(1500), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -135947,12 +136483,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3935), 17, + ACTIONS(3665), 20, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135963,44 +136500,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30561] = 13, + [31213] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3903), 1, - anon_sym_AMP, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1493), 2, + STATE(1501), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 6, + ACTIONS(3669), 9, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3845), 25, + ACTIONS(3665), 25, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136026,18 +136563,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30635] = 19, + [31283] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(342), 1, + anon_sym_EQ, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -136049,8 +136588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(380), 2, - anon_sym_EQ, + ACTIONS(3923), 1, anon_sym_DOT_DOT, ACTIONS(3897), 2, anon_sym_PLUS, @@ -136061,7 +136599,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - STATE(1494), 2, + ACTIONS(3925), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1502), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -136073,7 +136614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(378), 19, + ACTIONS(336), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136089,168 +136630,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_else, - [30721] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3115), 1, - anon_sym_fn, - ACTIONS(3487), 1, - anon_sym_COLON_COLON, - ACTIONS(3489), 1, - anon_sym_default, - ACTIONS(3491), 1, - anon_sym_union, - ACTIONS(3495), 1, - sym_metavariable, - ACTIONS(3939), 1, - sym_identifier, - ACTIONS(3941), 1, - anon_sym_for, - STATE(1532), 1, - sym_scoped_type_identifier, - STATE(1612), 1, - sym_for_lifetimes, - STATE(1621), 1, - sym_generic_type, - STATE(2224), 1, - aux_sym_function_modifiers_repeat1, - STATE(2351), 1, - sym_extern_modifier, - STATE(3478), 1, - sym_function_modifiers, - STATE(3513), 1, - sym_scoped_identifier, - STATE(3530), 1, - sym_generic_type_with_turbofish, - STATE(3536), 1, - sym_bracketed_type, - STATE(1495), 2, - sym_line_comment, - sym_block_comment, - STATE(1763), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1288), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3493), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3485), 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, - [30819] = 25, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1294), 1, - anon_sym_fn, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3143), 1, - anon_sym_for, - ACTIONS(3348), 1, - anon_sym_COLON_COLON, - ACTIONS(3352), 1, - anon_sym_union, - ACTIONS(3358), 1, - sym_metavariable, - ACTIONS(3461), 1, - anon_sym_default, - ACTIONS(3943), 1, - sym_identifier, - STATE(1624), 1, - sym_for_lifetimes, - STATE(1915), 1, - sym_scoped_type_identifier, - STATE(1944), 1, - sym_generic_type, - STATE(2224), 1, - aux_sym_function_modifiers_repeat1, - STATE(2351), 1, - sym_extern_modifier, - STATE(3339), 1, - sym_generic_type_with_turbofish, - STATE(3411), 1, - sym_scoped_identifier, - STATE(3432), 1, - sym_function_modifiers, - STATE(3474), 1, - sym_bracketed_type, - STATE(1496), 2, - sym_line_comment, - sym_block_comment, - STATE(1966), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - ACTIONS(1288), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3356), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3459), 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, - [30917] = 21, + [31373] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -136264,7 +136657,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, ACTIONS(3923), 1, anon_sym_DOT_DOT, - ACTIONS(3947), 1, + ACTIONS(3961), 1, anon_sym_EQ, ACTIONS(3897), 2, anon_sym_PLUS, @@ -136278,7 +136671,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3925), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1497), 2, + STATE(1503), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -136290,7 +136683,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3945), 17, + ACTIONS(3959), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136308,77 +136701,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_COMMA, anon_sym_else, - [31007] = 11, + [31463] = 25, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1498), 2, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3081), 1, + anon_sym_fn, + ACTIONS(3380), 1, + anon_sym_COLON_COLON, + ACTIONS(3382), 1, + anon_sym_default, + ACTIONS(3386), 1, + anon_sym_union, + ACTIONS(3390), 1, + sym_metavariable, + ACTIONS(3963), 1, + sym_identifier, + ACTIONS(3965), 1, + anon_sym_for, + STATE(1532), 1, + sym_scoped_type_identifier, + STATE(1600), 1, + sym_generic_type, + STATE(1613), 1, + sym_for_lifetimes, + STATE(2206), 1, + aux_sym_function_modifiers_repeat1, + STATE(2320), 1, + sym_extern_modifier, + STATE(3473), 1, + sym_function_modifiers, + STATE(3507), 1, + sym_scoped_identifier, + STATE(3524), 1, + sym_generic_type_with_turbofish, + STATE(3530), 1, + sym_bracketed_type, + STATE(1504), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3847), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3845), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31077] = 22, + STATE(1709), 2, + sym_higher_ranked_trait_bound, + sym_function_type, + ACTIONS(1284), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3388), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3378), 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, + [31561] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -136390,10 +136797,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, ACTIONS(3923), 1, anon_sym_DOT_DOT, + ACTIONS(3931), 1, + anon_sym_EQ, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -136406,7 +136813,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3925), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1499), 2, + STATE(1505), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -136418,7 +136825,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3659), 7, + ACTIONS(3739), 7, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -136426,7 +136833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_COMMA, anon_sym_else, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136437,44 +136844,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31169] = 10, + [31653] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - STATE(1500), 2, + ACTIONS(3939), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LT2, + ACTIONS(3967), 1, + anon_sym_COLON_COLON, + STATE(1582), 1, + sym_type_arguments, + STATE(1602), 1, + sym_parameters, + STATE(1506), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3261), 17, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 25, - anon_sym_SEMI, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(3259), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -136485,33 +136894,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31237] = 9, + anon_sym_as, + [31720] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3315), 1, + ACTIONS(3941), 1, + anon_sym_BANG, + ACTIONS(3969), 1, anon_sym_LBRACE, - ACTIONS(3317), 1, + ACTIONS(3971), 1, anon_sym_COLON_COLON, - ACTIONS(3949), 1, - anon_sym_BANG, - STATE(1455), 1, + STATE(1650), 1, sym_field_initializer_list, - STATE(1501), 2, + STATE(1507), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136527,11 +136933,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 24, - anon_sym_SEMI, + ACTIONS(1418), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136552,63 +136957,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31303] = 21, + [31785] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3939), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LT2, + ACTIONS(3967), 1, + anon_sym_COLON_COLON, + STATE(1582), 1, + sym_type_arguments, + STATE(1602), 1, + sym_parameters, + STATE(1508), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3265), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3923), 1, - anon_sym_DOT_DOT, - ACTIONS(3953), 1, - anon_sym_EQ, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3263), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1502), 2, + anon_sym_as, + [31852] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3319), 1, + anon_sym_BANG, + ACTIONS(3321), 1, + anon_sym_COLON_COLON, + ACTIONS(3973), 1, + sym_identifier, + STATE(1509), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3317), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3951), 17, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + anon_sym_as, + ACTIONS(3315), 23, anon_sym_SEMI, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_RBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136619,68 +137063,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_COMMA, - anon_sym_else, - [31393] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [31915] = 19, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(1262), 1, + anon_sym_DASH, + ACTIONS(1308), 1, + aux_sym_string_literal_token1, + ACTIONS(1318), 1, + sym__raw_string_literal_start, + ACTIONS(2340), 1, + anon_sym_COLON_COLON, + ACTIONS(3229), 1, + sym_identifier, + ACTIONS(3239), 1, + sym_metavariable, + STATE(2036), 1, + sym_scoped_identifier, + STATE(2080), 1, + sym__literal_pattern, + STATE(3324), 1, + sym_bracketed_type, + STATE(3350), 1, + sym_generic_type_with_turbofish, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(1510), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1306), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3237), 3, + sym_self, + sym_super, + sym_crate, + STATE(2004), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3235), 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, + [32000] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3247), 1, + anon_sym_BANG, + ACTIONS(3975), 1, + anon_sym_COLON_COLON, + STATE(1199), 1, + sym_field_initializer_list, + STATE(1511), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(3923), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(1418), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + anon_sym_as, + [32063] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1262), 1, + anon_sym_DASH, + ACTIONS(1308), 1, + aux_sym_string_literal_token1, + ACTIONS(1318), 1, + sym__raw_string_literal_start, + ACTIONS(2340), 1, + anon_sym_COLON_COLON, + ACTIONS(3217), 1, + sym_identifier, + ACTIONS(3227), 1, + sym_metavariable, + STATE(2048), 1, + sym_scoped_identifier, + STATE(2091), 1, + sym__literal_pattern, + STATE(3324), 1, + sym_bracketed_type, + STATE(3350), 1, + sym_generic_type_with_turbofish, + ACTIONS(1310), 2, + anon_sym_true, + anon_sym_false, + STATE(1512), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1306), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3225), 3, + sym_self, + sym_super, + sym_crate, + STATE(2004), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3223), 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, + [32148] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3939), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LT2, + ACTIONS(3967), 1, + anon_sym_COLON_COLON, + STATE(1582), 1, + sym_type_arguments, + STATE(1602), 1, + sym_parameters, + STATE(1513), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3255), 17, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(3911), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(3925), 2, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3253), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1503), 2, + anon_sym_as, + [32215] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1614), 1, + anon_sym_DASH, + ACTIONS(1638), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + sym__raw_string_literal_start, + ACTIONS(3599), 1, + anon_sym_COLON_COLON, + ACTIONS(3755), 1, + sym_identifier, + ACTIONS(3761), 1, + sym_metavariable, + STATE(2696), 1, + sym_scoped_identifier, + STATE(2971), 1, + sym__literal_pattern, + STATE(3465), 1, + sym_bracketed_type, + STATE(3478), 1, + sym_generic_type_with_turbofish, + ACTIONS(1640), 2, + anon_sym_true, + anon_sym_false, + STATE(1514), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1636), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3759), 3, + sym_self, + sym_super, + sym_crate, + STATE(2299), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3757), 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, + [32300] = 19, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1614), 1, + anon_sym_DASH, + ACTIONS(1638), 1, + aux_sym_string_literal_token1, + ACTIONS(1646), 1, + sym__raw_string_literal_start, + ACTIONS(3595), 1, + sym_identifier, + ACTIONS(3599), 1, + anon_sym_COLON_COLON, + ACTIONS(3603), 1, + sym_metavariable, + STATE(2726), 1, + sym_scoped_identifier, + STATE(2895), 1, + sym__literal_pattern, + STATE(3465), 1, + sym_bracketed_type, + STATE(3478), 1, + sym_generic_type_with_turbofish, + ACTIONS(1640), 2, + anon_sym_true, + anon_sym_false, + STATE(1515), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1636), 3, + sym_float_literal, + sym_integer_literal, + sym_char_literal, + ACTIONS(3601), 3, + sym_self, + sym_super, + sym_crate, + STATE(2299), 4, + sym_negative_literal, + sym_string_literal, + sym_raw_string_literal, + sym_boolean_literal, + ACTIONS(3597), 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, + [32385] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1516), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3295), 16, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3643), 7, - anon_sym_SEMI, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3297), 25, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COMMA, - anon_sym_else, - ACTIONS(3919), 10, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136691,62 +137487,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [31485] = 25, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + [32441] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3073), 1, - anon_sym_fn, - ACTIONS(3527), 1, + ACTIONS(3981), 1, anon_sym_COLON_COLON, - ACTIONS(3529), 1, - anon_sym_default, - ACTIONS(3531), 1, - anon_sym_union, - ACTIONS(3535), 1, - sym_metavariable, - ACTIONS(3955), 1, - sym_identifier, - ACTIONS(3957), 1, - anon_sym_for, - STATE(1021), 1, - sym_scoped_type_identifier, - STATE(1061), 1, - sym_generic_type, - STATE(1630), 1, - sym_for_lifetimes, - STATE(2224), 1, - aux_sym_function_modifiers_repeat1, - STATE(2351), 1, - sym_extern_modifier, - STATE(3337), 1, - sym_function_modifiers, - STATE(3488), 1, - sym_scoped_identifier, - STATE(3522), 1, - sym_generic_type_with_turbofish, - STATE(3532), 1, - sym_bracketed_type, - STATE(1318), 2, - sym_higher_ranked_trait_bound, - sym_function_type, - STATE(1504), 2, + STATE(1517), 2, sym_line_comment, sym_block_comment, - ACTIONS(1288), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3533), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3525), 17, + ACTIONS(3979), 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(3977), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -136764,45 +137534,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [31583] = 11, + 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, + [32499] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3961), 1, - anon_sym_BANG, - ACTIONS(3963), 1, - anon_sym_COLON_COLON, - ACTIONS(3965), 1, - anon_sym_LT2, - STATE(1606), 1, - sym_type_arguments, - STATE(1619), 1, - sym_parameters, - STATE(1505), 2, + ACTIONS(3539), 1, + anon_sym_LBRACE, + STATE(1518), 2, sym_line_comment, sym_block_comment, - ACTIONS(3245), 17, + ACTIONS(3295), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3241), 20, + ACTIONS(3297), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -136816,30 +137590,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [31653] = 9, + [32557] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3961), 1, + ACTIONS(3295), 1, anon_sym_BANG, - ACTIONS(3967), 1, - anon_sym_LBRACE, - ACTIONS(3969), 1, + ACTIONS(3297), 1, anon_sym_COLON_COLON, - STATE(1746), 1, - sym_field_initializer_list, - STATE(1506), 2, + STATE(1519), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3293), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136850,12 +137623,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 23, + ACTIONS(3291), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -136870,34 +137645,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31718] = 10, + anon_sym_LT2, + [32617] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, + ACTIONS(3939), 1, anon_sym_LPAREN, - ACTIONS(3965), 1, + ACTIONS(3945), 1, anon_sym_LT2, - ACTIONS(3971), 1, - anon_sym_COLON_COLON, - STATE(1606), 1, + STATE(1583), 1, sym_type_arguments, - STATE(1619), 1, + STATE(1614), 1, sym_parameters, - STATE(1507), 2, + STATE(1520), 2, sym_line_comment, sym_block_comment, - ACTIONS(3261), 17, + ACTIONS(3285), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -136915,7 +137687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3259), 20, + ACTIONS(3283), 20, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -136936,45 +137708,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [31785] = 10, + [32681] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3965), 1, - anon_sym_LT2, - ACTIONS(3971), 1, - anon_sym_COLON_COLON, - STATE(1606), 1, - sym_type_arguments, - STATE(1619), 1, - sym_parameters, - STATE(1508), 2, + STATE(1521), 2, sym_line_comment, sym_block_comment, - ACTIONS(3255), 17, + ACTIONS(3279), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3253), 20, + ACTIONS(3281), 25, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -136986,34 +137748,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [31852] = 8, + [32737] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3323), 1, - anon_sym_BANG, - ACTIONS(3325), 1, - anon_sym_COLON_COLON, - ACTIONS(3973), 1, - sym_identifier, - STATE(1509), 2, + ACTIONS(3398), 1, + anon_sym_LBRACE, + STATE(1522), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 16, + ACTIONS(3279), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137023,12 +137786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - anon_sym_as, - ACTIONS(3319), 23, - anon_sym_SEMI, + ACTIONS(3281), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137048,175 +137809,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [31915] = 19, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_COLON_COLON, + anon_sym_as, + [32795] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3725), 1, - sym_identifier, - ACTIONS(3729), 1, - anon_sym_COLON_COLON, - ACTIONS(3733), 1, - sym_metavariable, - STATE(2665), 1, - sym_scoped_identifier, - STATE(2761), 1, - sym__literal_pattern, - STATE(3470), 1, - sym_bracketed_type, - STATE(3483), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - STATE(1510), 2, + STATE(1523), 2, sym_line_comment, sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3731), 3, - sym_self, - sym_super, - sym_crate, - STATE(2309), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3727), 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, - [32000] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1266), 1, + ACTIONS(3311), 16, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(1312), 1, - aux_sym_string_literal_token1, - ACTIONS(1322), 1, - sym__raw_string_literal_start, - ACTIONS(1880), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3313), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(3217), 1, - sym_identifier, - ACTIONS(3227), 1, - sym_metavariable, - STATE(2056), 1, - sym_scoped_identifier, - STATE(2087), 1, - sym__literal_pattern, - STATE(3323), 1, - sym_bracketed_type, - STATE(3349), 1, - sym_generic_type_with_turbofish, - ACTIONS(1314), 2, - anon_sym_true, - anon_sym_false, - STATE(1511), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1310), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3225), 3, - sym_self, - sym_super, - sym_crate, - STATE(2017), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3223), 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, - [32085] = 10, + anon_sym_SQUOTE, + anon_sym_as, + [32851] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3965), 1, - anon_sym_LT2, - ACTIONS(3971), 1, - anon_sym_COLON_COLON, - STATE(1606), 1, - sym_type_arguments, - STATE(1619), 1, - sym_parameters, - STATE(1512), 2, + ACTIONS(3455), 1, + anon_sym_LBRACE, + STATE(1524), 2, sym_line_comment, sym_block_comment, - ACTIONS(3265), 17, + ACTIONS(3271), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3263), 20, + ACTIONS(3273), 24, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -137230,160 +137904,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [32152] = 19, - ACTIONS(29), 1, - anon_sym_LT, + [32909] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1614), 1, - anon_sym_DASH, - ACTIONS(1638), 1, - aux_sym_string_literal_token1, - ACTIONS(1646), 1, - sym__raw_string_literal_start, - ACTIONS(3729), 1, - anon_sym_COLON_COLON, - ACTIONS(3735), 1, - sym_identifier, - ACTIONS(3741), 1, - sym_metavariable, - STATE(2645), 1, - sym_scoped_identifier, - STATE(2774), 1, - sym__literal_pattern, - STATE(3470), 1, - sym_bracketed_type, - STATE(3483), 1, - sym_generic_type_with_turbofish, - ACTIONS(1640), 2, - anon_sym_true, - anon_sym_false, - STATE(1513), 2, + STATE(1525), 2, sym_line_comment, sym_block_comment, - ACTIONS(1636), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3739), 3, - sym_self, - sym_super, - sym_crate, - STATE(2309), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3737), 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, - [32237] = 19, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1266), 1, + ACTIONS(3271), 16, + anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(1312), 1, - aux_sym_string_literal_token1, - ACTIONS(1322), 1, - sym__raw_string_literal_start, - ACTIONS(1880), 1, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_BANG, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3273), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - ACTIONS(3229), 1, - sym_identifier, - ACTIONS(3239), 1, - sym_metavariable, - STATE(2071), 1, - sym_scoped_identifier, - STATE(2092), 1, - sym__literal_pattern, - STATE(3323), 1, - sym_bracketed_type, - STATE(3349), 1, - sym_generic_type_with_turbofish, - ACTIONS(1314), 2, - anon_sym_true, - anon_sym_false, - STATE(1514), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1310), 3, - sym_float_literal, - sym_integer_literal, - sym_char_literal, - ACTIONS(3237), 3, - sym_self, - sym_super, - sym_crate, - STATE(2017), 4, - sym_negative_literal, - sym_string_literal, - sym_raw_string_literal, - sym_boolean_literal, - ACTIONS(3235), 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, - [32322] = 8, + anon_sym_SQUOTE, + anon_sym_as, + [32965] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, - anon_sym_BANG, - ACTIONS(3975), 1, - anon_sym_COLON_COLON, - STATE(1455), 1, - sym_field_initializer_list, - STATE(1515), 2, + ACTIONS(3939), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LT2, + STATE(1583), 1, + sym_type_arguments, + STATE(1614), 1, + sym_parameters, + STATE(1526), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3301), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137394,15 +137992,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 24, - anon_sym_LPAREN, + ACTIONS(3299), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137414,44 +138013,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [32385] = 6, + [33029] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3469), 1, - anon_sym_LBRACE, - STATE(1516), 2, + ACTIONS(3271), 1, + anon_sym_BANG, + ACTIONS(3273), 1, + anon_sym_COLON_COLON, + STATE(1527), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 16, + ACTIONS(3269), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3309), 24, + ACTIONS(3267), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -137466,25 +138065,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [32443] = 5, + anon_sym_LT2, + [33089] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1517), 2, + STATE(1528), 2, sym_line_comment, sym_block_comment, - ACTIONS(3681), 10, + ACTIONS(3817), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -137495,7 +138092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3679), 31, + ACTIONS(3815), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137527,19 +138124,19 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32499] = 7, + [33145] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3307), 1, + ACTIONS(3311), 1, anon_sym_BANG, - ACTIONS(3309), 1, + ACTIONS(3313), 1, anon_sym_COLON_COLON, - STATE(1518), 2, + STATE(1529), 2, sym_line_comment, sym_block_comment, - ACTIONS(3305), 17, + ACTIONS(3309), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137557,7 +138154,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3303), 22, + ACTIONS(3307), 22, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -137580,19 +138177,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [32559] = 7, + [33205] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3751), 1, - anon_sym_BANG, - ACTIONS(3977), 1, - anon_sym_COLON_COLON, - STATE(1519), 2, + ACTIONS(3939), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LT2, + STATE(1583), 1, + sym_type_arguments, + STATE(1614), 1, + sym_parameters, + STATE(1530), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 15, + ACTIONS(3289), 17, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137603,15 +138204,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, + anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3319), 24, - anon_sym_LPAREN, + ACTIONS(3287), 20, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137623,27 +138225,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [32619] = 6, + [33269] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3981), 1, + ACTIONS(3984), 1, anon_sym_LPAREN, - STATE(1520), 2, + STATE(1531), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 9, + ACTIONS(3979), 9, anon_sym_LBRACK, anon_sym_STAR, anon_sym_QMARK, @@ -137653,7 +138252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3979), 31, + ACTIONS(3977), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137685,7 +138284,62 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [32677] = 7, + [33327] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3939), 1, + anon_sym_LPAREN, + ACTIONS(3945), 1, + anon_sym_LT2, + STATE(1583), 1, + sym_type_arguments, + STATE(1614), 1, + sym_parameters, + STATE(1532), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3305), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_LT_LT_EQ, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3303), 20, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [33391] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -137694,7 +138348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, ACTIONS(3281), 1, anon_sym_COLON_COLON, - STATE(1521), 2, + STATE(1533), 2, sym_line_comment, sym_block_comment, ACTIONS(3277), 17, @@ -137738,22 +138392,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_as, anon_sym_LT2, - [32737] = 5, + [33451] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1522), 2, + ACTIONS(3861), 1, + anon_sym_COLON_COLON, + ACTIONS(3927), 1, + anon_sym_BANG, + STATE(1534), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -137763,10 +138420,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 25, + ACTIONS(1418), 24, + anon_sym_SEMI, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137786,22 +138444,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [32793] = 7, + [33511] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, + ACTIONS(3247), 1, anon_sym_BANG, - ACTIONS(3273), 1, + ACTIONS(3987), 1, anon_sym_COLON_COLON, - STATE(1523), 2, + STATE(1535), 2, sym_line_comment, sym_block_comment, - ACTIONS(3269), 17, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137812,17 +138468,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3267), 22, + ACTIONS(1418), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137834,27 +138488,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_LT2, - [32853] = 7, + [33571] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + STATE(1536), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3647), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_STAR, + anon_sym_QMARK, anon_sym_BANG, - ACTIONS(3297), 1, + anon_sym_AMP, + anon_sym_LT, anon_sym_COLON_COLON, - STATE(1524), 2, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3645), 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, + [33627] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3653), 1, + anon_sym_BANG, + ACTIONS(3989), 1, + anon_sym_COLON_COLON, + STATE(1537), 2, sym_line_comment, sym_block_comment, - ACTIONS(3293), 17, + ACTIONS(3317), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137865,17 +138572,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3291), 22, + ACTIONS(3315), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -137887,25 +138592,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - anon_sym_LT2, - [32913] = 6, + [33687] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3479), 1, + ACTIONS(3346), 1, anon_sym_LBRACE, - STATE(1525), 2, + STATE(1538), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(3311), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -137922,7 +138629,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 24, + ACTIONS(3313), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -137947,17 +138654,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [32971] = 6, + [33745] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3986), 1, - anon_sym_COLON_COLON, - STATE(1526), 2, + STATE(1539), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 9, + ACTIONS(3993), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -137965,9 +138670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG, anon_sym_AMP, anon_sym_LT, + anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3979), 31, + ACTIONS(3991), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -137999,70 +138705,66 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33029] = 9, + [33801] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3965), 1, - anon_sym_LT2, - STATE(1607), 1, - sym_type_arguments, - STATE(1620), 1, - sym_parameters, - STATE(1527), 2, + STATE(1540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 17, - anon_sym_PLUS, + ACTIONS(3997), 10, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, + anon_sym_QMARK, + anon_sym_BANG, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3311), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33093] = 5, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + sym_metavariable, + ACTIONS(3995), 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, + [33857] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1528), 2, + STATE(1541), 2, sym_line_comment, sym_block_comment, - ACTIONS(3991), 10, + ACTIONS(4001), 10, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_STAR, @@ -138073,7 +138775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_SQUOTE, sym_metavariable, - ACTIONS(3989), 31, + ACTIONS(3999), 31, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -138105,22 +138807,23 @@ static const uint16_t ts_small_parse_table[] = { sym_self, sym_super, sym_crate, - [33149] = 5, + [33913] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1529), 2, + STATE(1386), 1, + sym_label, + STATE(1542), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(3342), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -138130,7 +138833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 25, + ACTIONS(3340), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, @@ -138153,104 +138856,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, - [33205] = 9, + [33970] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3965), 1, - anon_sym_LT2, - STATE(1607), 1, - sym_type_arguments, - STATE(1620), 1, - sym_parameters, - STATE(1530), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3301), 17, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1003), 1, + anon_sym_RBRACK, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4003), 1, + anon_sym_SEMI, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4009), 1, + anon_sym_COMMA, + STATE(2960), 1, + aux_sym_arguments_repeat1, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3299), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33269] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3965), 1, - anon_sym_LT2, - STATE(1607), 1, - sym_type_arguments, - STATE(1620), 1, - sym_parameters, - STATE(1531), 2, + STATE(1543), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 17, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_LT_LT_EQ, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3283), 20, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138259,30 +138926,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [33333] = 9, + [34065] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(3965), 1, - anon_sym_LT2, - STATE(1607), 1, - sym_type_arguments, - STATE(1620), 1, - sym_parameters, - STATE(1532), 2, + ACTIONS(4011), 1, + anon_sym_SQUOTE, + STATE(1647), 1, + sym_label, + STATE(1544), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 17, + ACTIONS(3342), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138293,14 +138951,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 20, + ACTIONS(3340), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -138314,83 +138971,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [33397] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1533), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3707), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3705), 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, - [33453] = 7, + [34124] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3875), 1, - anon_sym_COLON_COLON, - ACTIONS(3949), 1, - anon_sym_BANG, - STATE(1534), 2, + STATE(1545), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3279), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -138400,11 +139005,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 24, - anon_sym_SEMI, + ACTIONS(3281), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138424,25 +139028,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [33513] = 6, + [34179] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3501), 1, - anon_sym_LBRACE, - STATE(1535), 2, + ACTIONS(3941), 1, + anon_sym_BANG, + ACTIONS(4013), 1, + anon_sym_COLON_COLON, + STATE(1546), 2, sym_line_comment, sym_block_comment, - ACTIONS(3271), 16, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -138452,7 +139058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3273), 24, + ACTIONS(1418), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -138475,16 +139081,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [33571] = 6, + [34238] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3511), 1, - anon_sym_LBRACE, - STATE(1536), 2, + STATE(1547), 2, sym_line_comment, sym_block_comment, ACTIONS(3295), 16, @@ -138529,19 +139132,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [33629] = 7, + [34293] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3247), 1, + ACTIONS(4015), 1, anon_sym_BANG, - ACTIONS(3993), 1, + ACTIONS(4017), 1, anon_sym_COLON_COLON, - STATE(1537), 2, + STATE(1548), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3317), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138557,10 +139160,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 24, + ACTIONS(3315), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138580,142 +139183,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, anon_sym_as, - [33689] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1538), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3997), 10, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_STAR, - anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3995), 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, - [33745] = 5, + [34352] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1539), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4001), 10, - anon_sym_LPAREN, + ACTIONS(955), 1, + anon_sym_RBRACK, + ACTIONS(3667), 1, anon_sym_LBRACK, - anon_sym_STAR, + ACTIONS(3671), 1, anon_sym_QMARK, - anon_sym_BANG, - anon_sym_AMP, - anon_sym_LT, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - sym_metavariable, - ACTIONS(3999), 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, - [33801] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1540), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3279), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4019), 1, + anon_sym_SEMI, + ACTIONS(4021), 1, + anon_sym_COMMA, + STATE(2774), 1, + aux_sym_arguments_repeat1, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3281), 25, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1549), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138726,31 +139254,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - [33857] = 5, + [34447] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1541), 2, + STATE(1550), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 16, + ACTIONS(3463), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -138760,10 +139278,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3309), 25, + ACTIONS(3461), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -138784,68 +139303,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - anon_sym_SQUOTE, anon_sym_as, - [33913] = 25, + [34502] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(1210), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, + ACTIONS(4041), 1, anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4047), 1, anon_sym_DOT_DOT, - STATE(1781), 1, + STATE(469), 1, sym_block, - STATE(3597), 1, + STATE(3590), 1, sym_label, - ACTIONS(4003), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4029), 2, + ACTIONS(4049), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1542), 2, + STATE(1551), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 10, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138856,15 +139374,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34008] = 5, + [34597] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1543), 2, + ACTIONS(3827), 2, + anon_sym_LBRACE, + anon_sym_COLON_COLON, + STATE(1552), 2, sym_line_comment, sym_block_comment, - ACTIONS(3505), 15, + ACTIONS(3545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -138880,10 +139401,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3503), 25, + ACTIONS(3543), 23, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -138904,24 +139424,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_as, + [34654] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3989), 1, anon_sym_COLON_COLON, + STATE(1553), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3317), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3315), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [34063] = 5, + [34711] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1544), 2, + ACTIONS(4051), 1, + anon_sym_else, + STATE(1766), 1, + sym_else_clause, + STATE(1554), 2, sym_line_comment, sym_block_comment, - ACTIONS(3279), 16, + ACTIONS(1196), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -138931,7 +139504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3281), 24, + ACTIONS(1194), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -138954,22 +139527,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [34118] = 25, + [34770] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(763), 1, + ACTIONS(915), 1, anon_sym_RBRACK, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -138981,15 +139553,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4031), 1, - anon_sym_SEMI, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4037), 1, + ACTIONS(4053), 1, + anon_sym_SEMI, + ACTIONS(4055), 1, anon_sym_COMMA, - STATE(2807), 1, + STATE(2777), 1, aux_sym_arguments_repeat1, ACTIONS(3897), 2, anon_sym_PLUS, @@ -139000,10 +139572,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1545), 2, + STATE(1555), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -139015,7 +139587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139026,66 +139598,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34213] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [34865] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4007), 1, + STATE(1556), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3350), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4013), 1, - anon_sym_AMP_AMP, - ACTIONS(4015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_DOT_DOT, - STATE(378), 1, - sym_block, - STATE(3414), 1, - sym_label, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1546), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4019), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3348), 25, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139096,17 +139640,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34308] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [34920] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3813), 1, - anon_sym_COLON_COLON, - STATE(1547), 2, + STATE(1557), 2, sym_line_comment, sym_block_comment, - ACTIONS(3807), 15, + ACTIONS(3406), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139122,10 +139672,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3805), 24, + ACTIONS(3404), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139145,24 +139696,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, + anon_sym_COLON_COLON, anon_sym_as, - [34365] = 5, + [34975] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1548), 2, + ACTIONS(4057), 1, + anon_sym_COLON_COLON, + STATE(1558), 2, sym_line_comment, sym_block_comment, - ACTIONS(3307), 16, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139172,10 +139724,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3309), 24, + ACTIONS(1418), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139195,19 +139747,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, anon_sym_as, - [34420] = 6, + [35032] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3843), 1, - anon_sym_COLON_COLON, - STATE(1549), 2, + STATE(1559), 2, sym_line_comment, sym_block_comment, - ACTIONS(3807), 15, + ACTIONS(3410), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139223,10 +139773,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3805), 24, + ACTIONS(3408), 25, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139246,23 +139797,94 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [35087] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, anon_sym_SQUOTE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, anon_sym_as, - [34477] = 5, + ACTIONS(4027), 1, + anon_sym_CARET, + ACTIONS(4029), 1, + anon_sym_AMP, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_AMP_AMP, + ACTIONS(4035), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(4047), 1, + anon_sym_DOT_DOT, + STATE(376), 1, + sym_block, + STATE(3510), 1, + sym_label, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4049), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1560), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4039), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35182] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1550), 2, + STATE(1561), 2, sym_line_comment, sym_block_comment, - ACTIONS(3390), 15, + ACTIONS(3271), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139272,10 +139894,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3388), 25, + ACTIONS(3273), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139298,21 +139919,162 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34532] = 5, + [35237] = 25, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4027), 1, + anon_sym_CARET, + ACTIONS(4029), 1, + anon_sym_AMP, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_AMP_AMP, + ACTIONS(4035), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(4047), 1, + anon_sym_DOT_DOT, + STATE(1127), 1, + sym_block, + STATE(3539), 1, + sym_label, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4049), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1562), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4039), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35332] = 25, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4027), 1, + anon_sym_CARET, + ACTIONS(4029), 1, + anon_sym_AMP, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_AMP_AMP, + ACTIONS(4035), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(4047), 1, + anon_sym_DOT_DOT, + STATE(1777), 1, + sym_block, + STATE(3591), 1, + sym_label, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4045), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4049), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1563), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4039), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [35427] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1551), 2, + STATE(1564), 2, sym_line_comment, sym_block_comment, - ACTIONS(3380), 15, + ACTIONS(3311), 16, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, + anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -139322,10 +140084,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3378), 25, + ACTIONS(3313), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_LBRACE, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139348,19 +140109,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [34587] = 7, + [35482] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4039), 1, - anon_sym_SQUOTE, - STATE(1735), 1, - sym_label, - STATE(1552), 2, + ACTIONS(3863), 1, + anon_sym_COLON_COLON, + STATE(1565), 2, sym_line_comment, sym_block_comment, - ACTIONS(3374), 15, + ACTIONS(3545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139376,10 +140135,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3372), 23, + ACTIONS(3543), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139399,67 +140158,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [34646] = 25, + [35539] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, - anon_sym_RBRACK, - ACTIONS(3763), 1, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(4041), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4047), 1, anon_sym_DOT_DOT, - ACTIONS(4041), 1, - anon_sym_SEMI, - ACTIONS(4043), 1, - anon_sym_COMMA, - STATE(2768), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + STATE(1772), 1, + sym_block, + STATE(3591), 1, + sym_label, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4049), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1553), 2, + STATE(1566), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139470,66 +140230,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34741] = 25, + [35634] = 25, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(793), 1, - anon_sym_RBRACK, - ACTIONS(3763), 1, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(4041), 1, anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4045), 1, - anon_sym_SEMI, ACTIONS(4047), 1, - anon_sym_COMMA, - STATE(2889), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + anon_sym_DOT_DOT, + STATE(394), 1, + sym_block, + STATE(3510), 1, + sym_label, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4049), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1554), 2, + STATE(1567), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139540,66 +140300,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34836] = 25, + [35729] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, + ACTIONS(3863), 2, anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4007), 1, + anon_sym_COLON_COLON, + STATE(1568), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3545), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4013), 1, - anon_sym_AMP_AMP, - ACTIONS(4015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_DOT_DOT, - STATE(474), 1, - sym_block, - STATE(3596), 1, - sym_label, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1555), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4019), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3543), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139610,66 +140344,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [34931] = 25, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [35786] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(3763), 1, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - STATE(1152), 1, - sym_block, - STATE(3545), 1, - sym_label, - ACTIONS(4003), 2, + ACTIONS(4059), 1, + anon_sym_SEMI, + ACTIONS(4061), 1, + anon_sym_COMMA, + STATE(2788), 1, + aux_sym_arguments_repeat1, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4029), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1556), 2, + STATE(1569), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139680,19 +140421,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35026] = 7, + [35881] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4049), 1, - anon_sym_BANG, - ACTIONS(4051), 1, + ACTIONS(3827), 1, anon_sym_COLON_COLON, - STATE(1557), 2, + STATE(1570), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 15, + ACTIONS(3545), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -139708,10 +140447,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3319), 23, + ACTIONS(3543), 24, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -139731,42 +140470,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, anon_sym_as, - [35085] = 7, + [35938] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3961), 1, - anon_sym_BANG, - ACTIONS(4053), 1, - anon_sym_COLON_COLON, - STATE(1558), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4027), 1, anon_sym_CARET, + ACTIONS(4029), 1, anon_sym_AMP, + ACTIONS(4031), 1, anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_AMP_AMP, + ACTIONS(4035), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(4047), 1, + anon_sym_DOT_DOT, + STATE(1319), 1, + sym_block, + STATE(3539), 1, + sym_label, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4049), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1571), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139777,46 +140542,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [35144] = 6, + [36033] = 25, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1413), 1, - sym_label, - STATE(1559), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3374), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1210), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4027), 1, anon_sym_CARET, + ACTIONS(4029), 1, anon_sym_AMP, + ACTIONS(4031), 1, anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_AMP_AMP, + ACTIONS(4035), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(4047), 1, + anon_sym_DOT_DOT, + STATE(453), 1, + sym_block, + STATE(3590), 1, + sym_label, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3372), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4049), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1572), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139827,46 +140612,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [35201] = 5, + [36128] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1560), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3271), 16, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4027), 1, anon_sym_CARET, - anon_sym_BANG, + ACTIONS(4029), 1, anon_sym_AMP, + ACTIONS(4031), 1, anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_AMP_AMP, + ACTIONS(4035), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(4063), 1, + anon_sym_DOT_DOT, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3273), 24, + ACTIONS(4065), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1573), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3771), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139877,74 +140678,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35256] = 25, - ACTIONS(19), 1, - anon_sym_LBRACE, + [36216] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(3763), 1, + ACTIONS(1005), 1, + anon_sym_RPAREN, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - STATE(373), 1, - sym_block, - STATE(3414), 1, - sym_label, - ACTIONS(4003), 2, + ACTIONS(4067), 1, + anon_sym_COMMA, + STATE(2790), 1, + aux_sym_arguments_repeat1, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4029), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1561), 2, + STATE(1574), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139955,40 +140746,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35351] = 6, + [36308] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3843), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1562), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3807), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3935), 1, + anon_sym_EQ, + ACTIONS(4027), 1, anon_sym_CARET, + ACTIONS(4029), 1, anon_sym_AMP, + ACTIONS(4031), 1, anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_AMP_AMP, + ACTIONS(4035), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4063), 1, + anon_sym_DOT_DOT, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3805), 23, + ACTIONS(4065), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1575), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3933), 13, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139999,27 +140810,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [35408] = 25, + anon_sym_SQUOTE, + [36394] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, + ACTIONS(1007), 1, anon_sym_RBRACK, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -140031,15 +140836,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4055), 1, - anon_sym_SEMI, - ACTIONS(4057), 1, + ACTIONS(4069), 1, anon_sym_COMMA, - STATE(2788), 1, + STATE(2849), 1, aux_sym_arguments_repeat1, ACTIONS(3897), 2, anon_sym_PLUS, @@ -140050,10 +140853,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1563), 2, + STATE(1576), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -140065,50 +140868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [35503] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4059), 1, - anon_sym_COLON_COLON, - STATE(1564), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140119,74 +140879,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [35560] = 25, + [36486] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(3957), 1, + anon_sym_EQ, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4063), 1, anon_sym_DOT_DOT, - STATE(1464), 1, - sym_block, - STATE(3545), 1, - sym_label, - ACTIONS(4003), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4029), 2, + ACTIONS(4065), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1565), 2, + STATE(1577), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 10, + ACTIONS(3955), 13, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140197,39 +140943,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35655] = 6, + anon_sym_SQUOTE, + [36572] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3977), 1, - anon_sym_COLON_COLON, - STATE(1566), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3321), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(983), 1, + anon_sym_RBRACK, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4071), 1, + anon_sym_COMMA, + STATE(2898), 1, + aux_sym_arguments_repeat1, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3319), 24, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_LBRACE, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1578), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140240,74 +141012,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - anon_sym_as, - [35712] = 25, + [36664] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, + ACTIONS(3913), 2, anon_sym_EQ, - ACTIONS(4027), 1, anon_sym_DOT_DOT, - STATE(1788), 1, - sym_block, - STATE(3597), 1, - sym_label, - ACTIONS(4003), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1567), 2, + STATE(1579), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 10, + ACTIONS(3895), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140318,36 +141072,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35807] = 5, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [36746] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1568), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1580), 2, sym_line_comment, sym_block_comment, - ACTIONS(3473), 15, - anon_sym_PLUS, + ACTIONS(4025), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3669), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3471), 25, + ACTIONS(3665), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -140366,68 +141130,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_as, - [35862] = 25, + anon_sym_SQUOTE, + [36814] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4007), 1, + STATE(1581), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3354), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4013), 1, - anon_sym_AMP_AMP, - ACTIONS(4015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_DOT_DOT, - STATE(467), 1, - sym_block, - STATE(3596), 1, - sym_label, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1569), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4019), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3352), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140438,22 +141172,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [35957] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [36868] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1570), 2, + STATE(1582), 2, sym_line_comment, sym_block_comment, - ACTIONS(3295), 16, + ACTIONS(3459), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, anon_sym_CARET, - anon_sym_BANG, anon_sym_AMP, anon_sym_PIPE, anon_sym_LT_LT, @@ -140463,7 +141204,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3297), 24, + ACTIONS(3457), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140488,18 +141229,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_as, - [36012] = 6, + [36922] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3813), 2, - anon_sym_LBRACE, - anon_sym_COLON_COLON, - STATE(1571), 2, + STATE(1583), 2, sym_line_comment, sym_block_comment, - ACTIONS(3807), 15, + ACTIONS(3471), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140515,7 +141253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3805), 23, + ACTIONS(3469), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140538,20 +141276,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - [36069] = 7, + [36976] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4061), 1, - anon_sym_else, - STATE(1751), 1, - sym_else_clause, - STATE(1572), 2, + STATE(1584), 2, sym_line_comment, sym_block_comment, - ACTIONS(1198), 15, + ACTIONS(3338), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140567,7 +141302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1196), 23, + ACTIONS(3336), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140590,63 +141325,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [36128] = 22, + [37030] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, + ACTIONS(4041), 1, anon_sym_EQ, ACTIONS(4063), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, ACTIONS(4065), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1573), 2, + STATE(1585), 2, sym_line_comment, sym_block_comment, - ACTIONS(3643), 3, + ACTIONS(3739), 3, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_SQUOTE, - ACTIONS(4005), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 10, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140657,64 +141393,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36216] = 24, + [37118] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1586), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3309), 17, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4067), 1, - anon_sym_RPAREN, - ACTIONS(4069), 1, - anon_sym_COMMA, - STATE(3002), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_LT_LT_EQ, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1574), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3307), 22, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140723,19 +141434,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [36308] = 6, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + anon_sym_LT2, + [37172] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4071), 1, - anon_sym_DASH_GT, - STATE(1575), 2, + STATE(1587), 2, sym_line_comment, sym_block_comment, - ACTIONS(3368), 15, + ACTIONS(1242), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140751,7 +141466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3366), 23, + ACTIONS(1240), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140775,35 +141490,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36364] = 5, + anon_sym_else, + [37226] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1576), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4027), 1, + anon_sym_CARET, + ACTIONS(4029), 1, + anon_sym_AMP, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1588), 2, sym_line_comment, sym_block_comment, - ACTIONS(3386), 15, - anon_sym_PLUS, + ACTIONS(4025), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3669), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3384), 24, + ACTIONS(3665), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -140822,37 +141548,121 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [36418] = 5, + anon_sym_SQUOTE, + [37298] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1577), 2, + ACTIONS(1009), 1, + anon_sym_RPAREN, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4073), 1, + anon_sym_COMMA, + STATE(2944), 1, + aux_sym_arguments_repeat1, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1589), 2, sym_line_comment, sym_block_comment, - ACTIONS(1242), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [37390] = 17, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4027), 1, anon_sym_CARET, + ACTIONS(4029), 1, anon_sym_AMP, + ACTIONS(4031), 1, anon_sym_PIPE, + ACTIONS(3669), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1240), 24, + STATE(1590), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3665), 17, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -140865,23 +141675,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - anon_sym_else, - [36472] = 5, + anon_sym_SQUOTE, + [37468] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1578), 2, + ACTIONS(4017), 1, + anon_sym_COLON_COLON, + STATE(1591), 2, sym_line_comment, sym_block_comment, - ACTIONS(1208), 15, + ACTIONS(3317), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140897,7 +141704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1206), 24, + ACTIONS(3315), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -140921,37 +141728,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [36526] = 5, + [37524] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1579), 2, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3487), 1, + anon_sym_COLON_COLON, + ACTIONS(3491), 1, + anon_sym_union, + ACTIONS(3497), 1, + sym_metavariable, + ACTIONS(3503), 1, + anon_sym_default, + ACTIONS(4075), 1, + sym_identifier, + ACTIONS(4077), 1, + anon_sym_fn, + STATE(2206), 1, + aux_sym_function_modifiers_repeat1, + STATE(2320), 1, + sym_extern_modifier, + STATE(2509), 1, + sym_scoped_type_identifier, + STATE(3340), 1, + sym_generic_type_with_turbofish, + STATE(3370), 1, + sym_function_modifiers, + STATE(3385), 1, + sym_scoped_identifier, + STATE(3403), 1, + sym_generic_type, + STATE(3469), 1, + sym_bracketed_type, + STATE(1592), 2, sym_line_comment, sym_block_comment, - ACTIONS(3477), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1284), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3495), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3501), 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, + [37612] = 18, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4027), 1, anon_sym_CARET, + ACTIONS(4029), 1, anon_sym_AMP, + ACTIONS(4031), 1, anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_AMP_AMP, + ACTIONS(3669), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3475), 24, + STATE(1593), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3665), 16, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, + anon_sym_LBRACE, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -140963,23 +141853,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [36580] = 5, + anon_sym_SQUOTE, + [37692] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1580), 2, + ACTIONS(4079), 1, + anon_sym_DASH_GT, + STATE(1594), 2, sym_line_comment, sym_block_comment, - ACTIONS(1234), 15, + ACTIONS(3414), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -140995,7 +141882,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1232), 24, + ACTIONS(3412), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141019,18 +141906,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [36634] = 6, + [37748] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4073), 1, - anon_sym_COLON_COLON, - STATE(1581), 2, + STATE(1595), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(1208), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141046,7 +141930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(1206), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141070,15 +141954,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [36690] = 5, + anon_sym_else, + [37802] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1582), 2, + ACTIONS(4081), 1, + anon_sym_COLON_COLON, + STATE(1596), 2, sym_line_comment, sym_block_comment, - ACTIONS(1238), 15, + ACTIONS(3301), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141094,7 +141981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1236), 24, + ACTIONS(3299), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141118,16 +142005,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [36744] = 5, + [37858] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1583), 2, + ACTIONS(4083), 1, + anon_sym_COLON_COLON, + STATE(1597), 2, sym_line_comment, sym_block_comment, - ACTIONS(3509), 15, + ACTIONS(3289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141143,7 +142031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3507), 24, + ACTIONS(3287), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141166,17 +142054,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [36798] = 5, + [37914] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1584), 2, + ACTIONS(4085), 1, + anon_sym_DASH_GT, + STATE(1598), 2, sym_line_comment, sym_block_comment, - ACTIONS(1246), 15, + ACTIONS(3523), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141192,7 +142081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1244), 24, + ACTIONS(3521), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141216,16 +142105,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - anon_sym_else, - [36852] = 5, + [37970] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1585), 2, + STATE(1599), 2, sym_line_comment, sym_block_comment, - ACTIONS(3269), 17, + ACTIONS(3402), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141236,14 +142124,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_LT_LT_EQ, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_LT_EQ, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3267), 22, + ACTIONS(3400), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141258,23 +142144,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_CARET_EQ, anon_sym_AMP_EQ, anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_as, - anon_sym_LT2, - [36906] = 5, + [38024] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1586), 2, + ACTIONS(4083), 1, + anon_sym_COLON_COLON, + STATE(1600), 2, sym_line_comment, sym_block_comment, - ACTIONS(3364), 15, + ACTIONS(3305), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141290,7 +142180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3362), 24, + ACTIONS(3303), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141313,56 +142203,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, anon_sym_as, - [36960] = 19, + [38080] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(342), 1, + anon_sym_EQ, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(3913), 2, - anon_sym_EQ, + ACTIONS(4063), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - STATE(1587), 2, + ACTIONS(4065), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1601), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 15, + ACTIONS(336), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -141375,18 +142268,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [37042] = 5, + [38166] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1588), 2, + ACTIONS(4087), 1, + anon_sym_DASH_GT, + STATE(1602), 2, sym_line_comment, sym_block_comment, - ACTIONS(3519), 15, + ACTIONS(3535), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141402,7 +142295,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3517), 24, + ACTIONS(3533), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141425,17 +142318,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [37096] = 5, + [38222] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1589), 2, + STATE(1603), 2, sym_line_comment, sym_block_comment, - ACTIONS(3515), 15, + ACTIONS(1234), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -141451,7 +142343,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3513), 24, + ACTIONS(1232), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -141474,289 +142366,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [37150] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4007), 1, - anon_sym_CARET, - ACTIONS(4009), 1, - anon_sym_AMP, - ACTIONS(4011), 1, - anon_sym_PIPE, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1590), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3847), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3845), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37224] = 21, + anon_sym_else, + [38276] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3933), 1, - anon_sym_EQ, - ACTIONS(4007), 1, - anon_sym_CARET, - ACTIONS(4009), 1, - anon_sym_AMP, - ACTIONS(4011), 1, - anon_sym_PIPE, - ACTIONS(4013), 1, - anon_sym_AMP_AMP, - ACTIONS(4015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4025), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1591), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3931), 13, + ACTIONS(4089), 1, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [37310] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3929), 1, - anon_sym_EQ, - ACTIONS(4007), 1, - anon_sym_CARET, - ACTIONS(4009), 1, - anon_sym_AMP, - ACTIONS(4011), 1, - anon_sym_PIPE, - ACTIONS(4013), 1, - anon_sym_AMP_AMP, - ACTIONS(4015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4025), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1592), 2, + STATE(1652), 1, + sym_arguments, + STATE(1604), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3927), 13, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [37396] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4075), 1, - anon_sym_COMMA, - STATE(2881), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, + ACTIONS(3396), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1593), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [37488] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4003), 2, - anon_sym_PLUS, anon_sym_DASH, - STATE(1594), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -141765,10 +142394,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3392), 22, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141787,169 +142418,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37554] = 18, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, anon_sym_as, - ACTIONS(4007), 1, - anon_sym_CARET, - ACTIONS(4009), 1, - anon_sym_AMP, - ACTIONS(4011), 1, - anon_sym_PIPE, - ACTIONS(4013), 1, - anon_sym_AMP_AMP, - ACTIONS(3847), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4025), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1595), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3845), 16, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37634] = 17, + [38334] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4007), 1, - anon_sym_CARET, - ACTIONS(4009), 1, - anon_sym_AMP, - ACTIONS(4011), 1, - anon_sym_PIPE, - ACTIONS(3847), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4025), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1596), 2, + STATE(1605), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(3445), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3845), 17, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37712] = 14, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4007), 1, anon_sym_CARET, - ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - STATE(1597), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3847), 5, - anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 21, + ACTIONS(3443), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -141968,42 +142466,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37784] = 12, + anon_sym_DASH_GT, + anon_sym_as, + [38388] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4003), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1598), 2, + STATE(1606), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 7, + ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3845), 21, + ACTIONS(3665), 21, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_AMP_AMP, @@ -142025,100 +142523,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_SQUOTE, - [37852] = 13, + [38454] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4009), 1, - anon_sym_AMP, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1599), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3847), 6, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3845), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3907), 1, anon_sym_AMP_AMP, + ACTIONS(3909), 1, 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37922] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - STATE(1600), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3847), 11, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3845), 21, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1607), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4091), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142129,24 +142589,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [37986] = 6, + [38542] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4073), 1, + ACTIONS(4083), 1, anon_sym_COLON_COLON, - STATE(1601), 2, + STATE(1608), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 15, + ACTIONS(3301), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142162,7 +142615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3311), 23, + ACTIONS(3299), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142186,17 +142639,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38042] = 6, + [38598] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4077), 1, - anon_sym_COLON_COLON, - STATE(1602), 2, + STATE(1609), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 15, + ACTIONS(1238), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142212,7 +142663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3311), 23, + ACTIONS(1236), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142236,18 +142687,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [38098] = 22, + anon_sym_else, + [38652] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -142259,9 +142711,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, ACTIONS(3897), 2, anon_sym_PLUS, @@ -142272,17 +142724,17 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1603), 2, + STATE(1610), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4079), 3, + ACTIONS(4093), 3, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_COMMA, @@ -142291,7 +142743,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142302,17 +142754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [38186] = 6, + [38740] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - STATE(1604), 2, + STATE(1611), 2, sym_line_comment, sym_block_comment, - ACTIONS(3313), 15, + ACTIONS(3372), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142328,7 +142778,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3311), 23, + ACTIONS(3370), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142351,82 +142801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, anon_sym_as, - [38242] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4007), 1, - anon_sym_CARET, - ACTIONS(4009), 1, - anon_sym_AMP, - ACTIONS(4011), 1, - anon_sym_PIPE, - ACTIONS(4013), 1, - anon_sym_AMP_AMP, - ACTIONS(4015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4063), 1, - anon_sym_DOT_DOT, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4025), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1605), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3659), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4019), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [38330] = 5, + [38794] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1606), 2, + ACTIONS(4095), 1, + anon_sym_COLON_COLON, + STATE(1612), 2, sym_line_comment, sym_block_comment, - ACTIONS(3442), 15, + ACTIONS(3301), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142442,7 +142829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3440), 24, + ACTIONS(3299), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142465,17 +142852,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38384] = 5, + [38850] = 22, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1607), 2, + ACTIONS(1298), 1, + anon_sym_extern, + ACTIONS(3487), 1, + anon_sym_COLON_COLON, + ACTIONS(3491), 1, + anon_sym_union, + ACTIONS(3497), 1, + sym_metavariable, + ACTIONS(3503), 1, + anon_sym_default, + ACTIONS(4097), 1, + sym_identifier, + ACTIONS(4099), 1, + anon_sym_fn, + STATE(2206), 1, + aux_sym_function_modifiers_repeat1, + STATE(2320), 1, + sym_extern_modifier, + STATE(2603), 1, + sym_scoped_type_identifier, + STATE(3340), 1, + sym_generic_type_with_turbofish, + STATE(3385), 1, + sym_scoped_identifier, + STATE(3403), 1, + sym_generic_type, + STATE(3469), 1, + sym_bracketed_type, + STATE(3484), 1, + sym_function_modifiers, + STATE(1613), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1284), 3, + anon_sym_async, + anon_sym_const, + anon_sym_unsafe, + ACTIONS(3495), 3, + sym_self, + sym_super, + sym_crate, + ACTIONS(3501), 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, + [38938] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4101), 1, + anon_sym_DASH_GT, + STATE(1614), 2, sym_line_comment, sym_block_comment, - ACTIONS(3438), 15, + ACTIONS(3529), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142491,7 +142945,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3436), 24, + ACTIONS(3527), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142514,60 +142968,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, anon_sym_as, - [38438] = 21, + [38994] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3937), 1, + ACTIONS(3949), 1, anon_sym_EQ, - ACTIONS(4007), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, ACTIONS(4063), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, ACTIONS(4065), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1608), 2, + STATE(1615), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3935), 13, + ACTIONS(3947), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -142581,121 +143034,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [38524] = 19, + [39080] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, - anon_sym_CARET, - ACTIONS(4009), 1, - anon_sym_AMP, - ACTIONS(4011), 1, - anon_sym_PIPE, - ACTIONS(4013), 1, - anon_sym_AMP_AMP, - ACTIONS(4015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(380), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4025), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1609), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(378), 15, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_SQUOTE, - [38606] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(342), 1, + ACTIONS(3961), 1, anon_sym_EQ, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, ACTIONS(4063), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, ACTIONS(4065), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1610), 2, + STATE(1616), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 13, + ACTIONS(3959), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -142709,15 +143099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [38692] = 5, + [39166] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1611), 2, + STATE(1617), 2, sym_line_comment, sym_block_comment, - ACTIONS(3446), 15, + ACTIONS(3509), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -142733,7 +143123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3444), 24, + ACTIONS(3507), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -142756,57 +143146,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, anon_sym_as, - [38746] = 22, + [39220] = 22, ACTIONS(29), 1, anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1302), 1, + ACTIONS(1298), 1, anon_sym_extern, - ACTIONS(3348), 1, + ACTIONS(3487), 1, anon_sym_COLON_COLON, - ACTIONS(3352), 1, + ACTIONS(3491), 1, anon_sym_union, - ACTIONS(3358), 1, + ACTIONS(3497), 1, sym_metavariable, - ACTIONS(3461), 1, + ACTIONS(3503), 1, anon_sym_default, - ACTIONS(4083), 1, + ACTIONS(4103), 1, sym_identifier, - ACTIONS(4085), 1, + ACTIONS(4105), 1, anon_sym_fn, - STATE(2224), 1, + STATE(2206), 1, aux_sym_function_modifiers_repeat1, - STATE(2351), 1, + STATE(2320), 1, sym_extern_modifier, - STATE(2549), 1, + STATE(2578), 1, sym_scoped_type_identifier, - STATE(3339), 1, + STATE(3330), 1, + sym_function_modifiers, + STATE(3340), 1, sym_generic_type_with_turbofish, - STATE(3411), 1, + STATE(3385), 1, sym_scoped_identifier, - STATE(3448), 1, + STATE(3403), 1, sym_generic_type, - STATE(3474), 1, + STATE(3469), 1, sym_bracketed_type, - STATE(3489), 1, - sym_function_modifiers, - STATE(1612), 2, + STATE(1618), 2, sym_line_comment, sym_block_comment, - ACTIONS(1288), 3, + ACTIONS(1284), 3, anon_sym_async, anon_sym_const, anon_sym_unsafe, - ACTIONS(3356), 3, + ACTIONS(3495), 3, sym_self, sym_super, sym_crate, - ACTIONS(3459), 17, + ACTIONS(3501), 17, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -142824,60 +143214,295 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bool, anon_sym_str, anon_sym_char, - [38834] = 21, + [39308] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3953), 1, + ACTIONS(4027), 1, + anon_sym_CARET, + ACTIONS(4029), 1, + anon_sym_AMP, + ACTIONS(4031), 1, + anon_sym_PIPE, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1619), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3669), 4, anon_sym_EQ, - ACTIONS(4007), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3665), 21, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39382] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4107), 1, + anon_sym_COLON_COLON, + STATE(1620), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4009), 1, anon_sym_AMP, - ACTIONS(4011), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1418), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, - ACTIONS(4015), 1, anon_sym_PIPE_PIPE, - ACTIONS(4063), 1, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [39438] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1621), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3368), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(4003), 2, + ACTIONS(3366), 24, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_as, + [39492] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4109), 1, + anon_sym_DASH_GT, + STATE(1622), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3515), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(4017), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3513), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1613), 2, + anon_sym_as, + [39548] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4111), 1, + anon_sym_DASH_GT, + STATE(1623), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(3358), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3356), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3951), 13, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [39604] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1624), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3420), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3418), 24, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142888,59 +143513,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_SQUOTE, - [38920] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, + anon_sym_as, + [39658] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3947), 1, + ACTIONS(3921), 1, anon_sym_EQ, - ACTIONS(4007), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, ACTIONS(4063), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, ACTIONS(4065), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1614), 2, + STATE(1625), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3945), 13, + ACTIONS(3919), 13, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -142954,67 +143586,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, anon_sym_SQUOTE, - [39006] = 6, + [39744] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4087), 1, + ACTIONS(4113), 1, anon_sym_DASH_GT, - STATE(1615), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3432), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3430), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39062] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4073), 1, - anon_sym_COLON_COLON, - STATE(1616), 2, + STATE(1626), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(3449), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143030,7 +143612,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(3447), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143054,62 +143636,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39118] = 22, + [39800] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4013), 1, + ACTIONS(4033), 1, anon_sym_AMP_AMP, - ACTIONS(4015), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, + ACTIONS(370), 2, anon_sym_EQ, - ACTIONS(4063), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4065), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1617), 2, + STATE(1627), 2, sym_line_comment, sym_block_comment, - ACTIONS(3855), 3, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_SQUOTE, - ACTIONS(4005), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4023), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 10, + ACTIONS(368), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143120,18 +143696,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39206] = 24, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_SQUOTE, + [39882] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -143143,15 +143722,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4089), 1, + ACTIONS(4115), 1, anon_sym_RPAREN, - ACTIONS(4091), 1, + ACTIONS(4117), 1, anon_sym_COMMA, - STATE(2865), 1, + STATE(2830), 1, aux_sym_arguments_repeat1, ACTIONS(3897), 2, anon_sym_PLUS, @@ -143162,10 +143741,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1618), 2, + STATE(1628), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -143177,7 +143756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143188,22 +143767,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39298] = 6, + [39974] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4093), 1, - anon_sym_DASH_GT, - STATE(1619), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + STATE(1629), 2, sym_line_comment, sym_block_comment, - ACTIONS(3424), 15, - anon_sym_PLUS, + ACTIONS(4025), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3669), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -143212,13 +143798,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3422), 23, + ACTIONS(3665), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143237,38 +143820,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39354] = 6, + anon_sym_SQUOTE, + [40038] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4095), 1, - anon_sym_DASH_GT, - STATE(1620), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4029), 1, + anon_sym_AMP, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1630), 2, sym_line_comment, sym_block_comment, - ACTIONS(3418), 15, - anon_sym_PLUS, + ACTIONS(4025), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3669), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3416), 23, + ACTIONS(3665), 21, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -143287,18 +143877,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39410] = 6, + anon_sym_SQUOTE, + [40108] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4073), 1, - anon_sym_COLON_COLON, - STATE(1621), 2, + STATE(1631), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(1246), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143314,7 +143902,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 23, + ACTIONS(1244), 24, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143338,20 +143926,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39466] = 24, + anon_sym_else, + [40162] = 24, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(973), 1, - anon_sym_RBRACK, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -143363,13 +143950,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4097), 1, + ACTIONS(4119), 1, + anon_sym_RPAREN, + ACTIONS(4121), 1, anon_sym_COMMA, - STATE(2999), 1, + STATE(3004), 1, aux_sym_arguments_repeat1, ACTIONS(3897), 2, anon_sym_PLUS, @@ -143380,88 +143969,22 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1622), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39558] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1623), 2, + STATE(1632), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4099), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143472,83 +143995,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [39646] = 22, - ACTIONS(29), 1, - anon_sym_LT, + [40254] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3348), 1, + ACTIONS(4083), 1, anon_sym_COLON_COLON, - ACTIONS(3352), 1, - anon_sym_union, - ACTIONS(3358), 1, - sym_metavariable, - ACTIONS(3461), 1, - anon_sym_default, - ACTIONS(4101), 1, - sym_identifier, - ACTIONS(4103), 1, - anon_sym_fn, - STATE(2224), 1, - aux_sym_function_modifiers_repeat1, - STATE(2351), 1, - sym_extern_modifier, - STATE(2588), 1, - sym_scoped_type_identifier, - STATE(3339), 1, - sym_generic_type_with_turbofish, - STATE(3411), 1, - sym_scoped_identifier, - STATE(3433), 1, - sym_function_modifiers, - STATE(3448), 1, - sym_generic_type, - STATE(3474), 1, - sym_bracketed_type, - STATE(1624), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1288), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3356), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3459), 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, - [39734] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4105), 1, - anon_sym_DASH_GT, - STATE(1625), 2, + STATE(1633), 2, sym_line_comment, sym_block_comment, - ACTIONS(3400), 15, + ACTIONS(3285), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143564,7 +144021,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3398), 23, + ACTIONS(3283), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143588,39 +144045,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [39790] = 6, + [40310] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4107), 1, - anon_sym_DASH_GT, - STATE(1626), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3394), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4027), 1, anon_sym_CARET, + ACTIONS(4029), 1, anon_sym_AMP, + ACTIONS(4031), 1, anon_sym_PIPE, + ACTIONS(4033), 1, + anon_sym_AMP_AMP, + ACTIONS(4035), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(4063), 1, + anon_sym_DOT_DOT, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3392), 23, + ACTIONS(4065), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1634), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3661), 3, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, + anon_sym_SQUOTE, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143631,22 +144111,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [39846] = 5, + [40398] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1627), 2, + ACTIONS(4123), 1, + anon_sym_COLON_COLON, + STATE(1635), 2, sym_line_comment, sym_block_comment, - ACTIONS(3412), 15, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143662,7 +144137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3410), 24, + ACTIONS(1418), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143685,90 +144160,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_DASH_GT, - anon_sym_as, - [39900] = 24, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RPAREN, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4109), 1, - anon_sym_COMMA, - STATE(2954), 1, - aux_sym_arguments_repeat1, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1628), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [39992] = 24, + [40454] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_RPAREN, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -143780,14 +144184,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4111), 1, - anon_sym_COMMA, - STATE(2900), 1, - aux_sym_arguments_repeat1, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4127), 1, + anon_sym_RBRACE, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -143797,10 +144201,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1629), 2, + STATE(1636), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -143812,7 +144216,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143823,83 +144227,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40084] = 22, - ACTIONS(29), 1, - anon_sym_LT, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1302), 1, - anon_sym_extern, - ACTIONS(3348), 1, - anon_sym_COLON_COLON, - ACTIONS(3352), 1, - anon_sym_union, - ACTIONS(3358), 1, - sym_metavariable, - ACTIONS(3461), 1, - anon_sym_default, - ACTIONS(4113), 1, - sym_identifier, - ACTIONS(4115), 1, - anon_sym_fn, - STATE(2224), 1, - aux_sym_function_modifiers_repeat1, - STATE(2351), 1, - sym_extern_modifier, - STATE(2706), 1, - sym_scoped_type_identifier, - STATE(3339), 1, - sym_generic_type_with_turbofish, - STATE(3370), 1, - sym_function_modifiers, - STATE(3411), 1, - sym_scoped_identifier, - STATE(3448), 1, - sym_generic_type, - STATE(3474), 1, - sym_bracketed_type, - STATE(1630), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1288), 3, - anon_sym_async, - anon_sym_const, - anon_sym_unsafe, - ACTIONS(3356), 3, - sym_self, - sym_super, - sym_crate, - ACTIONS(3459), 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, - [40172] = 6, + [40543] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4051), 1, - anon_sym_COLON_COLON, - STATE(1631), 2, + STATE(1637), 2, sym_line_comment, sym_block_comment, - ACTIONS(3321), 15, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -143915,7 +144251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3319), 23, + ACTIONS(1418), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -143939,39 +144275,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40228] = 6, + [40596] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4117), 1, - anon_sym_DASH_GT, - STATE(1632), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3406), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4027), 1, anon_sym_CARET, + ACTIONS(4029), 1, anon_sym_AMP, + ACTIONS(4031), 1, anon_sym_PIPE, + ACTIONS(4035), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(4047), 1, + anon_sym_DOT_DOT, + ACTIONS(4023), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3404), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(4049), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1638), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4025), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4129), 3, + anon_sym_LBRACE, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_SQUOTE, + ACTIONS(4043), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143982,24 +144339,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [40284] = 6, + [40681] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4119), 1, - anon_sym_COLON_COLON, - STATE(1633), 2, + STATE(1639), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144015,7 +144363,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 23, + ACTIONS(3392), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144039,17 +144387,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40340] = 6, + [40734] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4121), 1, - anon_sym_COLON_COLON, - STATE(1634), 2, + STATE(1640), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3635), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144065,7 +144411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 23, + ACTIONS(3633), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144089,19 +144435,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40396] = 7, + [40787] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4123), 1, - anon_sym_LPAREN, - STATE(1750), 1, - sym_arguments, - STATE(1635), 2, + STATE(1641), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 15, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144117,7 +144459,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 22, + ACTIONS(1418), 23, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_QMARK, @@ -144140,15 +144483,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40454] = 5, + [40840] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1636), 2, + STATE(1642), 2, sym_line_comment, sym_block_comment, - ACTIONS(1250), 15, + ACTIONS(3719), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144164,7 +144507,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1248), 23, + ACTIONS(3717), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144188,15 +144531,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40507] = 5, + [40893] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1637), 2, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + STATE(1643), 2, sym_line_comment, sym_block_comment, - ACTIONS(3617), 15, + ACTIONS(3789), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144210,13 +144559,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3615), 23, + ACTIONS(3787), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144236,15 +144582,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40560] = 5, + [40952] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1638), 2, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + STATE(1644), 2, sym_line_comment, sym_block_comment, - ACTIONS(1416), 15, + ACTIONS(3805), 14, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144258,13 +144610,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1414), 23, + ACTIONS(3803), 21, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -144284,44 +144633,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40613] = 11, + [41011] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(4141), 1, + anon_sym_CARET, + ACTIONS(4143), 1, + anon_sym_AMP, + ACTIONS(4145), 1, + anon_sym_PIPE, + ACTIONS(4147), 1, + anon_sym_AMP_AMP, + ACTIONS(4149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, anon_sym_as, - ACTIONS(4125), 2, + ACTIONS(370), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(1639), 2, + ACTIONS(4151), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4155), 2, + anon_sym_GT, + anon_sym_LT, + STATE(1645), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 9, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3845), 20, + ACTIONS(4153), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(368), 14, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144332,67 +144693,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [40678] = 22, + [41092] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(342), 1, + anon_sym_EQ, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4147), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4149), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4129), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1640), 2, + STATE(1646), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4153), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(336), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144403,15 +144759,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40765] = 5, + [41177] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1641), 2, + STATE(1647), 2, sym_line_comment, sym_block_comment, - ACTIONS(3649), 15, + ACTIONS(3847), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144427,7 +144783,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3647), 23, + ACTIONS(3845), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144451,62 +144807,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [40818] = 23, + [41230] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(121), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3935), 1, + anon_sym_EQ, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4147), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4149), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1642), 2, + STATE(1648), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4153), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3933), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144517,62 +144871,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40907] = 23, + [41315] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3957), 1, + anon_sym_EQ, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4147), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4149), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(4133), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1643), 2, + STATE(1649), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4153), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3955), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144583,62 +144935,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [40996] = 23, + [41400] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(151), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1650), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3561), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3559), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1644), 2, + anon_sym_as, + [41453] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1651), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3573), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3571), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41506] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1652), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3577), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3575), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144649,15 +145072,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41085] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41559] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1645), 2, + STATE(1653), 2, sym_line_comment, sym_block_comment, - ACTIONS(3865), 15, + ACTIONS(3607), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -144673,7 +145103,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3863), 23, + ACTIONS(3605), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -144697,20 +145127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41138] = 23, + [41612] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(137), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -144722,12 +145150,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, + ACTIONS(4163), 1, anon_sym_SEMI, + ACTIONS(4165), 1, + anon_sym_else, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -144737,10 +145167,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1646), 2, + STATE(1654), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -144752,7 +145182,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144763,61 +145193,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41227] = 22, + [41701] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1655), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3773), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4033), 1, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(3771), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41754] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1656), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1416), 15, anon_sym_PLUS, + anon_sym_STAR, anon_sym_DASH, - ACTIONS(3911), 2, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1418), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4135), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1647), 2, + anon_sym_as, + [41807] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1657), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(3785), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3783), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41860] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1658), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3801), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3799), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144828,62 +145378,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41314] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41913] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1659), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3809), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4137), 1, - anon_sym_SEMI, - ACTIONS(4139), 1, - anon_sym_else, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1648), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT_DOT, + ACTIONS(3807), 21, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144894,20 +145429,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41403] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [41972] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(141), 1, + ACTIONS(286), 1, anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -144919,11 +145461,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, + ACTIONS(4125), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -144934,10 +145476,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1649), 2, + STATE(1660), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -144949,7 +145491,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144960,54 +145502,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41492] = 18, + [42061] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4141), 1, + STATE(1661), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3741), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(3847), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1650), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4151), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3845), 15, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3739), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -145019,64 +145543,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [41571] = 23, + anon_sym_as, + [42114] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1662), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1416), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4155), 1, - anon_sym_SEMI, - ACTIONS(4157), 1, - anon_sym_else, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1651), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1418), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145087,15 +145591,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41660] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42167] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1652), 2, + STATE(1663), 2, sym_line_comment, sym_block_comment, - ACTIONS(3861), 15, + ACTIONS(3835), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145111,7 +145622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3859), 23, + ACTIONS(3833), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145135,62 +145646,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [41713] = 23, + [42220] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1664), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3619), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(4159), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1653), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3617), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145201,52 +145687,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [41802] = 17, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42273] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(4157), 1, anon_sym_as, - ACTIONS(4141), 1, + STATE(1665), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3669), 14, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(3847), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1654), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4151), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3845), 16, + anon_sym_DOT_DOT, + ACTIONS(3665), 20, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145259,47 +145740,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [41879] = 14, + [42334] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1655), 2, + STATE(1666), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(3651), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 20, + ACTIONS(3649), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145318,62 +145793,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [41950] = 23, + anon_sym_as, + [42387] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4141), 1, + STATE(1667), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3777), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4161), 1, - anon_sym_LBRACE, - ACTIONS(4163), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4167), 1, - anon_sym_EQ, - ACTIONS(4169), 1, - anon_sym_DOT_DOT, - STATE(452), 1, - sym_match_block, - ACTIONS(4125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4171), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1656), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4151), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4165), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3775), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145384,61 +145835,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42039] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42440] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4181), 1, + STATE(1668), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3545), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4183), 1, anon_sym_AMP, - ACTIONS(4185), 1, anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_AMP_AMP, - ACTIONS(4189), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4195), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4201), 1, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(4203), 1, anon_sym_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(3659), 2, + ACTIONS(3543), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4199), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4205), 2, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1657), 2, + anon_sym_as, + [42493] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1669), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3549), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4193), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3547), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145449,15 +145931,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42126] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [42546] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1658), 2, + STATE(1670), 2, sym_line_comment, sym_block_comment, - ACTIONS(3695), 15, + ACTIONS(3553), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145473,7 +145962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3693), 23, + ACTIONS(3551), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145497,15 +145986,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42179] = 5, + [42599] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1659), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4167), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1671), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [42686] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1672), 2, sym_line_comment, sym_block_comment, - ACTIONS(3711), 15, + ACTIONS(3663), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145521,7 +146075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3709), 23, + ACTIONS(3661), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145545,15 +146099,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42232] = 5, + [42739] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1660), 2, + STATE(1673), 2, sym_line_comment, sym_block_comment, - ACTIONS(1448), 15, + ACTIONS(1416), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145569,7 +146123,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1446), 23, + ACTIONS(1418), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145593,18 +146147,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42285] = 23, + [42792] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(288), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -145616,14 +146172,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4209), 1, + ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(4211), 1, - anon_sym_else, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -145633,10 +146187,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1661), 2, + STATE(1674), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -145648,7 +146202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145659,15 +146213,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42374] = 5, + [42881] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1662), 2, + STATE(1675), 2, sym_line_comment, sym_block_comment, - ACTIONS(3649), 15, + ACTIONS(3715), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145683,7 +146237,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3647), 23, + ACTIONS(3713), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145707,15 +146261,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42427] = 5, + [42934] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1663), 2, + STATE(1676), 2, sym_line_comment, sym_block_comment, - ACTIONS(3605), 15, + ACTIONS(3749), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145731,7 +146285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3603), 23, + ACTIONS(3747), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145755,43 +146309,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42480] = 12, + [42987] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1664), 2, + STATE(1677), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(3753), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 20, + ACTIONS(3751), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -145810,15 +146356,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [42547] = 5, + anon_sym_as, + [43040] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1665), 2, + STATE(1678), 2, sym_line_comment, sym_block_comment, - ACTIONS(3841), 15, + ACTIONS(3765), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145834,7 +146381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3839), 23, + ACTIONS(3763), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145858,80 +146405,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42600] = 22, + [43093] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4213), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1666), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [42687] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1667), 2, + STATE(1679), 2, sym_line_comment, sym_block_comment, - ACTIONS(1412), 15, + ACTIONS(3781), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -145947,7 +146429,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1410), 23, + ACTIONS(3779), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -145971,61 +146453,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42740] = 22, + [43146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1680), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3793), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(3659), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1668), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3791), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146036,15 +146494,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42827] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43199] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1669), 2, + STATE(1681), 2, sym_line_comment, sym_block_comment, - ACTIONS(1376), 15, + ACTIONS(3797), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146060,7 +146525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1374), 23, + ACTIONS(3795), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146084,61 +146549,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [42880] = 22, + [43252] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(1174), 1, + anon_sym_RPAREN, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4141), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(4163), 1, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4167), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4215), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(3855), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4125), 2, + ACTIONS(4169), 1, + anon_sym_COMMA, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4149), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4217), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1670), 2, + STATE(1682), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4151), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4165), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146149,15 +146615,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [42967] = 5, + [43341] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1671), 2, + STATE(1683), 2, sym_line_comment, sym_block_comment, - ACTIONS(797), 15, + ACTIONS(3839), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146173,7 +146639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(799), 23, + ACTIONS(3837), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146197,15 +146663,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43020] = 5, + [43394] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1672), 2, + STATE(1684), 2, sym_line_comment, sym_block_comment, - ACTIONS(1330), 15, + ACTIONS(3871), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146221,7 +146687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1328), 23, + ACTIONS(3869), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146245,15 +146711,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43073] = 5, + [43447] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1673), 2, + STATE(1685), 2, sym_line_comment, sym_block_comment, - ACTIONS(3673), 15, + ACTIONS(3883), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146269,7 +146735,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3671), 23, + ACTIONS(3881), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146293,62 +146759,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43126] = 23, + [43500] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1686), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3679), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4219), 1, - anon_sym_SEMI, - ACTIONS(4221), 1, - anon_sym_else, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1674), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3677), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146359,105 +146800,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43215] = 18, - ACTIONS(29), 1, - anon_sym_LT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43553] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4223), 1, - sym_identifier, - ACTIONS(4225), 1, - anon_sym_LBRACE, - ACTIONS(4227), 1, - anon_sym_RBRACE, - ACTIONS(4229), 1, - anon_sym_STAR, - ACTIONS(4233), 1, - anon_sym_COMMA, - ACTIONS(4235), 1, - anon_sym_COLON_COLON, - ACTIONS(4239), 1, - sym_metavariable, - STATE(2420), 1, - sym_scoped_identifier, - STATE(3014), 1, - sym__use_clause, - STATE(3357), 1, - sym_generic_type_with_turbofish, - STATE(3515), 1, - sym_bracketed_type, - STATE(1675), 2, + STATE(1687), 2, sym_line_comment, sym_block_comment, - ACTIONS(4237), 3, - sym_self, - sym_super, - sym_crate, - STATE(2877), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4231), 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, - [43294] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4125), 2, + ACTIONS(3691), 15, anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1676), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 3, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 6, anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 20, + ACTIONS(3689), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146476,29 +146854,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43363] = 10, + anon_sym_as, + [43606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_as, - STATE(1677), 2, + STATE(1688), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3695), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -146507,10 +146877,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 20, + ACTIONS(3693), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146529,29 +146902,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43426] = 10, + anon_sym_as, + [43659] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - STATE(1678), 2, + STATE(1689), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(3557), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 11, - anon_sym_PLUS, - anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -146560,10 +146925,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 20, + ACTIONS(3555), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -146582,60 +146950,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [43489] = 21, + anon_sym_as, + [43712] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3953), 1, - anon_sym_EQ, - ACTIONS(4141), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4163), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(4215), 1, + ACTIONS(4041), 1, + anon_sym_EQ, + ACTIONS(4047), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 2, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4149), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4217), 2, + ACTIONS(4049), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1679), 2, + STATE(1690), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4151), 4, + ACTIONS(4171), 3, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3951), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146646,15 +147015,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43574] = 5, + [43797] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1680), 2, + STATE(1691), 2, sym_line_comment, sym_block_comment, - ACTIONS(3677), 15, + ACTIONS(3707), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146670,7 +147039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3675), 23, + ACTIONS(3705), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -146694,62 +147063,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [43627] = 23, + [43850] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4141), 1, + STATE(1692), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3825), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4163), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4167), 1, - anon_sym_EQ, - ACTIONS(4169), 1, - anon_sym_DOT_DOT, - ACTIONS(4241), 1, - anon_sym_LBRACE, - STATE(389), 1, - sym_match_block, - ACTIONS(4125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4171), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1681), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4151), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4165), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3823), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146760,62 +147104,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43716] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43903] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(129), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1693), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3611), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1682), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3609), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146826,60 +147152,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43805] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [43956] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4141), 1, + STATE(1694), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3615), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4163), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4215), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1683), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4151), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(336), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3613), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146890,20 +147200,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43890] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44009] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(145), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -146915,12 +147230,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, + ACTIONS(4173), 1, anon_sym_SEMI, + ACTIONS(4175), 1, + anon_sym_else, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -146930,10 +147247,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1684), 2, + STATE(1695), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -146945,7 +147262,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146956,15 +147273,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [43979] = 5, + [44098] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1685), 2, + STATE(1696), 2, sym_line_comment, sym_block_comment, - ACTIONS(3803), 15, + ACTIONS(3565), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -146980,7 +147297,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3801), 23, + ACTIONS(3563), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147004,18 +147321,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44032] = 23, + [44151] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -147027,14 +147344,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(4243), 1, - anon_sym_RBRACE, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -147044,10 +147357,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1686), 2, + ACTIONS(4177), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1697), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -147059,72 +147375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44121] = 22, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4007), 1, - anon_sym_CARET, - ACTIONS(4009), 1, - anon_sym_AMP, - ACTIONS(4011), 1, - anon_sym_PIPE, - ACTIONS(4015), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, - anon_sym_EQ, - ACTIONS(4027), 1, - anon_sym_DOT_DOT, - ACTIONS(4247), 1, - anon_sym_AMP_AMP, - ACTIONS(4003), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4017), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4025), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4029), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(4245), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, - STATE(1687), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4005), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4023), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4019), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147135,20 +147386,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44208] = 23, + [44238] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1081), 1, - anon_sym_RPAREN, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -147160,12 +147409,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4249), 1, - anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -147175,10 +147422,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1688), 2, + ACTIONS(4179), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1698), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -147190,7 +147440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147201,61 +147451,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44297] = 22, + [44325] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4027), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4029), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4031), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4035), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(4041), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4047), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4183), 1, + anon_sym_AMP_AMP, + ACTIONS(4023), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4037), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4045), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4049), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4251), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1689), 2, + ACTIONS(4181), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(1699), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4025), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4043), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(4039), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147266,62 +147516,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44384] = 23, + [44412] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1700), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3867), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(4253), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1690), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3865), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147332,62 +147557,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44473] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44465] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(324), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1701), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3301), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1691), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3299), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147398,18 +147605,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44562] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [44518] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -147421,10 +147635,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4185), 1, + anon_sym_RBRACE, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -147434,13 +147652,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4255), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1692), 2, + STATE(1702), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -147450,59 +147665,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [44649] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4183), 1, - anon_sym_AMP, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1693), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4177), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3847), 6, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3845), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147513,98 +147678,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [44718] = 12, + [44607] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4201), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1694), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4177), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3847), 7, + ACTIONS(4191), 1, anon_sym_CARET, + ACTIONS(4193), 1, anon_sym_AMP, + ACTIONS(4195), 1, anon_sym_PIPE, + ACTIONS(4197), 1, + anon_sym_AMP_AMP, + ACTIONS(4199), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4205), 1, anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, + ACTIONS(4211), 1, anon_sym_DOT_DOT, - ACTIONS(3845), 20, + ACTIONS(3771), 2, anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + anon_sym_LBRACE, + ACTIONS(4187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4201), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4209), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [44785] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1695), 2, + STATE(1703), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, + ACTIONS(4189), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4207), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4203), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147615,67 +147743,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [44838] = 21, + [44694] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4015), 1, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 2, + ACTIONS(4169), 1, + anon_sym_COMMA, + ACTIONS(4215), 1, + anon_sym_RPAREN, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4029), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1696), 2, + STATE(1704), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4257), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4023), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147686,15 +147809,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [44923] = 5, + [44783] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1697), 2, + STATE(1705), 2, sym_line_comment, sym_block_comment, - ACTIONS(3629), 15, + ACTIONS(3623), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147710,7 +147833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3627), 23, + ACTIONS(3621), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147734,15 +147857,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [44976] = 5, + [44836] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1698), 2, + STATE(1706), 2, sym_line_comment, sym_block_comment, - ACTIONS(3455), 15, + ACTIONS(3631), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147758,7 +147881,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3451), 23, + ACTIONS(3629), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147782,45 +147905,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45029] = 14, + [44889] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4181), 1, - anon_sym_CARET, - ACTIONS(4183), 1, - anon_sym_AMP, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1699), 2, + STATE(1707), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3213), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 5, + anon_sym_CARET, + anon_sym_AMP, anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 20, + ACTIONS(3215), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -147839,15 +147952,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [45100] = 5, + anon_sym_as, + [44942] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1700), 2, + STATE(1708), 2, sym_line_comment, sym_block_comment, - ACTIONS(3749), 15, + ACTIONS(3289), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147863,7 +147977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3747), 23, + ACTIONS(3287), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147887,15 +148001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45153] = 5, + [44995] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1701), 2, + STATE(1709), 2, sym_line_comment, sym_block_comment, - ACTIONS(3585), 15, + ACTIONS(3305), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -147911,7 +148025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3583), 23, + ACTIONS(3303), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -147935,54 +148049,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [45206] = 17, + [45048] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4181), 1, - anon_sym_CARET, - ACTIONS(4183), 1, - anon_sym_AMP, - ACTIONS(4185), 1, - anon_sym_PIPE, - ACTIONS(4201), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3847), 2, + ACTIONS(3921), 1, anon_sym_EQ, + ACTIONS(4191), 1, + anon_sym_CARET, + ACTIONS(4193), 1, + anon_sym_AMP, + ACTIONS(4195), 1, + anon_sym_PIPE, + ACTIONS(4197), 1, + anon_sym_AMP_AMP, + ACTIONS(4199), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4211), 1, anon_sym_DOT_DOT, - ACTIONS(4175), 2, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4191), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - STATE(1702), 2, + ACTIONS(4213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1710), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, + ACTIONS(4207), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3845), 16, + ACTIONS(3919), 12, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147993,39 +148113,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [45283] = 5, + [45133] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1703), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4191), 1, anon_sym_CARET, + ACTIONS(4193), 1, anon_sym_AMP, + ACTIONS(4195), 1, anon_sym_PIPE, + ACTIONS(4197), 1, + anon_sym_AMP_AMP, + ACTIONS(4199), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4205), 1, + anon_sym_EQ, + ACTIONS(4211), 1, + anon_sym_DOT_DOT, + ACTIONS(3739), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1711), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4207), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4203), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148036,27 +148178,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45336] = 5, + [45220] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1704), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + STATE(1712), 2, sym_line_comment, sym_block_comment, - ACTIONS(3759), 15, - anon_sym_PLUS, + ACTIONS(4189), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3669), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148065,13 +148209,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3757), 23, + ACTIONS(3665), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148090,36 +148231,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45389] = 5, + [45283] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1705), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4193), 1, + anon_sym_AMP, + ACTIONS(4187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4201), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1713), 2, sym_line_comment, sym_block_comment, - ACTIONS(3597), 15, - anon_sym_PLUS, + ACTIONS(4189), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3669), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3595), 23, + ACTIONS(3665), 20, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148138,39 +148287,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45442] = 8, + [45352] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4201), 1, + ACTIONS(3673), 1, anon_sym_DOT, - STATE(1706), 2, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4201), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1714), 2, sym_line_comment, sym_block_comment, - ACTIONS(3765), 14, - anon_sym_PLUS, + ACTIONS(4189), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3669), 7, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3761), 21, + ACTIONS(3665), 20, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148189,104 +148342,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45501] = 22, + [45419] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4163), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4167), 1, - anon_sym_EQ, - ACTIONS(4215), 1, - anon_sym_DOT_DOT, - ACTIONS(3659), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4125), 2, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4149), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1707), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4151), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4165), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [45588] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4201), 1, - anon_sym_DOT, - STATE(1708), 2, + STATE(1715), 2, sym_line_comment, sym_block_comment, - ACTIONS(3773), 14, - anon_sym_PLUS, + ACTIONS(4189), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3669), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, anon_sym_DOT_DOT, - ACTIONS(3771), 21, + ACTIONS(3665), 20, anon_sym_LPAREN, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148305,36 +148399,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45647] = 5, + [45490] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1709), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3625), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4191), 1, anon_sym_CARET, + ACTIONS(4193), 1, anon_sym_AMP, + ACTIONS(4195), 1, anon_sym_PIPE, + ACTIONS(3669), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3623), 23, + STATE(1716), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4207), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3665), 16, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + anon_sym_LBRACE, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148347,69 +148457,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [45700] = 23, + [45567] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4197), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3669), 2, anon_sym_EQ, - ACTIONS(4033), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(4259), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1710), 2, + STATE(1717), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4207), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3665), 15, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148420,62 +148518,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45789] = 23, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [45646] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(316), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, - anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1711), 2, + STATE(1718), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3669), 9, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3665), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148486,61 +148568,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45878] = 22, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [45711] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3949), 1, + anon_sym_EQ, + ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4197), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4199), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4211), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4261), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1712), 2, + STATE(1719), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4207), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3947), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148551,61 +148638,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [45965] = 22, + [45796] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(3961), 1, + anon_sym_EQ, + ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4197), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4199), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4211), 1, anon_sym_DOT_DOT, - ACTIONS(3897), 2, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4263), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1713), 2, + STATE(1720), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4207), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3959), 12, + anon_sym_LPAREN, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148616,62 +148702,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46052] = 23, + [45881] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(133), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1714), 2, + STATE(1721), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3669), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3665), 20, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148682,55 +148754,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46141] = 18, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [45954] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4181), 1, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(4183), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4185), 1, + ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4187), 1, + ACTIONS(4197), 1, anon_sym_AMP_AMP, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(3847), 2, + ACTIONS(4199), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3913), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4175), 2, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4191), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - STATE(1715), 2, + STATE(1722), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, + ACTIONS(4207), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3845), 15, + ACTIONS(3895), 14, anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148743,15 +148822,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46220] = 5, + [46035] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1716), 2, + STATE(1723), 2, sym_line_comment, sym_block_comment, - ACTIONS(3285), 15, + ACTIONS(3569), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148767,7 +148846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3283), 23, + ACTIONS(3567), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148791,62 +148870,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46273] = 23, + [46088] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1045), 1, - anon_sym_RPAREN, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1724), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3585), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4249), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1717), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3583), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148857,15 +148911,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46362] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46141] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1718), 2, + STATE(1725), 2, sym_line_comment, sym_block_comment, - ACTIONS(997), 15, + ACTIONS(3627), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -148881,7 +148942,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(999), 23, + ACTIONS(3625), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -148905,30 +148966,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46415] = 11, + [46194] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(1719), 2, + STATE(1726), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3627), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -148937,10 +148988,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3845), 20, + ACTIONS(3625), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -148959,62 +149013,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [46480] = 23, + anon_sym_as, + [46247] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(123), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4197), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4199), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(4205), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4211), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(3661), 2, + anon_sym_LPAREN, + anon_sym_LBRACE, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1720), 2, + STATE(1727), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4207), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(4203), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149025,61 +149079,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46569] = 22, + [46334] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4181), 1, + STATE(1728), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3729), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4183), 1, anon_sym_AMP, - ACTIONS(4185), 1, anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_AMP_AMP, - ACTIONS(4189), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4195), 1, + anon_sym_LT_LT, + anon_sym_GT_GT, anon_sym_EQ, - ACTIONS(4201), 1, + anon_sym_GT, + anon_sym_LT, anon_sym_DOT, - ACTIONS(4203), 1, anon_sym_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(3643), 2, + ACTIONS(3727), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4199), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4205), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1721), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4177), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4197), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(4193), 10, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149090,60 +149120,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46656] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46387] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3929), 1, - anon_sym_EQ, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4181), 1, + STATE(1729), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3737), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4183), 1, anon_sym_AMP, - ACTIONS(4185), 1, anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_AMP_AMP, - ACTIONS(4189), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4203), 1, - anon_sym_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4191), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4205), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3735), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1722), 2, + anon_sym_as, + [46440] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1730), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3285), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3927), 12, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3283), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149154,60 +149216,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46741] = 21, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46493] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3933), 1, - anon_sym_EQ, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4181), 1, + STATE(1731), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3745), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4183), 1, anon_sym_AMP, - ACTIONS(4185), 1, anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_AMP_AMP, - ACTIONS(4189), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4203), 1, - anon_sym_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4191), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4205), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3743), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1723), 2, + anon_sym_as, + [46546] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1732), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3769), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3931), 12, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3767), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149218,20 +149312,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46826] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46599] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(326), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -149243,12 +149342,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -149258,10 +149355,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1724), 2, + ACTIONS(4217), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1733), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -149273,7 +149373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149284,15 +149384,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [46915] = 5, + [46686] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1725), 2, + STATE(1734), 2, sym_line_comment, sym_block_comment, - ACTIONS(991), 15, + ACTIONS(3831), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149308,7 +149408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(993), 23, + ACTIONS(3829), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149332,15 +149432,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [46968] = 5, + [46739] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1726), 2, + STATE(1735), 2, sym_line_comment, sym_block_comment, - ACTIONS(3755), 15, + ACTIONS(3843), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149356,7 +149456,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3753), 23, + ACTIONS(3841), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149380,122 +149480,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47021] = 19, + [46792] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4181), 1, - anon_sym_CARET, - ACTIONS(4183), 1, - anon_sym_AMP, - ACTIONS(4185), 1, - anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_AMP_AMP, - ACTIONS(4189), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(380), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4199), 2, - anon_sym_GT, - anon_sym_LT, - STATE(1727), 2, + STATE(1736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3851), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(378), 14, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [47102] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3937), 1, - anon_sym_EQ, - ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4163), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4215), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1728), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4151), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3935), 12, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3849), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149506,15 +149521,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47187] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [46845] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1729), 2, + STATE(1737), 2, sym_line_comment, sym_block_comment, - ACTIONS(3557), 15, + ACTIONS(3855), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149530,7 +149552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3555), 23, + ACTIONS(3853), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149554,15 +149576,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47240] = 5, + [46898] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1730), 2, + STATE(1738), 2, sym_line_comment, sym_block_comment, - ACTIONS(3561), 15, + ACTIONS(3859), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149578,7 +149600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3559), 23, + ACTIONS(3857), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149602,15 +149624,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47293] = 5, + [46951] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1731), 2, + STATE(1739), 2, sym_line_comment, sym_block_comment, - ACTIONS(3565), 15, + ACTIONS(3875), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149626,7 +149648,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3563), 23, + ACTIONS(3873), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149650,60 +149672,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47346] = 21, + [47004] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(342), 1, - anon_sym_EQ, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4181), 1, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(4183), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4185), 1, + ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4187), 1, + ACTIONS(4197), 1, anon_sym_AMP_AMP, - ACTIONS(4189), 1, + ACTIONS(4199), 1, anon_sym_PIPE_PIPE, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4203), 1, + ACTIONS(4205), 1, + anon_sym_EQ, + ACTIONS(4219), 1, + anon_sym_LBRACE, + ACTIONS(4221), 1, anon_sym_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4175), 2, + STATE(388), 1, + sym_match_block, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4191), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4205), 2, + ACTIONS(4223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1732), 2, + STATE(1740), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, + ACTIONS(4207), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(336), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4203), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149714,62 +149738,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47431] = 23, + [47093] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1741), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1546), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4265), 1, - anon_sym_RBRACE, - ACTIONS(4267), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1733), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1548), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149780,15 +149779,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47520] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [47146] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1734), 2, + STATE(1742), 2, sym_line_comment, sym_block_comment, - ACTIONS(3569), 15, + ACTIONS(1404), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149804,7 +149810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3567), 23, + ACTIONS(1402), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149828,15 +149834,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47573] = 5, + [47199] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1735), 2, + STATE(1743), 2, sym_line_comment, sym_block_comment, - ACTIONS(3811), 15, + ACTIONS(1376), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149852,7 +149858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3809), 23, + ACTIONS(1374), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149876,15 +149882,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47626] = 5, + [47252] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1736), 2, + STATE(1744), 2, sym_line_comment, sym_block_comment, - ACTIONS(3573), 15, + ACTIONS(1384), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -149900,7 +149906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3571), 23, + ACTIONS(1382), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -149924,56 +149930,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47679] = 19, + [47305] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(4141), 1, + STATE(1745), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1422), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4163), 1, - anon_sym_PIPE_PIPE, - ACTIONS(380), 2, - anon_sym_EQ, - anon_sym_DOT_DOT, - ACTIONS(4125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - STATE(1737), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4151), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(378), 14, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1420), 23, anon_sym_LPAREN, - anon_sym_LBRACE, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149984,62 +149971,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [47760] = 21, + anon_sym_as, + [47358] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4007), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4009), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4011), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4015), 1, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4021), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4027), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4003), 2, + ACTIONS(3771), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4017), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4025), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4029), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1738), 2, + STATE(1746), 2, sym_line_comment, sym_block_comment, - ACTIONS(4005), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4269), 3, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - ACTIONS(4023), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4019), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150050,15 +150043,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47845] = 5, + [47445] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1739), 2, + STATE(1747), 2, sym_line_comment, sym_block_comment, - ACTIONS(1546), 15, + ACTIONS(3639), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150074,7 +150067,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1548), 23, + ACTIONS(3637), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150098,60 +150091,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [47898] = 21, + [47498] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3953), 1, - anon_sym_EQ, - ACTIONS(4173), 1, + ACTIONS(127), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4181), 1, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4183), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4185), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4187), 1, + ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(4189), 1, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4203), 1, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4175), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4191), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4205), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1740), 2, + STATE(1748), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3951), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150162,37 +150157,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [47983] = 5, + [47587] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1741), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3577), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3921), 1, + anon_sym_EQ, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4141), 1, anon_sym_CARET, + ACTIONS(4143), 1, anon_sym_AMP, + ACTIONS(4145), 1, anon_sym_PIPE, + ACTIONS(4147), 1, + anon_sym_AMP_AMP, + ACTIONS(4149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3575), 23, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1749), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4139), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4153), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3919), 12, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150203,22 +150221,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48036] = 5, + [47672] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1742), 2, + STATE(1750), 2, sym_line_comment, sym_block_comment, - ACTIONS(3669), 15, + ACTIONS(1400), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150234,7 +150245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3667), 23, + ACTIONS(1398), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150258,84 +150269,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48089] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3947), 1, - anon_sym_EQ, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4181), 1, - anon_sym_CARET, - ACTIONS(4183), 1, - anon_sym_AMP, - ACTIONS(4185), 1, - anon_sym_PIPE, - ACTIONS(4187), 1, - anon_sym_AMP_AMP, - ACTIONS(4189), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4203), 1, - anon_sym_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4199), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4205), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1743), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4177), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4197), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3945), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48174] = 23, + [47725] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(320), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -150347,12 +150292,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, + ACTIONS(3739), 2, + anon_sym_RPAREN, + anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -150362,10 +150308,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1744), 2, + STATE(1751), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -150377,7 +150323,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150388,15 +150334,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48263] = 5, + [47812] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1745), 2, + STATE(1752), 2, sym_line_comment, sym_block_comment, - ACTIONS(3665), 15, + ACTIONS(1452), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -150412,7 +150358,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3663), 23, + ACTIONS(1450), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -150436,20 +150382,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [48316] = 5, + [47865] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1746), 2, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4157), 1, + anon_sym_as, + STATE(1753), 2, sym_line_comment, sym_block_comment, - ACTIONS(3869), 15, - anon_sym_PLUS, + ACTIONS(4139), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3669), 11, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150458,13 +150413,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3867), 23, + ACTIONS(3665), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150483,102 +150435,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48369] = 23, + [47928] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1067), 1, - anon_sym_RPAREN, - ACTIONS(3763), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, - anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(3905), 1, - anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4249), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1747), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [48458] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1748), 2, + STATE(1754), 2, sym_line_comment, sym_block_comment, - ACTIONS(3791), 15, - anon_sym_PLUS, + ACTIONS(4139), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3669), 6, anon_sym_CARET, - anon_sym_AMP, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3789), 23, + ACTIONS(3665), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150597,36 +150491,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48511] = 5, + [47997] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1749), 2, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4151), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1755), 2, sym_line_comment, sym_block_comment, - ACTIONS(3879), 15, - anon_sym_PLUS, + ACTIONS(4139), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3669), 7, anon_sym_CARET, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3877), 23, + ACTIONS(3665), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150645,36 +150546,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48564] = 5, + [48064] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1750), 2, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4141), 1, + anon_sym_CARET, + ACTIONS(4143), 1, + anon_sym_AMP, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4151), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + STATE(1756), 2, sym_line_comment, sym_block_comment, - ACTIONS(3883), 15, - anon_sym_PLUS, + ACTIONS(4139), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, + ACTIONS(3669), 5, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3881), 23, + ACTIONS(3665), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150693,36 +150603,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48617] = 5, + [48135] = 17, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1751), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1428), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4141), 1, anon_sym_CARET, + ACTIONS(4143), 1, anon_sym_AMP, + ACTIONS(4145), 1, anon_sym_PIPE, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(3669), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1426), 23, + STATE(1757), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4139), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4153), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3665), 16, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150735,43 +150661,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48670] = 5, + [48212] = 18, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1752), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1436), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4141), 1, anon_sym_CARET, + ACTIONS(4143), 1, anon_sym_AMP, + ACTIONS(4145), 1, anon_sym_PIPE, + ACTIONS(4147), 1, + anon_sym_AMP_AMP, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(3669), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1434), 23, + STATE(1758), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4139), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4153), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3665), 15, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, @@ -150783,27 +150722,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48723] = 5, + [48291] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1753), 2, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(1759), 2, sym_line_comment, sym_block_comment, - ACTIONS(3657), 15, - anon_sym_PLUS, + ACTIONS(4139), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3669), 9, anon_sym_CARET, anon_sym_AMP, anon_sym_PIPE, @@ -150812,13 +150756,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3655), 23, + ACTIONS(3665), 20, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -150837,20 +150778,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [48776] = 23, + [48356] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3949), 1, + anon_sym_EQ, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, ACTIONS(4141), 1, anon_sym_CARET, ACTIONS(4143), 1, @@ -150859,41 +150799,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(4147), 1, anon_sym_AMP_AMP, - ACTIONS(4163), 1, + ACTIONS(4149), 1, anon_sym_PIPE_PIPE, - ACTIONS(4167), 1, - anon_sym_EQ, - ACTIONS(4169), 1, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4271), 1, - anon_sym_LBRACE, - STATE(1667), 1, - sym_match_block, - ACTIONS(4125), 2, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4149), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4171), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1754), 2, + STATE(1760), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4151), 4, + ACTIONS(4153), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4165), 10, + ACTIONS(3947), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150904,61 +150842,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48865] = 22, + [48441] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3961), 1, + anon_sym_EQ, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4147), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4149), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(3643), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1755), 2, + STATE(1761), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4153), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3959), 12, + anon_sym_LPAREN, + anon_sym_EQ_GT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150969,62 +150906,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [48952] = 23, + [48526] = 15, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(131), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1756), 2, + STATE(1762), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3669), 4, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT_DOT, + ACTIONS(3665), 20, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151035,49 +150958,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49041] = 19, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + [48599] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(4181), 1, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(4183), 1, + ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(4185), 1, + ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(4187), 1, + ACTIONS(4147), 1, anon_sym_AMP_AMP, - ACTIONS(4189), 1, + ACTIONS(4149), 1, anon_sym_PIPE_PIPE, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(4157), 1, anon_sym_as, ACTIONS(3913), 2, anon_sym_EQ, anon_sym_DOT_DOT, - ACTIONS(4175), 2, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4191), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - STATE(1757), 2, + STATE(1763), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, + ACTIONS(4153), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, @@ -151097,62 +151026,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [49122] = 23, + [48680] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(139), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1764), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3589), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1758), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(3587), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151163,15 +151067,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49211] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48733] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1759), 2, + STATE(1765), 2, sym_line_comment, sym_block_comment, - ACTIONS(3795), 15, + ACTIONS(3593), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151187,7 +151098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3793), 23, + ACTIONS(3591), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151211,62 +151122,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49264] = 23, + [48786] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1766), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1388), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4249), 1, - anon_sym_COMMA, - ACTIONS(4273), 1, - anon_sym_RPAREN, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1760), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1386), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151277,15 +151163,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49353] = 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [48839] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1761), 2, + STATE(1767), 2, sym_line_comment, sym_block_comment, - ACTIONS(3807), 15, + ACTIONS(1396), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151301,7 +151194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3805), 23, + ACTIONS(1394), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151325,18 +151218,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49406] = 23, + [48892] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -151348,13 +151241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4275), 1, + ACTIONS(3661), 2, anon_sym_RPAREN, - ACTIONS(4277), 1, anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, @@ -151365,10 +151257,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1762), 2, + STATE(1768), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -151380,7 +151272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151391,15 +151283,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [49495] = 5, + [48979] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1763), 2, + STATE(1769), 2, sym_line_comment, sym_block_comment, - ACTIONS(3289), 15, + ACTIONS(1426), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151415,7 +151307,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3287), 23, + ACTIONS(1424), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151439,73 +151331,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49548] = 15, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4181), 1, - anon_sym_CARET, - ACTIONS(4183), 1, - anon_sym_AMP, - ACTIONS(4185), 1, - anon_sym_PIPE, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4175), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4191), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - STATE(1764), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4177), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3847), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3845), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [49621] = 5, + [49032] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1765), 2, + STATE(1770), 2, sym_line_comment, sym_block_comment, - ACTIONS(3857), 15, + ACTIONS(3733), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151521,7 +151355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3855), 23, + ACTIONS(3731), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151545,79 +151379,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49674] = 21, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3929), 1, - anon_sym_EQ, - ACTIONS(4141), 1, - anon_sym_CARET, - ACTIONS(4143), 1, - anon_sym_AMP, - ACTIONS(4145), 1, - anon_sym_PIPE, - ACTIONS(4147), 1, - anon_sym_AMP_AMP, - ACTIONS(4163), 1, - anon_sym_PIPE_PIPE, - ACTIONS(4215), 1, - anon_sym_DOT_DOT, - ACTIONS(4125), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4149), 2, - anon_sym_LT_LT, - anon_sym_GT_GT, - ACTIONS(4153), 2, - anon_sym_GT, - anon_sym_LT, - ACTIONS(4217), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1766), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4127), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(4151), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3927), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [49759] = 5, + [49085] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1767), 2, + STATE(1771), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, + ACTIONS(3581), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151633,7 +151403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1394), 23, + ACTIONS(3579), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151657,15 +151427,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49812] = 5, + [49138] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1768), 2, + STATE(1772), 2, sym_line_comment, sym_block_comment, - ACTIONS(3553), 15, + ACTIONS(1352), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151681,7 +151451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3551), 23, + ACTIONS(1350), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151705,15 +151475,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49865] = 5, + [49191] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1769), 2, + STATE(1773), 2, sym_line_comment, sym_block_comment, - ACTIONS(3837), 15, + ACTIONS(1356), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151729,7 +151499,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3835), 23, + ACTIONS(1354), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151753,15 +151523,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49918] = 5, + [49244] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1770), 2, + STATE(1774), 2, sym_line_comment, sym_block_comment, - ACTIONS(3621), 15, + ACTIONS(1364), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151777,7 +151547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3619), 23, + ACTIONS(1362), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151801,15 +151571,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [49971] = 5, + [49297] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1771), 2, + STATE(1775), 2, sym_line_comment, sym_block_comment, - ACTIONS(3833), 15, + ACTIONS(1380), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151825,7 +151595,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3831), 23, + ACTIONS(1378), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151849,15 +151619,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50024] = 5, + [49350] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1772), 2, + STATE(1776), 2, sym_line_comment, sym_block_comment, - ACTIONS(3301), 15, + ACTIONS(1392), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -151873,7 +151643,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3299), 23, + ACTIONS(1390), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -151897,62 +151667,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50077] = 23, + [49403] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(330), 1, - anon_sym_RBRACE, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1777), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1430), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1773), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3899), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1428), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151963,62 +151708,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50166] = 23, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49456] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, - anon_sym_LBRACK, - ACTIONS(3767), 1, - anon_sym_QMARK, - ACTIONS(3769), 1, - anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + STATE(1778), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(935), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, anon_sym_CARET, - ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, - anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, - anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, - ACTIONS(4279), 1, - anon_sym_RBRACE, - ACTIONS(3897), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + anon_sym_EQ, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(937), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1774), 2, + anon_sym_as, + [49509] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1779), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(967), 15, + anon_sym_PLUS, anon_sym_STAR, + anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - ACTIONS(3919), 10, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(969), 23, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152029,21 +151804,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50255] = 8, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [49562] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, - anon_sym_LBRACK, - ACTIONS(4179), 1, - anon_sym_QMARK, - ACTIONS(4201), 1, - anon_sym_DOT, - STATE(1775), 2, + STATE(1780), 2, sym_line_comment, sym_block_comment, - ACTIONS(3829), 14, + ACTIONS(1368), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152057,10 +151833,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_LT, + anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3827), 21, + ACTIONS(1366), 23, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_EQ_GT, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_PLUS_EQ, @@ -152080,15 +151859,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50314] = 5, + [49615] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1776), 2, + STATE(1781), 2, sym_line_comment, sym_block_comment, - ACTIONS(3613), 15, + ACTIONS(753), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152104,7 +151883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3611), 23, + ACTIONS(755), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152128,18 +151907,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50367] = 23, + [49668] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -152151,14 +151930,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4281), 1, - anon_sym_RBRACE, - ACTIONS(4283), 1, - anon_sym_COMMA, + ACTIONS(4225), 1, + anon_sym_SEMI, + ACTIONS(4227), 1, + anon_sym_else, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -152168,10 +151947,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1777), 2, + STATE(1782), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -152183,7 +151962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152194,62 +151973,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [50456] = 23, + [49757] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(3907), 1, + ACTIONS(4147), 1, anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4149), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, - anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4285), 1, - anon_sym_SEMI, - ACTIONS(4287), 1, - anon_sym_else, - ACTIONS(3897), 2, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(3771), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1778), 2, + STATE(1783), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4153), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(4229), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152259,64 +152037,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_EQ, anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [50545] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1779), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3609), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3607), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50598] = 5, + anon_sym_GT_GT_EQ, + [49844] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1780), 2, + STATE(1784), 2, sym_line_comment, sym_block_comment, - ACTIONS(3593), 15, + ACTIONS(767), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152332,7 +152062,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(3591), 23, + ACTIONS(769), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152356,15 +152086,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50651] = 5, + [49897] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1781), 2, + STATE(1785), 2, sym_line_comment, sym_block_comment, - ACTIONS(1368), 15, + ACTIONS(1444), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152380,7 +152110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1366), 23, + ACTIONS(1442), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152404,37 +152134,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50704] = 5, + [49950] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1782), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3581), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4233), 1, + anon_sym_RBRACE, + ACTIONS(4235), 1, + anon_sym_COMMA, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3579), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1786), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152445,44 +152200,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50757] = 5, + [50039] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1783), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3799), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4141), 1, anon_sym_CARET, + ACTIONS(4143), 1, anon_sym_AMP, + ACTIONS(4145), 1, anon_sym_PIPE, + ACTIONS(4147), 1, + anon_sym_AMP_AMP, + ACTIONS(4149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4159), 1, + anon_sym_DOT_DOT, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(3739), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3797), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4161), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1787), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4139), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4153), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4229), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152493,22 +152265,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [50810] = 5, + [50126] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1784), 2, + STATE(1788), 2, sym_line_comment, sym_block_comment, - ACTIONS(1432), 15, + ACTIONS(771), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152524,7 +152289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1430), 23, + ACTIONS(773), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152548,15 +152313,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50863] = 5, + [50179] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1785), 2, + STATE(1789), 2, sym_line_comment, sym_block_comment, - ACTIONS(1402), 15, + ACTIONS(1322), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152572,7 +152337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1400), 23, + ACTIONS(1320), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152596,21 +152361,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [50916] = 21, + [50232] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3947), 1, - anon_sym_EQ, ACTIONS(4141), 1, anon_sym_CARET, ACTIONS(4143), 1, @@ -152619,37 +152380,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(4147), 1, anon_sym_AMP_AMP, - ACTIONS(4163), 1, + ACTIONS(4149), 1, anon_sym_PIPE_PIPE, - ACTIONS(4215), 1, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4159), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 2, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(3661), 2, + anon_sym_LPAREN, + anon_sym_EQ_GT, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4149), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4217), 2, + ACTIONS(4161), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1786), 2, + STATE(1790), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4151), 4, + ACTIONS(4153), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3945), 12, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(4229), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152660,15 +152426,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51001] = 5, + [50319] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1787), 2, + STATE(1791), 2, sym_line_comment, sym_block_comment, - ACTIONS(1372), 15, + ACTIONS(985), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152684,7 +152450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1370), 23, + ACTIONS(987), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152708,15 +152474,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51054] = 5, + [50372] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1788), 2, + STATE(1792), 2, sym_line_comment, sym_block_comment, - ACTIONS(1326), 15, + ACTIONS(989), 15, anon_sym_PLUS, anon_sym_STAR, anon_sym_DASH, @@ -152732,7 +152498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_DOT, anon_sym_DOT_DOT, - ACTIONS(1324), 23, + ACTIONS(991), 23, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_EQ_GT, @@ -152756,18 +152522,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_as, - [51107] = 23, + [50425] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -152779,14 +152545,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4289), 1, - anon_sym_SEMI, - ACTIONS(4291), 1, - anon_sym_else, + ACTIONS(4237), 1, + anon_sym_RPAREN, + ACTIONS(4239), 1, + anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -152796,10 +152562,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1789), 2, + STATE(1793), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -152811,7 +152577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152822,37 +152588,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51196] = 5, + [50514] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1790), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3817), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(292), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3815), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1794), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152863,44 +152654,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51249] = 5, + [50603] = 18, + ACTIONS(29), 1, + anon_sym_LT, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1791), 2, + ACTIONS(4241), 1, + sym_identifier, + ACTIONS(4243), 1, + anon_sym_LBRACE, + ACTIONS(4245), 1, + anon_sym_RBRACE, + ACTIONS(4247), 1, + anon_sym_STAR, + ACTIONS(4251), 1, + anon_sym_COMMA, + ACTIONS(4253), 1, + anon_sym_COLON_COLON, + ACTIONS(4257), 1, + sym_metavariable, + STATE(2488), 1, + sym_scoped_identifier, + STATE(2852), 1, + sym__use_clause, + STATE(3374), 1, + sym_generic_type_with_turbofish, + STATE(3495), 1, + sym_bracketed_type, + STATE(1795), 2, sym_line_comment, sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(4255), 3, + sym_self, + sym_super, + sym_crate, + STATE(2966), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4249), 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, + [50682] = 23, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4191), 1, anon_sym_CARET, + ACTIONS(4193), 1, anon_sym_AMP, + ACTIONS(4195), 1, anon_sym_PIPE, + ACTIONS(4197), 1, + anon_sym_AMP_AMP, + ACTIONS(4199), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4205), 1, + anon_sym_EQ, + ACTIONS(4221), 1, + anon_sym_DOT_DOT, + ACTIONS(4259), 1, + anon_sym_LBRACE, + STATE(1130), 1, + sym_match_block, + ACTIONS(4187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1796), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4207), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4203), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152911,44 +152781,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51302] = 5, + [50771] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1792), 2, + ACTIONS(294), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1797), 2, sym_line_comment, sym_block_comment, - ACTIONS(1444), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [50860] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1442), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4261), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1798), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152959,69 +152912,127 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [50947] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4263), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1799), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51355] = 23, + ACTIONS(3929), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [51034] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(1051), 1, + anon_sym_RPAREN, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4141), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(4163), 1, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4167), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4169), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4293), 1, - anon_sym_LBRACE, - STATE(1303), 1, - sym_match_block, - ACTIONS(4125), 2, + ACTIONS(4169), 1, + anon_sym_COMMA, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4149), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4171), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1793), 2, + STATE(1800), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4151), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4165), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153032,18 +153043,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51444] = 23, + [51123] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -153055,13 +153066,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4295), 1, + ACTIONS(4265), 1, anon_sym_SEMI, - ACTIONS(4297), 1, + ACTIONS(4267), 1, anon_sym_else, ACTIONS(3897), 2, anon_sym_PLUS, @@ -153072,10 +153083,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1794), 2, + STATE(1801), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -153087,7 +153098,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153098,18 +153109,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51533] = 22, + [51212] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(296), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -153121,13 +153134,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(3855), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4125), 1, + anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -153137,10 +153149,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1795), 2, + STATE(1802), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -153152,7 +153164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153163,133 +153175,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51620] = 5, + [51301] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1796), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3645), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1168), 1, + anon_sym_RPAREN, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3643), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3907), 1, anon_sym_AMP_AMP, + ACTIONS(3909), 1, 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51673] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1797), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3213), 15, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4169), 1, + anon_sym_COMMA, + ACTIONS(3897), 2, anon_sym_PLUS, - anon_sym_STAR, anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3215), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51726] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1798), 2, + STATE(1803), 2, sym_line_comment, sym_block_comment, - ACTIONS(957), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(959), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153300,67 +153241,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51779] = 21, + [51390] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3937), 1, - anon_sym_EQ, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4181), 1, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4183), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4185), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4187), 1, + ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(4189), 1, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4203), 1, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4175), 2, + ACTIONS(4269), 1, + anon_sym_SEMI, + ACTIONS(4271), 1, + anon_sym_else, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4191), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4205), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1799), 2, + STATE(1804), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3935), 12, - anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153371,85 +153307,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [51864] = 5, + [51479] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1800), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(817), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4273), 1, + anon_sym_RBRACE, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(819), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51917] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1801), 2, + STATE(1805), 2, sym_line_comment, sym_block_comment, - ACTIONS(1452), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1450), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153460,92 +153373,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [51970] = 5, + [51568] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1802), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1398), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(1059), 1, + anon_sym_RPAREN, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4169), 1, + anon_sym_COMMA, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1396), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52023] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1803), 2, + STATE(1806), 2, sym_line_comment, sym_block_comment, - ACTIONS(3601), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3599), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153556,68 +153439,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52076] = 22, + [51657] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4141), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(4163), 1, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4167), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4215), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(3643), 2, - anon_sym_LPAREN, - anon_sym_LBRACE, - ACTIONS(4125), 2, + ACTIONS(4169), 1, + anon_sym_COMMA, + ACTIONS(4275), 1, + anon_sym_RPAREN, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4149), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4217), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1804), 2, + STATE(1807), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4151), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4165), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153628,18 +153505,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52163] = 23, + [51746] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -153651,13 +153528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4299), 1, + ACTIONS(4277), 1, anon_sym_SEMI, - ACTIONS(4301), 1, + ACTIONS(4279), 1, anon_sym_else, ACTIONS(3897), 2, anon_sym_PLUS, @@ -153668,10 +153545,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1805), 2, + STATE(1808), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -153683,48 +153560,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [52252] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1806), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1360), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1358), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153735,25 +153571,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52305] = 23, + [51835] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -153765,14 +153594,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4249), 1, - anon_sym_COMMA, - ACTIONS(4303), 1, - anon_sym_RPAREN, + ACTIONS(4281), 1, + anon_sym_SEMI, + ACTIONS(4283), 1, + anon_sym_else, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -153782,10 +153611,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1807), 2, + STATE(1809), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -153797,7 +153626,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153808,85 +153637,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52394] = 5, + [51924] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1808), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(785), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(300), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(787), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52447] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1809), 2, + STATE(1810), 2, sym_line_comment, sym_block_comment, - ACTIONS(3715), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3713), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153897,44 +153703,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52500] = 5, + [52013] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1810), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3825), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4191), 1, anon_sym_CARET, + ACTIONS(4193), 1, anon_sym_AMP, + ACTIONS(4195), 1, anon_sym_PIPE, + ACTIONS(4197), 1, + anon_sym_AMP_AMP, + ACTIONS(4199), 1, + anon_sym_PIPE_PIPE, + ACTIONS(370), 2, + anon_sym_EQ, + anon_sym_DOT_DOT, + ACTIONS(4187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3823), 23, + STATE(1811), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4207), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(368), 14, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153945,44 +153763,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52553] = 5, + [52094] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1811), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3589), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(342), 1, + anon_sym_EQ, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4191), 1, anon_sym_CARET, + ACTIONS(4193), 1, anon_sym_AMP, + ACTIONS(4195), 1, anon_sym_PIPE, + ACTIONS(4197), 1, + anon_sym_AMP_AMP, + ACTIONS(4199), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4211), 1, + anon_sym_DOT_DOT, + ACTIONS(4187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3587), 23, + ACTIONS(4213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1812), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4207), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(336), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153993,68 +153829,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52606] = 22, + [52179] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4181), 1, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(4183), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4185), 1, + ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4187), 1, + ACTIONS(4197), 1, anon_sym_AMP_AMP, - ACTIONS(4189), 1, + ACTIONS(4199), 1, anon_sym_PIPE_PIPE, - ACTIONS(4195), 1, + ACTIONS(4205), 1, anon_sym_EQ, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4203), 1, + ACTIONS(4221), 1, anon_sym_DOT_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(3855), 2, - anon_sym_LPAREN, - anon_sym_EQ_GT, - ACTIONS(4175), 2, + ACTIONS(4285), 1, + anon_sym_LBRACE, + STATE(460), 1, + sym_match_block, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4191), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4205), 2, + ACTIONS(4223), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1812), 2, + STATE(1813), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, + ACTIONS(4207), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4193), 10, + ACTIONS(4203), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154065,37 +153895,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52693] = 5, + [52268] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1813), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(777), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3935), 1, + anon_sym_EQ, + ACTIONS(4191), 1, anon_sym_CARET, + ACTIONS(4193), 1, anon_sym_AMP, + ACTIONS(4195), 1, anon_sym_PIPE, + ACTIONS(4197), 1, + anon_sym_AMP_AMP, + ACTIONS(4199), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4211), 1, + anon_sym_DOT_DOT, + ACTIONS(4187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(779), 23, + ACTIONS(4213), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1814), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4207), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3933), 12, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_LBRACE, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154106,65 +153959,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52746] = 21, + [52353] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(3933), 1, + ACTIONS(3957), 1, anon_sym_EQ, - ACTIONS(4141), 1, + ACTIONS(4191), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(4193), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(4195), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(4197), 1, anon_sym_AMP_AMP, - ACTIONS(4163), 1, + ACTIONS(4199), 1, anon_sym_PIPE_PIPE, - ACTIONS(4215), 1, + ACTIONS(4211), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 2, + ACTIONS(4187), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4149), 2, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4217), 2, + ACTIONS(4213), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1814), 2, + STATE(1815), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(4189), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4151), 4, + ACTIONS(4207), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3931), 12, + ACTIONS(3955), 12, anon_sym_LPAREN, anon_sym_LBRACE, anon_sym_PLUS_EQ, @@ -154177,20 +154023,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52831] = 23, + [52438] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(149), 1, + ACTIONS(302), 1, anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -154202,11 +154048,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, + ACTIONS(4125), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -154217,10 +154063,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1815), 2, + STATE(1816), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -154232,7 +154078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154243,85 +154089,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [52920] = 5, + [52527] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1816), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3633), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3631), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [52973] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, + ACTIONS(4287), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(1817), 2, sym_line_comment, sym_block_comment, - ACTIONS(3719), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3717), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154332,55 +154154,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53026] = 15, + [52614] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4141), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4125), 2, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4149), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4289), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(1818), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3847), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3845), 20, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154391,91 +154219,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [53099] = 5, + [52701] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1819), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3549), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(304), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3547), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53152] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1820), 2, + STATE(1819), 2, sym_line_comment, sym_block_comment, - ACTIONS(3637), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3635), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154486,44 +154285,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53205] = 5, + [52790] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1821), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1420), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4291), 1, + anon_sym_RBRACE, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1418), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1820), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154534,27 +154351,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53258] = 23, + [52879] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(328), 1, + ACTIONS(308), 1, anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -154566,11 +154376,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, + ACTIONS(4125), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -154581,10 +154391,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1822), 2, + STATE(1821), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -154596,7 +154406,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154607,37 +154417,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53347] = 5, + [52968] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1823), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3661), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(4191), 1, anon_sym_CARET, + ACTIONS(4193), 1, anon_sym_AMP, + ACTIONS(4195), 1, anon_sym_PIPE, + ACTIONS(4197), 1, + anon_sym_AMP_AMP, + ACTIONS(4199), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4205), 1, + anon_sym_EQ, + ACTIONS(4221), 1, + anon_sym_DOT_DOT, + ACTIONS(4293), 1, + anon_sym_LBRACE, + STATE(1750), 1, + sym_match_block, + ACTIONS(4187), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4201), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(4209), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3659), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4223), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1822), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4189), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4207), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4203), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154648,27 +154483,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53400] = 23, + [53057] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(310), 1, anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -154680,11 +154508,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, + ACTIONS(4125), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -154695,10 +154523,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1824), 2, + STATE(1823), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -154710,7 +154538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154721,37 +154549,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53489] = 5, + [53146] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1825), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1392), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(312), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1394), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1824), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154762,27 +154615,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53542] = 23, + [53235] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1190), 1, - anon_sym_RPAREN, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -154794,12 +154638,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4249), 1, - anon_sym_COMMA, + ACTIONS(4295), 1, + anon_sym_SEMI, + ACTIONS(4297), 1, + anon_sym_else, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -154809,10 +154655,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1826), 2, + STATE(1825), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -154824,7 +154670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154835,18 +154681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53631] = 23, + [53324] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(316), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -154858,14 +154706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4305), 1, - anon_sym_RPAREN, - ACTIONS(4307), 1, - anon_sym_COMMA, + ACTIONS(4125), 1, + anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -154875,10 +154721,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1827), 2, + STATE(1826), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -154890,7 +154736,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154901,85 +154747,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53720] = 5, + [53413] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1828), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3787), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(318), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3785), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53773] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1829), 2, + STATE(1827), 2, sym_line_comment, sym_block_comment, - ACTIONS(3821), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3819), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154990,27 +154813,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53826] = 23, + [53502] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(332), 1, + ACTIONS(320), 1, anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155022,11 +154838,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, + ACTIONS(4125), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -155037,10 +154853,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1830), 2, + STATE(1828), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -155052,7 +154868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155063,85 +154879,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [53915] = 5, + [53591] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1831), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3313), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4299), 1, + anon_sym_RBRACE, + ACTIONS(4301), 1, + anon_sym_COMMA, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3311), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_as, - [53968] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1832), 2, + STATE(1829), 2, sym_line_comment, sym_block_comment, - ACTIONS(3641), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3639), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155152,25 +154945,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [54021] = 23, + [53680] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155182,13 +154968,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, + ACTIONS(4125), 1, anon_sym_SEMI, - ACTIONS(4309), 1, + ACTIONS(4303), 1, anon_sym_RBRACE, ACTIONS(3897), 2, anon_sym_PLUS, @@ -155199,10 +154985,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1833), 2, + STATE(1830), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -155214,7 +155000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155225,20 +155011,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54110] = 23, + [53769] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(314), 1, + ACTIONS(324), 1, anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155250,11 +155036,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, + ACTIONS(4125), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -155265,10 +155051,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1834), 2, + STATE(1831), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -155280,7 +155066,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155291,18 +155077,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54199] = 22, + [53858] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(326), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155314,10 +155102,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -155327,13 +155117,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4311), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1835), 2, + STATE(1832), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -155345,48 +155132,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - [54286] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1836), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3853), 15, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(3851), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155397,27 +155143,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [54339] = 23, + [53947] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(318), 1, + ACTIONS(328), 1, anon_sym_RBRACE, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155429,11 +155168,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, + ACTIONS(4125), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -155444,10 +155183,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1837), 2, + STATE(1833), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -155459,7 +155198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155470,89 +155209,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54428] = 9, + [54036] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4201), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(3675), 1, anon_sym_as, - STATE(1838), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3847), 14, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_DASH, - anon_sym_SLASH, - anon_sym_PERCENT, + ACTIONS(3901), 1, anon_sym_CARET, + ACTIONS(3903), 1, anon_sym_AMP, + ACTIONS(3905), 1, anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4305), 1, + anon_sym_RBRACE, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - anon_sym_EQ, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - anon_sym_DOT_DOT, - ACTIONS(3845), 20, - anon_sym_LPAREN, - anon_sym_EQ_GT, - 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_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_LT_LT_EQ, - anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - [54489] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1839), 2, + STATE(1834), 2, sym_line_comment, sym_block_comment, - ACTIONS(1364), 15, - anon_sym_PLUS, + ACTIONS(3899), 3, anon_sym_STAR, - anon_sym_DASH, anon_sym_SLASH, anon_sym_PERCENT, - anon_sym_CARET, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_LT_LT, - anon_sym_GT_GT, - anon_sym_EQ, - anon_sym_GT, - anon_sym_LT, - anon_sym_DOT, - anon_sym_DOT_DOT, - ACTIONS(1362), 23, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155563,25 +155275,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_GT_EQ, - anon_sym_LT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_as, - [54542] = 22, + [54125] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(332), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155593,10 +155300,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, + ACTIONS(4125), 1, + anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -155606,13 +155315,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4313), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(1840), 2, + STATE(1835), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -155624,7 +155330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155635,56 +155341,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54629] = 19, + [54214] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(121), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4141), 1, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4143), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4145), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4147), 1, + ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(4163), 1, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3913), 2, + ACTIONS(3931), 1, anon_sym_EQ, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4125), 2, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4149), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4153), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - STATE(1841), 2, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1836), 2, sym_line_comment, sym_block_comment, - ACTIONS(4127), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4151), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3895), 14, - anon_sym_LPAREN, - anon_sym_LBRACE, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155695,20 +155407,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - [54710] = 22, + [54303] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(117), 1, + anon_sym_RBRACE, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155720,12 +155432,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4315), 1, - anon_sym_RBRACK, + ACTIONS(4125), 1, + anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -155735,10 +155447,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1842), 2, + STATE(1837), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -155750,7 +155462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155761,18 +155473,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54796] = 22, + [54392] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155784,12 +155496,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4317), 1, - anon_sym_RBRACK, + ACTIONS(4125), 1, + anon_sym_SEMI, + ACTIONS(4307), 1, + anon_sym_RBRACE, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -155799,10 +155513,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1843), 2, + STATE(1838), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -155814,7 +155528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155825,18 +155539,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54882] = 22, + [54481] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155848,12 +155562,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4249), 1, - anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -155863,10 +155575,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1844), 2, + ACTIONS(4309), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(1839), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -155878,7 +155593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155889,18 +155604,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [54968] = 22, + [54568] = 23, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155912,12 +155627,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4319), 1, - anon_sym_SEMI, + ACTIONS(4311), 1, + anon_sym_RPAREN, + ACTIONS(4313), 1, + anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -155927,10 +155644,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1845), 2, + STATE(1840), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -155942,7 +155659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155953,18 +155670,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55054] = 22, + [54657] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + STATE(1841), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(1372), 15, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_DASH, + anon_sym_SLASH, + anon_sym_PERCENT, + anon_sym_CARET, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_LT_LT, + anon_sym_GT_GT, + anon_sym_EQ, + anon_sym_GT, + anon_sym_LT, + anon_sym_DOT, + anon_sym_DOT_DOT, + ACTIONS(1370), 23, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(3767), 1, + anon_sym_EQ_GT, anon_sym_QMARK, - ACTIONS(3769), 1, + 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_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_as, + [54710] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -155976,11 +155741,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4321), 1, + ACTIONS(4315), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -155991,10 +155756,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1846), 2, + STATE(1842), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156006,7 +155771,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156017,59 +155782,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55140] = 21, + [54796] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4181), 1, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4183), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4185), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4189), 1, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4195), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4201), 1, - anon_sym_DOT, - ACTIONS(4207), 1, - anon_sym_as, - ACTIONS(4323), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4175), 2, + ACTIONS(4317), 1, + anon_sym_RBRACK, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4191), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4269), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4325), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1847), 2, + STATE(1843), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4193), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156080,18 +155846,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55224] = 22, + [54882] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156103,12 +155869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4131), 1, - anon_sym_SEMI, + ACTIONS(4319), 1, + anon_sym_RBRACK, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -156118,10 +155884,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1848), 2, + STATE(1844), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156133,7 +155899,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156144,18 +155910,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55310] = 22, + [54968] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156167,11 +155933,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4327), 1, + ACTIONS(4125), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -156182,10 +155948,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1849), 2, + STATE(1845), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156197,7 +155963,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156208,60 +155974,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55396] = 22, + [55054] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4241), 1, + sym_identifier, + ACTIONS(4243), 1, + anon_sym_LBRACE, + ACTIONS(4247), 1, + anon_sym_STAR, + ACTIONS(4253), 1, + anon_sym_COLON_COLON, + ACTIONS(4257), 1, + sym_metavariable, + ACTIONS(4321), 1, + anon_sym_RBRACE, + STATE(2488), 1, + sym_scoped_identifier, + STATE(3073), 1, + sym__use_clause, + STATE(3374), 1, + sym_generic_type_with_turbofish, + STATE(3495), 1, + sym_bracketed_type, + STATE(1846), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4255), 3, + sym_self, + sym_super, + sym_crate, + STATE(2966), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4249), 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, + [55130] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4149), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4231), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4323), 1, anon_sym_DOT_DOT, - ACTIONS(4329), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + ACTIONS(4129), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4325), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1850), 2, + STATE(1847), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4153), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(4229), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156272,18 +156096,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55482] = 22, + [55214] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156295,12 +156119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4331), 1, - anon_sym_SEMI, + ACTIONS(4169), 1, + anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -156310,10 +156134,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1851), 2, + STATE(1848), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156325,7 +156149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156336,18 +156160,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55568] = 22, + [55300] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156359,11 +156183,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4333), 1, + ACTIONS(4327), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -156374,10 +156198,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1852), 2, + STATE(1849), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156389,7 +156213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156400,18 +156224,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55654] = 22, + [55386] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156423,11 +156247,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4335), 1, + ACTIONS(4329), 1, anon_sym_RBRACK, ACTIONS(3897), 2, anon_sym_PLUS, @@ -156438,10 +156262,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1853), 2, + STATE(1850), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156453,7 +156277,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156464,18 +156288,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55740] = 22, + [55472] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156487,12 +156311,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4337), 1, - anon_sym_SEMI, + ACTIONS(4331), 1, + anon_sym_RBRACK, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -156502,10 +156326,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1854), 2, + STATE(1851), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156517,7 +156341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156528,18 +156352,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55826] = 22, + [55558] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156551,12 +156375,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4339), 1, - anon_sym_SEMI, + ACTIONS(4333), 1, + anon_sym_RBRACK, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -156566,10 +156390,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1855), 2, + STATE(1852), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156581,7 +156405,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156592,18 +156416,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55912] = 22, + [55644] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156615,12 +156439,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4341), 1, - anon_sym_SEMI, + ACTIONS(4335), 1, + anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -156630,10 +156454,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1856), 2, + STATE(1853), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156645,7 +156469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156656,18 +156480,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [55998] = 22, + [55730] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156679,12 +156503,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4343), 1, - anon_sym_RBRACK, + ACTIONS(4337), 1, + anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -156694,10 +156518,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1857), 2, + STATE(1854), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156709,7 +156533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156720,119 +156544,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56084] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [55816] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4223), 1, - sym_identifier, - ACTIONS(4225), 1, - anon_sym_LBRACE, - ACTIONS(4229), 1, - anon_sym_STAR, - ACTIONS(4235), 1, - anon_sym_COLON_COLON, - ACTIONS(4239), 1, - sym_metavariable, - ACTIONS(4345), 1, - anon_sym_RBRACE, - STATE(2420), 1, - sym_scoped_identifier, - STATE(3207), 1, - sym__use_clause, - STATE(3357), 1, - sym_generic_type_with_turbofish, - STATE(3515), 1, - sym_bracketed_type, - STATE(1858), 2, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4339), 1, + anon_sym_RBRACK, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1855), 2, sym_line_comment, sym_block_comment, - ACTIONS(4237), 3, - sym_self, - sym_super, - sym_crate, - STATE(2877), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4231), 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, - [56160] = 22, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [55902] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4181), 1, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4183), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4185), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4189), 1, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4195), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4201), 1, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4341), 1, + anon_sym_RBRACK, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1856), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [55988] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4245), 1, - anon_sym_EQ_GT, - ACTIONS(4323), 1, - anon_sym_DOT_DOT, - ACTIONS(4347), 1, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3907), 1, anon_sym_AMP_AMP, - ACTIONS(4175), 2, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4343), 1, + anon_sym_RBRACK, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4191), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4325), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1859), 2, + STATE(1857), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4193), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156843,18 +156736,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56246] = 22, + [56074] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156866,12 +156759,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4349), 1, - anon_sym_RBRACK, + ACTIONS(4345), 1, + anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -156881,10 +156774,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1860), 2, + STATE(1858), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156896,7 +156789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156907,18 +156800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56332] = 22, + [56160] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156930,11 +156823,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4351), 1, + ACTIONS(4347), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -156945,10 +156838,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1861), 2, + STATE(1859), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -156960,7 +156853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156971,18 +156864,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56418] = 22, + [56246] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -156994,12 +156887,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4353), 1, - anon_sym_COMMA, + ACTIONS(4349), 1, + anon_sym_RBRACK, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -157009,10 +156902,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1862), 2, + STATE(1860), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157024,7 +156917,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157035,18 +156928,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56504] = 22, + [56332] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -157058,11 +156951,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4355), 1, + ACTIONS(4351), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -157073,10 +156966,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1863), 2, + STATE(1861), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157088,7 +156981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157099,18 +156992,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56590] = 22, + [56418] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -157122,12 +157015,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4357), 1, - anon_sym_RBRACK, + ACTIONS(4353), 1, + anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -157137,10 +157030,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1864), 2, + STATE(1862), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157152,7 +157045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157163,18 +157056,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56676] = 22, + [56504] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -157186,11 +157079,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4359), 1, + ACTIONS(4355), 1, anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, @@ -157201,10 +157094,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1865), 2, + STATE(1863), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157216,7 +157109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157227,18 +157120,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56762] = 22, + [56590] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -157250,12 +157143,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4361), 1, - anon_sym_RBRACK, + ACTIONS(4357), 1, + anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -157265,10 +157158,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1866), 2, + STATE(1864), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157280,7 +157173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157291,77 +157184,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [56848] = 17, - ACTIONS(29), 1, - anon_sym_LT, + [56676] = 21, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4223), 1, - sym_identifier, - ACTIONS(4225), 1, - anon_sym_LBRACE, - ACTIONS(4229), 1, - anon_sym_STAR, - ACTIONS(4235), 1, - anon_sym_COLON_COLON, - ACTIONS(4239), 1, - sym_metavariable, - ACTIONS(4363), 1, - anon_sym_RBRACE, - STATE(2420), 1, - sym_scoped_identifier, - STATE(3207), 1, - sym__use_clause, - STATE(3357), 1, - sym_generic_type_with_turbofish, - STATE(3515), 1, - sym_bracketed_type, - STATE(1867), 2, + ACTIONS(4131), 1, + anon_sym_LBRACK, + ACTIONS(4133), 1, + anon_sym_QMARK, + ACTIONS(4135), 1, + anon_sym_DOT, + ACTIONS(4141), 1, + anon_sym_CARET, + ACTIONS(4143), 1, + anon_sym_AMP, + ACTIONS(4145), 1, + anon_sym_PIPE, + ACTIONS(4149), 1, + anon_sym_PIPE_PIPE, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4231), 1, + anon_sym_EQ, + ACTIONS(4323), 1, + anon_sym_DOT_DOT, + ACTIONS(4137), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4151), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(4155), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4171), 2, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + ACTIONS(4325), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1865), 2, sym_line_comment, sym_block_comment, - ACTIONS(4237), 3, - sym_self, - sym_super, - sym_crate, - STATE(2877), 4, - sym_scoped_use_list, - sym_use_list, - sym_use_as_clause, - sym_use_wildcard, - ACTIONS(4231), 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, - [56924] = 22, + ACTIONS(4139), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(4153), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(4229), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [56760] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -157373,11 +157270,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4365), 1, + ACTIONS(4359), 1, anon_sym_RBRACK, ACTIONS(3897), 2, anon_sym_PLUS, @@ -157388,10 +157285,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1868), 2, + STATE(1866), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157403,7 +157300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157414,18 +157311,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57010] = 22, + [56846] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -157437,11 +157334,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4367), 1, + ACTIONS(4361), 1, anon_sym_RBRACK, ACTIONS(3897), 2, anon_sym_PLUS, @@ -157452,10 +157349,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1869), 2, + STATE(1867), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157467,7 +157364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157478,59 +157375,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57096] = 21, + [56932] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4173), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(4179), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(4181), 1, + ACTIONS(3673), 1, + anon_sym_DOT, + ACTIONS(3675), 1, + anon_sym_as, + ACTIONS(3901), 1, anon_sym_CARET, - ACTIONS(4183), 1, + ACTIONS(3903), 1, anon_sym_AMP, - ACTIONS(4185), 1, + ACTIONS(3905), 1, anon_sym_PIPE, - ACTIONS(4189), 1, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(4195), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4201), 1, + ACTIONS(4005), 1, + anon_sym_DOT_DOT, + ACTIONS(4363), 1, + anon_sym_SEMI, + ACTIONS(3897), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3911), 2, + anon_sym_LT_LT, + anon_sym_GT_GT, + ACTIONS(3917), 2, + anon_sym_GT, + anon_sym_LT, + ACTIONS(4007), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1868), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3899), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PERCENT, + ACTIONS(3915), 4, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_GT_EQ, + anon_sym_LT_EQ, + ACTIONS(3929), 10, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_LT_LT_EQ, + anon_sym_GT_GT_EQ, + [57018] = 22, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3667), 1, + anon_sym_LBRACK, + ACTIONS(3671), 1, + anon_sym_QMARK, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(4207), 1, + ACTIONS(3675), 1, anon_sym_as, - ACTIONS(4323), 1, + ACTIONS(3901), 1, + anon_sym_CARET, + ACTIONS(3903), 1, + anon_sym_AMP, + ACTIONS(3905), 1, + anon_sym_PIPE, + ACTIONS(3907), 1, + anon_sym_AMP_AMP, + ACTIONS(3909), 1, + anon_sym_PIPE_PIPE, + ACTIONS(3931), 1, + anon_sym_EQ, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4175), 2, + ACTIONS(4365), 1, + anon_sym_SEMI, + ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4191), 2, + ACTIONS(3911), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(4199), 2, + ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4257), 2, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - ACTIONS(4325), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1870), 2, + STATE(1869), 2, sym_line_comment, sym_block_comment, - ACTIONS(4177), 3, + ACTIONS(3899), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(4197), 4, + ACTIONS(3915), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(4193), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157541,18 +157503,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57180] = 22, + [57104] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -157564,12 +157526,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4369), 1, - anon_sym_COMMA, + ACTIONS(4367), 1, + anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -157579,10 +157541,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1871), 2, + STATE(1870), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157594,7 +157556,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157605,18 +157567,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57266] = 22, + [57190] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -157628,12 +157590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4371), 1, - anon_sym_RBRACK, + ACTIONS(4369), 1, + anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -157643,10 +157605,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1872), 2, + STATE(1871), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157658,7 +157620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157669,18 +157631,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57352] = 22, + [57276] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -157692,12 +157654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4373), 1, - anon_sym_RBRACK, + ACTIONS(4371), 1, + anon_sym_SEMI, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -157707,10 +157669,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1873), 2, + STATE(1872), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157722,7 +157684,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157733,18 +157695,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, - [57438] = 22, + [57362] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(3667), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(3671), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(3673), 1, anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(3675), 1, anon_sym_as, ACTIONS(3901), 1, anon_sym_CARET, @@ -157756,12 +157718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(3909), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(3931), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4005), 1, anon_sym_DOT_DOT, - ACTIONS(4375), 1, - anon_sym_SEMI, + ACTIONS(4373), 1, + anon_sym_COMMA, ACTIONS(3897), 2, anon_sym_PLUS, anon_sym_DASH, @@ -157771,10 +157733,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3917), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4007), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1874), 2, + STATE(1873), 2, sym_line_comment, sym_block_comment, ACTIONS(3899), 3, @@ -157786,7 +157748,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(3929), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157797,60 +157759,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PIPE_EQ, anon_sym_LT_LT_EQ, anon_sym_GT_GT_EQ, + [57448] = 17, + ACTIONS(29), 1, + anon_sym_LT, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4241), 1, + sym_identifier, + ACTIONS(4243), 1, + anon_sym_LBRACE, + ACTIONS(4247), 1, + anon_sym_STAR, + ACTIONS(4253), 1, + anon_sym_COLON_COLON, + ACTIONS(4257), 1, + sym_metavariable, + ACTIONS(4375), 1, + anon_sym_RBRACE, + STATE(2488), 1, + sym_scoped_identifier, + STATE(3073), 1, + sym__use_clause, + STATE(3374), 1, + sym_generic_type_with_turbofish, + STATE(3495), 1, + sym_bracketed_type, + STATE(1874), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4255), 3, + sym_self, + sym_super, + sym_crate, + STATE(2966), 4, + sym_scoped_use_list, + sym_use_list, + sym_use_as_clause, + sym_use_wildcard, + ACTIONS(4249), 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, [57524] = 22, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3763), 1, + ACTIONS(4131), 1, anon_sym_LBRACK, - ACTIONS(3767), 1, + ACTIONS(4133), 1, anon_sym_QMARK, - ACTIONS(3769), 1, + ACTIONS(4135), 1, anon_sym_DOT, - ACTIONS(3849), 1, - anon_sym_as, - ACTIONS(3901), 1, + ACTIONS(4141), 1, anon_sym_CARET, - ACTIONS(3903), 1, + ACTIONS(4143), 1, anon_sym_AMP, - ACTIONS(3905), 1, + ACTIONS(4145), 1, anon_sym_PIPE, - ACTIONS(3907), 1, - anon_sym_AMP_AMP, - ACTIONS(3909), 1, + ACTIONS(4149), 1, anon_sym_PIPE_PIPE, - ACTIONS(3921), 1, + ACTIONS(4157), 1, + anon_sym_as, + ACTIONS(4181), 1, + anon_sym_EQ_GT, + ACTIONS(4231), 1, anon_sym_EQ, - ACTIONS(4033), 1, + ACTIONS(4323), 1, anon_sym_DOT_DOT, ACTIONS(4377), 1, - anon_sym_COMMA, - ACTIONS(3897), 2, + anon_sym_AMP_AMP, + ACTIONS(4137), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3911), 2, + ACTIONS(4151), 2, anon_sym_LT_LT, anon_sym_GT_GT, - ACTIONS(3917), 2, + ACTIONS(4155), 2, anon_sym_GT, anon_sym_LT, - ACTIONS(4035), 2, + ACTIONS(4325), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1875), 2, sym_line_comment, sym_block_comment, - ACTIONS(3899), 3, + ACTIONS(4139), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_PERCENT, - ACTIONS(3915), 4, + ACTIONS(4153), 4, anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_GT_EQ, anon_sym_LT_EQ, - ACTIONS(3919), 10, + ACTIONS(4229), 10, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157868,37 +157889,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4223), 1, + ACTIONS(4241), 1, sym_identifier, - ACTIONS(4225), 1, + ACTIONS(4243), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4247), 1, anon_sym_STAR, - ACTIONS(4235), 1, + ACTIONS(4253), 1, anon_sym_COLON_COLON, - ACTIONS(4239), 1, + ACTIONS(4257), 1, sym_metavariable, - STATE(2420), 1, + STATE(2488), 1, sym_scoped_identifier, - STATE(3357), 1, + STATE(3374), 1, sym_generic_type_with_turbofish, - STATE(3515), 1, - sym_bracketed_type, - STATE(3572), 1, + STATE(3487), 1, sym__use_clause, + STATE(3495), 1, + sym_bracketed_type, STATE(1876), 2, sym_line_comment, sym_block_comment, - ACTIONS(4237), 3, + ACTIONS(4255), 3, sym_self, sym_super, sym_crate, - STATE(2877), 4, + STATE(2966), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4231), 19, + ACTIONS(4249), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157925,37 +157946,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4223), 1, + ACTIONS(4241), 1, sym_identifier, - ACTIONS(4225), 1, + ACTIONS(4243), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4247), 1, anon_sym_STAR, - ACTIONS(4235), 1, + ACTIONS(4253), 1, anon_sym_COLON_COLON, - ACTIONS(4239), 1, + ACTIONS(4257), 1, sym_metavariable, - STATE(2420), 1, + STATE(2488), 1, sym_scoped_identifier, - STATE(3357), 1, - sym_generic_type_with_turbofish, - STATE(3416), 1, + STATE(3348), 1, sym__use_clause, - STATE(3515), 1, + STATE(3374), 1, + sym_generic_type_with_turbofish, + STATE(3495), 1, sym_bracketed_type, STATE(1877), 2, sym_line_comment, sym_block_comment, - ACTIONS(4237), 3, + ACTIONS(4255), 3, sym_self, sym_super, sym_crate, - STATE(2877), 4, + STATE(2966), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4231), 19, + ACTIONS(4249), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -157982,37 +158003,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4223), 1, + ACTIONS(4241), 1, sym_identifier, - ACTIONS(4225), 1, + ACTIONS(4243), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4247), 1, anon_sym_STAR, - ACTIONS(4235), 1, + ACTIONS(4253), 1, anon_sym_COLON_COLON, - ACTIONS(4239), 1, + ACTIONS(4257), 1, sym_metavariable, - STATE(2420), 1, + STATE(2488), 1, sym_scoped_identifier, - STATE(3357), 1, + STATE(3374), 1, sym_generic_type_with_turbofish, - STATE(3364), 1, - sym__use_clause, - STATE(3515), 1, + STATE(3495), 1, sym_bracketed_type, + STATE(3597), 1, + sym__use_clause, STATE(1878), 2, sym_line_comment, sym_block_comment, - ACTIONS(4237), 3, + ACTIONS(4255), 3, sym_self, sym_super, sym_crate, - STATE(2877), 4, + STATE(2966), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4231), 19, + ACTIONS(4249), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158039,37 +158060,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4223), 1, + ACTIONS(4241), 1, sym_identifier, - ACTIONS(4225), 1, + ACTIONS(4243), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4247), 1, anon_sym_STAR, - ACTIONS(4235), 1, + ACTIONS(4253), 1, anon_sym_COLON_COLON, - ACTIONS(4239), 1, + ACTIONS(4257), 1, sym_metavariable, - STATE(2420), 1, + STATE(2488), 1, sym_scoped_identifier, - STATE(3357), 1, - sym_generic_type_with_turbofish, - STATE(3360), 1, + STATE(3073), 1, sym__use_clause, - STATE(3515), 1, + STATE(3374), 1, + sym_generic_type_with_turbofish, + STATE(3495), 1, sym_bracketed_type, STATE(1879), 2, sym_line_comment, sym_block_comment, - ACTIONS(4237), 3, + ACTIONS(4255), 3, sym_self, sym_super, sym_crate, - STATE(2877), 4, + STATE(2966), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4231), 19, + ACTIONS(4249), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158096,37 +158117,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4223), 1, + ACTIONS(4241), 1, sym_identifier, - ACTIONS(4225), 1, + ACTIONS(4243), 1, anon_sym_LBRACE, - ACTIONS(4229), 1, + ACTIONS(4247), 1, anon_sym_STAR, - ACTIONS(4235), 1, + ACTIONS(4253), 1, anon_sym_COLON_COLON, - ACTIONS(4239), 1, + ACTIONS(4257), 1, sym_metavariable, - STATE(2420), 1, + STATE(2488), 1, sym_scoped_identifier, - STATE(3207), 1, + STATE(3328), 1, sym__use_clause, - STATE(3357), 1, + STATE(3374), 1, sym_generic_type_with_turbofish, - STATE(3515), 1, + STATE(3495), 1, sym_bracketed_type, STATE(1880), 2, sym_line_comment, sym_block_comment, - ACTIONS(4237), 3, + ACTIONS(4255), 3, sym_self, sym_super, sym_crate, - STATE(2877), 4, + STATE(2966), 4, sym_scoped_use_list, sym_use_list, sym_use_as_clause, sym_use_wildcard, - ACTIONS(4231), 19, + ACTIONS(4249), 19, anon_sym_u8, anon_sym_i8, anon_sym_u16, @@ -158153,7 +158174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3787), 1, + ACTIONS(3867), 1, anon_sym_where, ACTIONS(4379), 1, sym_identifier, @@ -158161,15 +158182,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4389), 1, sym_metavariable, - STATE(2966), 1, + STATE(3025), 1, sym_scoped_type_identifier, - STATE(3135), 1, + STATE(3297), 1, sym_generic_type, STATE(3369), 1, sym_scoped_identifier, - STATE(3480), 1, + STATE(3475), 1, sym_generic_type_with_turbofish, - STATE(3507), 1, + STATE(3501), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158177,7 +158198,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1881), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158210,7 +158231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3787), 1, + ACTIONS(3867), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158218,15 +158239,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4391), 1, sym_identifier, - STATE(2748), 1, + STATE(3029), 1, sym_scoped_type_identifier, - STATE(3078), 1, + STATE(3306), 1, sym_generic_type, STATE(3369), 1, sym_scoped_identifier, - STATE(3480), 1, + STATE(3475), 1, sym_generic_type_with_turbofish, - STATE(3507), 1, + STATE(3501), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158234,7 +158255,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1882), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158267,7 +158288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3787), 1, + ACTIONS(3867), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158275,15 +158296,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4393), 1, sym_identifier, - STATE(3004), 1, + STATE(2865), 1, sym_scoped_type_identifier, - STATE(3145), 1, + STATE(3043), 1, sym_generic_type, STATE(3369), 1, sym_scoped_identifier, - STATE(3480), 1, + STATE(3475), 1, sym_generic_type_with_turbofish, - STATE(3507), 1, + STATE(3501), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158291,7 +158312,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1883), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158324,7 +158345,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3787), 1, + ACTIONS(3867), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158332,15 +158353,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4395), 1, sym_identifier, - STATE(3024), 1, + STATE(2942), 1, sym_scoped_type_identifier, - STATE(3038), 1, + STATE(3227), 1, sym_generic_type, STATE(3369), 1, sym_scoped_identifier, - STATE(3480), 1, + STATE(3475), 1, sym_generic_type_with_turbofish, - STATE(3507), 1, + STATE(3501), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158348,7 +158369,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1884), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158381,7 +158402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3787), 1, + ACTIONS(3867), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158389,15 +158410,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4397), 1, sym_identifier, - STATE(2926), 1, + STATE(2979), 1, sym_scoped_type_identifier, - STATE(3189), 1, + STATE(3095), 1, sym_generic_type, STATE(3369), 1, sym_scoped_identifier, - STATE(3480), 1, + STATE(3475), 1, sym_generic_type_with_turbofish, - STATE(3507), 1, + STATE(3501), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158405,7 +158426,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1885), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158438,7 +158459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3787), 1, + ACTIONS(3867), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158446,15 +158467,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4399), 1, sym_identifier, - STATE(2738), 1, + STATE(3013), 1, sym_scoped_type_identifier, - STATE(3062), 1, + STATE(3287), 1, sym_generic_type, STATE(3369), 1, sym_scoped_identifier, - STATE(3480), 1, + STATE(3475), 1, sym_generic_type_with_turbofish, - STATE(3507), 1, + STATE(3501), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158462,7 +158483,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1886), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158495,7 +158516,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3787), 1, + ACTIONS(3867), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158503,15 +158524,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4401), 1, sym_identifier, - STATE(2755), 1, + STATE(3019), 1, sym_scoped_type_identifier, - STATE(3089), 1, + STATE(3292), 1, sym_generic_type, STATE(3369), 1, sym_scoped_identifier, - STATE(3480), 1, + STATE(3475), 1, sym_generic_type_with_turbofish, - STATE(3507), 1, + STATE(3501), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158519,7 +158540,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1887), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158552,7 +158573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3787), 1, + ACTIONS(3867), 1, anon_sym_where, ACTIONS(4383), 1, anon_sym_COLON_COLON, @@ -158560,15 +158581,15 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4403), 1, sym_identifier, - STATE(2745), 1, + STATE(3021), 1, sym_scoped_type_identifier, - STATE(3076), 1, + STATE(3294), 1, sym_generic_type, STATE(3369), 1, sym_scoped_identifier, - STATE(3480), 1, + STATE(3475), 1, sym_generic_type_with_turbofish, - STATE(3507), 1, + STATE(3501), 1, sym_bracketed_type, ACTIONS(4385), 2, anon_sym_default, @@ -158576,7 +158597,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1888), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 3, + ACTIONS(3865), 3, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -158732,20 +158753,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1880), 1, + ACTIONS(2340), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2234), 1, + STATE(2271), 1, sym_scoped_identifier, - STATE(3323), 1, + STATE(3324), 1, sym_bracketed_type, - STATE(3349), 1, - sym_generic_type_with_turbofish, - STATE(3521), 1, + STATE(3336), 1, sym_attribute, + STATE(3350), 1, + sym_generic_type_with_turbofish, STATE(1892), 2, sym_line_comment, sym_block_comment, @@ -158780,19 +158801,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1880), 1, + ACTIONS(2340), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2234), 1, + STATE(2271), 1, sym_scoped_identifier, - STATE(3323), 1, + STATE(3324), 1, sym_bracketed_type, - STATE(3349), 1, + STATE(3350), 1, sym_generic_type_with_turbofish, - STATE(3481), 1, + STATE(3468), 1, sym_attribute, STATE(1893), 2, sym_line_comment, @@ -158828,19 +158849,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1880), 1, + ACTIONS(2340), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2234), 1, + STATE(2271), 1, sym_scoped_identifier, - STATE(3323), 1, + STATE(3324), 1, sym_bracketed_type, - STATE(3349), 1, + STATE(3350), 1, sym_generic_type_with_turbofish, - STATE(3458), 1, + STATE(3401), 1, sym_attribute, STATE(1894), 2, sym_line_comment, @@ -158876,19 +158897,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1880), 1, + ACTIONS(2340), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2234), 1, + STATE(2271), 1, sym_scoped_identifier, - STATE(3323), 1, + STATE(3324), 1, sym_bracketed_type, - STATE(3349), 1, + STATE(3350), 1, sym_generic_type_with_turbofish, - STATE(3553), 1, + STATE(3408), 1, sym_attribute, STATE(1895), 2, sym_line_comment, @@ -158924,19 +158945,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1880), 1, + ACTIONS(2340), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2234), 1, + STATE(2271), 1, sym_scoped_identifier, - STATE(3323), 1, + STATE(3324), 1, sym_bracketed_type, - STATE(3349), 1, + STATE(3350), 1, sym_generic_type_with_turbofish, - STATE(3454), 1, + STATE(3392), 1, sym_attribute, STATE(1896), 2, sym_line_comment, @@ -158972,20 +158993,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1880), 1, + ACTIONS(2340), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2234), 1, + STATE(2271), 1, sym_scoped_identifier, - STATE(3323), 1, + STATE(3321), 1, + sym_attribute, + STATE(3324), 1, sym_bracketed_type, - STATE(3349), 1, + STATE(3350), 1, sym_generic_type_with_turbofish, - STATE(3473), 1, - sym_attribute, STATE(1897), 2, sym_line_comment, sym_block_comment, @@ -159020,19 +159041,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1880), 1, + ACTIONS(2340), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2234), 1, + STATE(2271), 1, sym_scoped_identifier, - STATE(3323), 1, + STATE(3324), 1, sym_bracketed_type, - STATE(3349), 1, + STATE(3350), 1, sym_generic_type_with_turbofish, - STATE(3418), 1, + STATE(3411), 1, sym_attribute, STATE(1898), 2, sym_line_comment, @@ -159068,20 +159089,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1880), 1, + ACTIONS(2340), 1, anon_sym_COLON_COLON, ACTIONS(4417), 1, sym_identifier, ACTIONS(4423), 1, sym_metavariable, - STATE(2234), 1, + STATE(2271), 1, sym_scoped_identifier, - STATE(3323), 1, + STATE(3324), 1, sym_bracketed_type, - STATE(3349), 1, - sym_generic_type_with_turbofish, - STATE(3388), 1, + STATE(3326), 1, sym_attribute, + STATE(3350), 1, + sym_generic_type_with_turbofish, STATE(1899), 2, sym_line_comment, sym_block_comment, @@ -159122,11 +159143,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4433), 1, sym_metavariable, - STATE(3116), 1, + STATE(3107), 1, sym_scoped_identifier, - STATE(3357), 1, + STATE(3374), 1, sym_generic_type_with_turbofish, - STATE(3515), 1, + STATE(3495), 1, sym_bracketed_type, STATE(1900), 2, sym_line_comment, @@ -159168,11 +159189,11 @@ static const uint16_t ts_small_parse_table[] = { sym_identifier, ACTIONS(4441), 1, sym_metavariable, - STATE(3203), 1, + STATE(3209), 1, sym_scoped_identifier, - STATE(3357), 1, + STATE(3374), 1, sym_generic_type_with_turbofish, - STATE(3515), 1, + STATE(3495), 1, sym_bracketed_type, STATE(1901), 2, sym_line_comment, @@ -159206,12 +159227,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(785), 1, + ACTIONS(771), 1, anon_sym_DOT_DOT, STATE(1902), 2, sym_line_comment, sym_block_comment, - ACTIONS(787), 20, + ACTIONS(773), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159232,90 +159253,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_extern, anon_sym_else, anon_sym_in, - [59345] = 5, + [59345] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(797), 1, - anon_sym_DOT_DOT, + ACTIONS(3245), 1, + anon_sym_COLON, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(1931), 1, + sym_type_arguments, + STATE(1945), 1, + sym_parameters, STATE(1903), 2, sym_line_comment, sym_block_comment, - ACTIONS(799), 20, + ACTIONS(3241), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, - [59381] = 11, + [59393] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3245), 1, - anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, + ACTIONS(753), 1, + anon_sym_DOT_DOT, STATE(1904), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 14, + ACTIONS(755), 20, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, anon_sym_else, - [59429] = 6, + anon_sym_in, + [59429] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3277), 1, + ACTIONS(3261), 1, anon_sym_COLON, - ACTIONS(3281), 2, - anon_sym_BANG, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4451), 1, anon_sym_COLON_COLON, + STATE(1931), 1, + sym_type_arguments, + STATE(1945), 1, + sym_parameters, STATE(1905), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 17, + ACTIONS(3259), 14, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -159327,32 +159354,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, - anon_sym_for, anon_sym_where, anon_sym_else, - anon_sym_LT2, - [59466] = 10, + [59474] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3265), 1, + ACTIONS(3269), 1, anon_sym_COLON, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(3273), 2, + anon_sym_BANG, anon_sym_COLON_COLON, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, STATE(1906), 2, sym_line_comment, sym_block_comment, - ACTIONS(3263), 14, + ACTIONS(3267), 17, anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, @@ -159364,14 +159383,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_as, + anon_sym_for, anon_sym_where, anon_sym_else, + anon_sym_LT2, [59511] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3261), 1, + ACTIONS(3255), 1, anon_sym_COLON, ACTIONS(4443), 1, anon_sym_LPAREN, @@ -159379,14 +159400,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(4451), 1, anon_sym_COLON_COLON, - STATE(1934), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1939), 1, + STATE(1945), 1, sym_parameters, STATE(1907), 2, sym_line_comment, sym_block_comment, - ACTIONS(3259), 14, + ACTIONS(3253), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159437,15 +159458,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3269), 1, + ACTIONS(3309), 1, anon_sym_COLON, - ACTIONS(3273), 2, + ACTIONS(3313), 2, anon_sym_BANG, anon_sym_COLON_COLON, STATE(1909), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 17, + ACTIONS(3307), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159484,7 +159505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(4467), 1, anon_sym_COLON_COLON, - STATE(1934), 1, + STATE(1931), 1, sym_type_arguments, ACTIONS(4465), 2, anon_sym_DOT_DOT_DOT, @@ -159507,7 +159528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3255), 1, + ACTIONS(3265), 1, anon_sym_COLON, ACTIONS(4443), 1, anon_sym_LPAREN, @@ -159515,14 +159536,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(4451), 1, anon_sym_COLON_COLON, - STATE(1934), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1939), 1, + STATE(1945), 1, sym_parameters, STATE(1911), 2, sym_line_comment, sym_block_comment, - ACTIONS(3253), 14, + ACTIONS(3263), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159542,15 +159563,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3305), 1, + ACTIONS(3277), 1, anon_sym_COLON, - ACTIONS(3309), 2, + ACTIONS(3281), 2, anon_sym_BANG, anon_sym_COLON_COLON, STATE(1912), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 17, + ACTIONS(3275), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159573,17 +159594,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, + ACTIONS(3295), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(1913), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 3, + ACTIONS(3291), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3281), 14, + ACTIONS(3297), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159607,14 +159628,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - STATE(1935), 1, + STATE(1933), 1, sym_type_arguments, - STATE(1948), 1, + STATE(1947), 1, sym_parameters, STATE(1914), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 15, + ACTIONS(3287), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159630,39 +159651,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59841] = 8, + [59841] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1935), 1, - sym_type_arguments, - STATE(1948), 1, - sym_parameters, + ACTIONS(3271), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, STATE(1915), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 15, + ACTIONS(3267), 3, + anon_sym_LBRACE, + anon_sym_for, + anon_sym_LT2, + ACTIONS(3273), 14, 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_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - [59881] = 8, + anon_sym_in, + [59877] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -159671,14 +159690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - STATE(1935), 1, + STATE(1933), 1, sym_type_arguments, - STATE(1948), 1, + STATE(1947), 1, sym_parameters, STATE(1916), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 15, + ACTIONS(3283), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159694,7 +159713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59921] = 8, + [59917] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -159703,14 +159722,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - STATE(1935), 1, + STATE(1933), 1, sym_type_arguments, - STATE(1948), 1, + STATE(1947), 1, sym_parameters, STATE(1917), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 15, + ACTIONS(3303), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -159726,22 +159745,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [59961] = 6, + [59957] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, + ACTIONS(3279), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(1918), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 3, + ACTIONS(3275), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3273), 14, + ACTIONS(3281), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159756,22 +159775,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [59997] = 6, + [59993] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(3311), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(1919), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 3, + ACTIONS(3307), 3, anon_sym_LBRACE, anon_sym_for, anon_sym_LT2, - ACTIONS(3297), 14, + ACTIONS(3313), 14, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159786,48 +159805,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60033] = 6, + [60029] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3307), 2, - anon_sym_COLON, - anon_sym_DOT_DOT, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(1933), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, STATE(1920), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 3, - anon_sym_LBRACE, - anon_sym_for, - anon_sym_LT2, - ACTIONS(3309), 14, + ACTIONS(3299), 15, anon_sym_SEMI, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_COLON, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, anon_sym_else, - anon_sym_in, [60069] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, + ACTIONS(3295), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(1921), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 16, + ACTIONS(3297), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159849,40 +159870,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, + ACTIONS(3406), 1, anon_sym_COLON, - anon_sym_DOT_DOT, STATE(1922), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 16, + ACTIONS(3404), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, [60135] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3390), 1, + ACTIONS(3410), 1, anon_sym_COLON, STATE(1923), 2, sym_line_comment, sym_block_comment, - ACTIONS(3388), 17, + ACTIONS(3408), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -159905,123 +159926,123 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3380), 1, + ACTIONS(3279), 2, anon_sym_COLON, + anon_sym_DOT_DOT, STATE(1924), 2, sym_line_comment, sym_block_comment, - ACTIONS(3378), 17, + ACTIONS(3281), 16, 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_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, - [60201] = 4, + anon_sym_in, + [60201] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3311), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, STATE(1925), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 18, + ACTIONS(3313), 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_BANG, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, + anon_sym_COLON_COLON, anon_sym_else, - anon_sym_LT2, - [60232] = 5, + anon_sym_in, + [60234] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3473), 1, - anon_sym_COLON, STATE(1926), 2, sym_line_comment, sym_block_comment, - ACTIONS(3471), 17, + ACTIONS(3307), 18, 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_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, anon_sym_SQUOTE, anon_sym_as, anon_sym_for, anon_sym_where, anon_sym_else, + anon_sym_LT2, [60265] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3307), 2, + ACTIONS(3350), 1, anon_sym_COLON, - anon_sym_DOT_DOT, STATE(1927), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 16, + ACTIONS(3348), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_BANG, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, [60298] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3505), 1, + ACTIONS(3463), 1, anon_sym_COLON, STATE(1928), 2, sym_line_comment, sym_block_comment, - ACTIONS(3503), 17, + ACTIONS(3461), 17, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160044,13 +160065,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, + ACTIONS(3271), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(1929), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 16, + ACTIONS(3273), 16, anon_sym_SEMI, anon_sym_LPAREN, anon_sym_RPAREN, @@ -160067,132 +160088,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, anon_sym_else, anon_sym_in, - [60364] = 11, + [60364] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4471), 1, + ACTIONS(3354), 1, anon_sym_COLON, - ACTIONS(4473), 1, - anon_sym_BANG, - ACTIONS(4475), 1, - anon_sym_DOT_DOT, - ACTIONS(4479), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, - ACTIONS(4477), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1930), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 9, + ACTIONS(3352), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, anon_sym_else, - anon_sym_in, - [60408] = 19, + [60396] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4483), 1, - anon_sym_const, - ACTIONS(4485), 1, - anon_sym_enum, - ACTIONS(4487), 1, - anon_sym_fn, - ACTIONS(4489), 1, - anon_sym_mod, - ACTIONS(4491), 1, - anon_sym_static, - ACTIONS(4493), 1, - anon_sym_struct, - ACTIONS(4495), 1, - anon_sym_trait, - ACTIONS(4497), 1, - anon_sym_type, - ACTIONS(4499), 1, - anon_sym_union, - ACTIONS(4501), 1, - anon_sym_unsafe, - ACTIONS(4503), 1, - anon_sym_use, - ACTIONS(4505), 1, - anon_sym_extern, - STATE(2160), 1, - sym_extern_modifier, - STATE(2224), 1, - aux_sym_function_modifiers_repeat1, - STATE(3328), 1, - sym_function_modifiers, - ACTIONS(4481), 2, - anon_sym_async, - anon_sym_default, + ACTIONS(3459), 1, + anon_sym_COLON, STATE(1931), 2, sym_line_comment, sym_block_comment, - [60468] = 19, + ACTIONS(3457), 16, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_for, + anon_sym_where, + anon_sym_else, + [60428] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4507), 1, + ACTIONS(4471), 1, anon_sym_const, - ACTIONS(4509), 1, + ACTIONS(4473), 1, anon_sym_enum, - ACTIONS(4511), 1, + ACTIONS(4475), 1, anon_sym_fn, - ACTIONS(4513), 1, + ACTIONS(4477), 1, anon_sym_mod, - ACTIONS(4515), 1, + ACTIONS(4479), 1, anon_sym_static, - ACTIONS(4517), 1, + ACTIONS(4481), 1, anon_sym_struct, - ACTIONS(4519), 1, + ACTIONS(4483), 1, anon_sym_trait, - ACTIONS(4521), 1, + ACTIONS(4485), 1, anon_sym_type, - ACTIONS(4523), 1, + ACTIONS(4487), 1, anon_sym_union, - ACTIONS(4525), 1, + ACTIONS(4489), 1, anon_sym_unsafe, - ACTIONS(4527), 1, + ACTIONS(4491), 1, anon_sym_use, - ACTIONS(4529), 1, + ACTIONS(4493), 1, anon_sym_extern, - STATE(2145), 1, + STATE(2133), 1, sym_extern_modifier, - STATE(2224), 1, + STATE(2206), 1, aux_sym_function_modifiers_repeat1, - STATE(3606), 1, + STATE(3407), 1, sym_function_modifiers, - ACTIONS(4481), 2, + ACTIONS(4469), 2, anon_sym_async, anon_sym_default, STATE(1932), 2, sym_line_comment, sym_block_comment, - [60528] = 5, + [60488] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3446), 1, + ACTIONS(3471), 1, anon_sym_COLON, STATE(1933), 2, sym_line_comment, sym_block_comment, - ACTIONS(3444), 16, + ACTIONS(3469), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160209,60 +160210,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_for, anon_sym_where, anon_sym_else, - [60560] = 5, + [60520] = 19, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_COLON, + ACTIONS(4495), 1, + anon_sym_const, + ACTIONS(4497), 1, + anon_sym_enum, + ACTIONS(4499), 1, + anon_sym_fn, + ACTIONS(4501), 1, + anon_sym_mod, + ACTIONS(4503), 1, + anon_sym_static, + ACTIONS(4505), 1, + anon_sym_struct, + ACTIONS(4507), 1, + anon_sym_trait, + ACTIONS(4509), 1, + anon_sym_type, + ACTIONS(4511), 1, + anon_sym_union, + ACTIONS(4513), 1, + anon_sym_unsafe, + ACTIONS(4515), 1, + anon_sym_use, + ACTIONS(4517), 1, + anon_sym_extern, + STATE(2175), 1, + sym_extern_modifier, + STATE(2206), 1, + aux_sym_function_modifiers_repeat1, + STATE(3600), 1, + sym_function_modifiers, + ACTIONS(4469), 2, + anon_sym_async, + anon_sym_default, STATE(1934), 2, sym_line_comment, sym_block_comment, - ACTIONS(3440), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, - anon_sym_else, - [60592] = 5, + [60580] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3438), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4521), 1, anon_sym_COLON, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4525), 1, + anon_sym_DOT_DOT, + ACTIONS(4529), 1, + anon_sym_COLON_COLON, + STATE(1930), 1, + sym_type_arguments, + ACTIONS(4527), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(1935), 2, sym_line_comment, sym_block_comment, - ACTIONS(3436), 16, + ACTIONS(4519), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, - anon_sym_COLON_COLON, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_for, - anon_sym_where, anon_sym_else, + anon_sym_in, [60624] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -160270,107 +160291,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4471), 1, + ACTIONS(4521), 1, anon_sym_COLON, - ACTIONS(4473), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4475), 1, + ACTIONS(4525), 1, anon_sym_DOT_DOT, ACTIONS(4531), 1, anon_sym_COLON_COLON, - STATE(1933), 1, + STATE(1930), 1, sym_type_arguments, - ACTIONS(4477), 2, + ACTIONS(4527), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(1936), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 3, + ACTIONS(4519), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3327), 6, + ACTIONS(3323), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [60670] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1937), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(993), 16, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - anon_sym_in, - [60699] = 11, + [60670] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4473), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4475), 1, + ACTIONS(4525), 1, anon_sym_DOT_DOT, ACTIONS(4533), 1, anon_sym_COLON_COLON, - STATE(1933), 1, + STATE(1930), 1, sym_type_arguments, - ACTIONS(4477), 2, + ACTIONS(4527), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(1938), 2, + STATE(1937), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 3, + ACTIONS(4519), 3, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_COMMA, - ACTIONS(3327), 6, + ACTIONS(3323), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [60742] = 5, + [60713] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3301), 1, + anon_sym_COLON, ACTIONS(4535), 1, - anon_sym_DASH_GT, - STATE(1939), 2, + anon_sym_COLON_COLON, + STATE(1938), 2, sym_line_comment, sym_block_comment, - ACTIONS(3422), 15, + ACTIONS(3299), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160380,56 +160377,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60773] = 16, + [60746] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4537), 1, - anon_sym_LPAREN, - ACTIONS(4539), 1, - anon_sym_COLON_COLON, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(1940), 2, + STATE(1939), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 3, + ACTIONS(987), 16, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [60826] = 6, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + anon_sym_in, + [60775] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3301), 1, + ACTIONS(3285), 1, anon_sym_COLON, - ACTIONS(4541), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - STATE(1941), 2, + STATE(1940), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 14, + ACTIONS(3283), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160444,15 +160429,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60859] = 4, + [60808] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1942), 2, + ACTIONS(4539), 1, + anon_sym_DASH_GT, + STATE(1941), 2, sym_line_comment, sym_block_comment, - ACTIONS(999), 16, + ACTIONS(3521), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160468,8 +160455,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - anon_sym_in, - [60888] = 4, + [60839] = 17, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3241), 1, + anon_sym_PLUS, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4453), 1, + anon_sym_PIPE, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4459), 1, + anon_sym_COLON, + ACTIONS(4461), 1, + anon_sym_AT, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(4541), 1, + anon_sym_LPAREN, + ACTIONS(4546), 1, + anon_sym_COLON_COLON, + STATE(1931), 1, + sym_type_arguments, + STATE(1945), 1, + sym_parameters, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(4543), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(1942), 2, + sym_line_comment, + sym_block_comment, + [60894] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -160477,7 +160501,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1943), 2, sym_line_comment, sym_block_comment, - ACTIONS(1328), 16, + ACTIONS(991), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160494,19 +160518,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [60917] = 6, + [60923] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3289), 1, + ACTIONS(3305), 1, anon_sym_COLON, - ACTIONS(4541), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, STATE(1944), 2, sym_line_comment, sym_block_comment, - ACTIONS(3287), 14, + ACTIONS(3303), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160521,52 +160545,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [60950] = 16, + [60956] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4457), 1, - anon_sym_LBRACE, - ACTIONS(4461), 1, - anon_sym_AT, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4543), 1, - anon_sym_LPAREN, - ACTIONS(4545), 1, - anon_sym_RBRACK, ACTIONS(4548), 1, - anon_sym_COLON_COLON, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, - ACTIONS(3241), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_DASH_GT, STATE(1945), 2, sym_line_comment, sym_block_comment, - [61003] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(1946), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3410), 16, + ACTIONS(3533), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160578,20 +160567,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61032] = 4, + [60987] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1947), 2, + STATE(1946), 2, sym_line_comment, sym_block_comment, - ACTIONS(3362), 16, + ACTIONS(3418), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160608,17 +160596,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61061] = 5, + [61016] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4550), 1, anon_sym_DASH_GT, - STATE(1948), 2, + STATE(1947), 2, sym_line_comment, sym_block_comment, - ACTIONS(3416), 15, + ACTIONS(3527), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160634,24 +160622,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61092] = 6, + [61047] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3313), 1, - anon_sym_COLON, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - STATE(1949), 2, + ACTIONS(4552), 1, + anon_sym_DASH_GT, + STATE(1948), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 14, + ACTIONS(3447), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160661,45 +160648,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61125] = 5, + [61078] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4552), 1, - anon_sym_LPAREN, - STATE(1950), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3979), 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, - [61156] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3313), 1, + ACTIONS(3301), 1, anon_sym_COLON, - ACTIONS(4554), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - STATE(1951), 2, + STATE(1949), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 14, + ACTIONS(3299), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160714,15 +160675,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61189] = 4, + [61111] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1952), 2, + STATE(1950), 2, sym_line_comment, sym_block_comment, - ACTIONS(3384), 16, + ACTIONS(3443), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160739,23 +160700,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61218] = 5, + [61140] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4556), 1, - anon_sym_DASH_GT, - STATE(1953), 2, + ACTIONS(3289), 1, + anon_sym_COLON, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + STATE(1951), 2, sym_line_comment, sym_block_comment, - ACTIONS(3404), 15, + ACTIONS(3287), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160765,23 +160727,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61249] = 5, + [61173] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4558), 1, - anon_sym_DASH_GT, - STATE(1954), 2, + ACTIONS(3301), 1, + anon_sym_COLON, + ACTIONS(4554), 1, + anon_sym_COLON_COLON, + STATE(1952), 2, sym_line_comment, sym_block_comment, - ACTIONS(3398), 15, + ACTIONS(3299), 14, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -160791,15 +160754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61280] = 4, + [61206] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1955), 2, + STATE(1953), 2, sym_line_comment, sym_block_comment, - ACTIONS(3475), 16, + ACTIONS(3336), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160816,17 +160779,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61309] = 5, + [61235] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4560), 1, - anon_sym_DASH_GT, - STATE(1956), 2, + STATE(1954), 2, sym_line_comment, sym_block_comment, - ACTIONS(3366), 15, + ACTIONS(3370), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160838,46 +160799,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61340] = 6, + [61264] = 16, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3285), 1, - anon_sym_COLON, - ACTIONS(4541), 1, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4461), 1, + anon_sym_AT, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(4543), 1, + anon_sym_RBRACK, + ACTIONS(4556), 1, + anon_sym_LPAREN, + ACTIONS(4558), 1, anon_sym_COLON_COLON, - STATE(1957), 2, + STATE(1931), 1, + sym_type_arguments, + STATE(1945), 1, + sym_parameters, + ACTIONS(3241), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4453), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1955), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 14, + [61317] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(1956), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3507), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, + anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61373] = 4, + [61346] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1958), 2, + STATE(1957), 2, sym_line_comment, sym_block_comment, - ACTIONS(1414), 16, + ACTIONS(1442), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160894,17 +160891,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_where, anon_sym_else, anon_sym_in, - [61402] = 5, + [61375] = 16, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4453), 1, + anon_sym_PIPE, + ACTIONS(4457), 1, + anon_sym_LBRACE, + ACTIONS(4459), 1, + anon_sym_COLON, + ACTIONS(4461), 1, + anon_sym_AT, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(4560), 1, + anon_sym_LPAREN, ACTIONS(4562), 1, - anon_sym_DASH_GT, + anon_sym_COLON_COLON, + STATE(1931), 1, + sym_type_arguments, + STATE(1945), 1, + sym_parameters, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1958), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [61428] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, STATE(1959), 2, sym_line_comment, sym_block_comment, - ACTIONS(3392), 15, + ACTIONS(1320), 16, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160920,15 +160952,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61433] = 4, + anon_sym_in, + [61457] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4564), 1, + anon_sym_DASH_GT, STATE(1960), 2, sym_line_comment, sym_block_comment, - ACTIONS(3507), 16, + ACTIONS(3513), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -160940,67 +160975,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_EQ, anon_sym_GT, anon_sym_COMMA, - anon_sym_DASH_GT, anon_sym_SQUOTE, anon_sym_as, anon_sym_where, anon_sym_else, - [61462] = 17, + [61488] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3241), 1, - anon_sym_PLUS, ACTIONS(4445), 1, anon_sym_BANG, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4457), 1, - anon_sym_LBRACE, + ACTIONS(4455), 1, + anon_sym_LPAREN, ACTIONS(4459), 1, anon_sym_COLON, - ACTIONS(4461), 1, - anon_sym_AT, ACTIONS(4463), 1, anon_sym_DOT_DOT, - ACTIONS(4564), 1, - anon_sym_LPAREN, ACTIONS(4566), 1, anon_sym_COLON_COLON, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, ACTIONS(4465), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4545), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(1961), 2, sym_line_comment, sym_block_comment, - [61517] = 6, + ACTIONS(4453), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [61529] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3313), 1, - anon_sym_COLON, ACTIONS(4568), 1, - anon_sym_COLON_COLON, + anon_sym_DASH_GT, STATE(1962), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 14, + ACTIONS(3356), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PLUS, anon_sym_PIPE, anon_sym_EQ, @@ -161010,7 +161036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61550] = 5, + [61560] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161020,7 +161046,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1963), 2, sym_line_comment, sym_block_comment, - ACTIONS(3430), 15, + ACTIONS(3412), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161036,37 +161062,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61581] = 10, + [61591] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, ACTIONS(4572), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_LPAREN, STATE(1964), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 9, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + ACTIONS(3977), 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, [61622] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -161075,7 +161096,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1965), 2, sym_line_comment, sym_block_comment, - ACTIONS(3587), 15, + ACTIONS(3583), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161123,7 +161144,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1967), 2, sym_line_comment, sym_block_comment, - ACTIONS(3599), 15, + ACTIONS(3841), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161147,7 +161168,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1968), 2, sym_line_comment, sym_block_comment, - ACTIONS(3283), 15, + ACTIONS(3731), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161163,32 +161184,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61734] = 5, + [61734] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, STATE(1969), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 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, - [61764] = 4, + ACTIONS(3621), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, + [61762] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161196,7 +161216,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1970), 2, sym_line_comment, sym_block_comment, - ACTIONS(3607), 15, + ACTIONS(3727), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161212,7 +161232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61792] = 4, + [61790] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161220,7 +161240,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1971), 2, sym_line_comment, sym_block_comment, - ACTIONS(3709), 15, + ACTIONS(3629), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161236,7 +161256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61820] = 4, + [61818] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161244,7 +161264,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1972), 2, sym_line_comment, sym_block_comment, - ACTIONS(3299), 15, + ACTIONS(3857), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161260,7 +161280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61848] = 4, + [61846] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161268,7 +161288,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1973), 2, sym_line_comment, sym_block_comment, - ACTIONS(3663), 15, + ACTIONS(3567), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161284,39 +161304,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61876] = 12, + [61874] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4469), 1, - anon_sym_PIPE, - ACTIONS(4471), 1, - anon_sym_COLON, - ACTIONS(4473), 1, - anon_sym_BANG, - ACTIONS(4475), 1, - anon_sym_DOT_DOT, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, - ACTIONS(4477), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(1974), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, + ACTIONS(3995), 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, - [61920] = 4, + sym_identifier, + [61902] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161324,7 +161336,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1975), 2, sym_line_comment, sym_block_comment, - ACTIONS(3547), 15, + ACTIONS(3587), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161340,7 +161352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61948] = 4, + [61930] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161348,7 +161360,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1976), 2, sym_line_comment, sym_block_comment, - ACTIONS(3785), 15, + ACTIONS(3591), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161364,7 +161376,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [61976] = 4, + [61958] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161372,7 +161384,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1977), 2, sym_line_comment, sym_block_comment, - ACTIONS(3995), 15, + ACTIONS(3991), 15, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161388,40 +161400,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_use, anon_sym_extern, sym_identifier, - [62004] = 5, + [61986] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, - anon_sym_COLON_COLON, STATE(1978), 2, sym_line_comment, sym_block_comment, - ACTIONS(3984), 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, - [62034] = 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(3591), 15, + ACTIONS(3299), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161437,15 +161424,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62062] = 4, + [62014] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1980), 2, + STATE(1979), 2, sym_line_comment, sym_block_comment, - ACTIONS(3579), 15, + ACTIONS(3283), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161461,39 +161448,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62090] = 4, + [62042] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(1981), 2, + STATE(1980), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, + ACTIONS(3999), 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, + [62070] = 12, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4519), 1, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, - [62118] = 4, + ACTIONS(4521), 1, + anon_sym_COLON, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4525), 1, + anon_sym_DOT_DOT, + ACTIONS(4574), 1, + anon_sym_COLON_COLON, + STATE(1930), 1, + sym_type_arguments, + ACTIONS(4527), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(1981), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [62114] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, STATE(1982), 2, sym_line_comment, sym_block_comment, - ACTIONS(3999), 15, + ACTIONS(3979), 14, anon_sym_async, anon_sym_const, anon_sym_default, @@ -161508,8 +161529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_unsafe, anon_sym_use, anon_sym_extern, - sym_identifier, - [62146] = 4, + [62144] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161517,7 +161537,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1983), 2, sym_line_comment, sym_block_comment, - ACTIONS(3611), 15, + ACTIONS(3637), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161533,7 +161553,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62174] = 4, + [62172] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161541,7 +161561,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1984), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 15, + ACTIONS(3303), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161557,7 +161577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62202] = 4, + [62200] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161565,7 +161585,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1985), 2, sym_line_comment, sym_block_comment, - ACTIONS(3603), 15, + ACTIONS(3743), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161581,7 +161601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62230] = 4, + [62228] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -161589,7 +161609,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1986), 2, sym_line_comment, sym_block_comment, - ACTIONS(3713), 15, + ACTIONS(3829), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161605,30 +161625,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_where, anon_sym_else, - [62258] = 4, + [62256] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, STATE(1987), 2, sym_line_comment, sym_block_comment, - ACTIONS(3623), 15, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_as, - anon_sym_where, - anon_sym_else, + ACTIONS(3979), 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, [62286] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -161637,7 +161658,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1988), 2, sym_line_comment, sym_block_comment, - ACTIONS(3675), 15, + ACTIONS(3865), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161661,7 +161682,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1989), 2, sym_line_comment, sym_block_comment, - ACTIONS(3619), 15, + ACTIONS(3735), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161685,7 +161706,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1990), 2, sym_line_comment, sym_block_comment, - ACTIONS(3671), 15, + ACTIONS(3625), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161709,7 +161730,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1991), 2, sym_line_comment, sym_block_comment, - ACTIONS(3595), 15, + ACTIONS(3625), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161733,22 +161754,22 @@ static const uint16_t ts_small_parse_table[] = { STATE(1992), 2, sym_line_comment, sym_block_comment, - ACTIONS(3989), 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, + ACTIONS(3873), 15, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_as, + anon_sym_where, + anon_sym_else, [62426] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -161757,7 +161778,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1993), 2, sym_line_comment, sym_block_comment, - ACTIONS(3801), 15, + ACTIONS(3849), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161781,7 +161802,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1994), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 15, + ACTIONS(3767), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161805,7 +161826,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1995), 2, sym_line_comment, sym_block_comment, - ACTIONS(3667), 15, + ACTIONS(3853), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161829,7 +161850,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(1996), 2, sym_line_comment, sym_block_comment, - ACTIONS(3647), 15, + ACTIONS(3579), 15, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161850,12 +161871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(967), 1, anon_sym_DOT_DOT, STATE(1997), 2, sym_line_comment, sym_block_comment, - ACTIONS(779), 13, + ACTIONS(969), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161869,54 +161890,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [62567] = 16, + [62567] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4578), 1, - anon_sym_COLON, ACTIONS(4580), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_GT, - ACTIONS(4584), 1, - anon_sym_COMMA, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, - STATE(2941), 1, - sym_trait_bounds, - STATE(2947), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3241), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(1998), 2, - sym_line_comment, - sym_block_comment, - [62618] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4588), 1, anon_sym_pat, - STATE(159), 1, + STATE(144), 1, sym_fragment_specifier, - STATE(1999), 2, + STATE(1998), 2, sym_line_comment, sym_block_comment, - ACTIONS(4586), 12, + ACTIONS(4578), 12, anon_sym_block, anon_sym_expr, anon_sym_ident, @@ -161929,24 +161915,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_tt, anon_sym_ty, anon_sym_vis, - [62649] = 8, + [62598] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4471), 1, + ACTIONS(4521), 1, anon_sym_COLON, - ACTIONS(4475), 1, + ACTIONS(4525), 1, anon_sym_DOT_DOT, - ACTIONS(4479), 1, + ACTIONS(4529), 1, anon_sym_COLON_COLON, - ACTIONS(4477), 2, + ACTIONS(4527), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2000), 2, + STATE(1999), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 9, + ACTIONS(4519), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161956,17 +161942,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, + [62633] = 16, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4582), 1, + anon_sym_COLON, + ACTIONS(4584), 1, + anon_sym_EQ, + ACTIONS(4586), 1, + anon_sym_GT, + ACTIONS(4588), 1, + anon_sym_COMMA, + STATE(1931), 1, + sym_type_arguments, + STATE(1945), 1, + sym_parameters, + STATE(2746), 1, + sym_trait_bounds, + STATE(2907), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3241), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2000), 2, + sym_line_comment, + sym_block_comment, [62684] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(817), 1, + ACTIONS(767), 1, anon_sym_DOT_DOT, STATE(2001), 2, sym_line_comment, sym_block_comment, - ACTIONS(819), 13, + ACTIONS(769), 13, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -161985,402 +162006,402 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 2, - anon_sym_COLON, + ACTIONS(3311), 1, anon_sym_DOT_DOT, + ACTIONS(4590), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, STATE(2002), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 3, + ACTIONS(3307), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4590), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3297), 5, + ACTIONS(3313), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, [62745] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 2, - anon_sym_COLON, + ACTIONS(3271), 1, anon_sym_DOT_DOT, + ACTIONS(4593), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, STATE(2003), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 3, + ACTIONS(3267), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4593), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3281), 5, + ACTIONS(3273), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [62777] = 7, + [62777] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4593), 1, - anon_sym_LPAREN, - ACTIONS(3279), 2, - anon_sym_COLON, + ACTIONS(4598), 1, anon_sym_DOT_DOT, STATE(2004), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 5, + ACTIONS(4596), 12, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_LT2, - ACTIONS(3281), 5, - anon_sym_BANG, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - [62809] = 7, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [62805] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, + ACTIONS(4463), 1, anon_sym_DOT_DOT, - ACTIONS(4593), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2005), 2, sym_line_comment, sym_block_comment, - ACTIONS(3275), 4, + ACTIONS(4453), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3281), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - [62841] = 7, + anon_sym_else, + anon_sym_in, + [62835] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4596), 1, + ACTIONS(4600), 1, anon_sym_LPAREN, - ACTIONS(3271), 2, + ACTIONS(3295), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2006), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 5, + ACTIONS(3291), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3273), 5, + ACTIONS(3297), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62873] = 6, + [62867] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4603), 1, + anon_sym_LPAREN, + ACTIONS(4605), 1, + anon_sym_LBRACE, + ACTIONS(4607), 1, + anon_sym_BANG, + ACTIONS(4609), 1, + anon_sym_AT, + ACTIONS(4611), 1, anon_sym_DOT_DOT, - ACTIONS(4465), 2, + ACTIONS(4615), 1, + anon_sym_COLON_COLON, + STATE(1931), 1, + sym_type_arguments, + ACTIONS(4613), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2007), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + ACTIONS(4453), 3, + anon_sym_EQ_GT, anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [62903] = 5, + anon_sym_if, + [62911] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4601), 1, + ACTIONS(3279), 1, anon_sym_DOT_DOT, + ACTIONS(4617), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, STATE(2008), 2, sym_line_comment, sym_block_comment, - ACTIONS(4599), 12, + ACTIONS(3275), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(3281), 6, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [62931] = 7, + anon_sym_COLON_COLON, + [62943] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4590), 1, anon_sym_LPAREN, - ACTIONS(3295), 2, + ACTIONS(3311), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2009), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 5, + ACTIONS(3307), 5, anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3297), 5, + ACTIONS(3313), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [62963] = 7, + [62975] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3307), 1, - anon_sym_DOT_DOT, - ACTIONS(4603), 2, + ACTIONS(4617), 1, anon_sym_LPAREN, - anon_sym_RBRACK, + ACTIONS(3279), 2, + anon_sym_COLON, + anon_sym_DOT_DOT, STATE(2010), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 4, - anon_sym_SEMI, + ACTIONS(3275), 5, + anon_sym_RPAREN, anon_sym_LBRACE, anon_sym_PLUS, + anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3309), 6, + ACTIONS(3281), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [62995] = 7, + [63007] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, + ACTIONS(4622), 1, anon_sym_DOT_DOT, - ACTIONS(4596), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, STATE(2011), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 4, + ACTIONS(4620), 12, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_LT2, - ACTIONS(3273), 6, - anon_sym_BANG, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COMMA, - anon_sym_COLON_COLON, - [63027] = 13, + anon_sym_else, + anon_sym_in, + [63035] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4606), 1, - anon_sym_LPAREN, - ACTIONS(4608), 1, - anon_sym_LBRACE, - ACTIONS(4610), 1, - anon_sym_BANG, - ACTIONS(4612), 1, - anon_sym_AT, - ACTIONS(4614), 1, + ACTIONS(3295), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4618), 1, - anon_sym_COLON_COLON, - STATE(1934), 1, - sym_type_arguments, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2012), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, + ACTIONS(3291), 3, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_LT2, + ACTIONS(4600), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3297), 5, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_if, - [63071] = 7, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + [63067] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, + ACTIONS(3271), 2, + anon_sym_COLON, anon_sym_DOT_DOT, - ACTIONS(4590), 2, - anon_sym_LPAREN, - anon_sym_RBRACK, STATE(2013), 2, sym_line_comment, sym_block_comment, - ACTIONS(3291), 4, - anon_sym_SEMI, + ACTIONS(3267), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(3297), 6, + ACTIONS(4593), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3273), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, anon_sym_COLON_COLON, - [63103] = 7, + [63099] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4603), 1, - anon_sym_LPAREN, - ACTIONS(3307), 2, + ACTIONS(3311), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2014), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 5, - anon_sym_RPAREN, + ACTIONS(3307), 3, anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_COMMA, anon_sym_LT2, - ACTIONS(3309), 5, + ACTIONS(4590), 3, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(3313), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63135] = 7, + [63131] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3307), 2, + ACTIONS(3279), 2, anon_sym_COLON, anon_sym_DOT_DOT, STATE(2015), 2, sym_line_comment, sym_block_comment, - ACTIONS(3303), 3, + ACTIONS(3275), 3, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4603), 3, + ACTIONS(4617), 3, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(3309), 5, + ACTIONS(3281), 5, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, - [63167] = 7, + [63163] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 2, - anon_sym_COLON, + ACTIONS(3295), 1, anon_sym_DOT_DOT, + ACTIONS(4600), 2, + anon_sym_LPAREN, + anon_sym_RBRACK, STATE(2016), 2, sym_line_comment, sym_block_comment, - ACTIONS(3267), 3, + ACTIONS(3291), 4, + anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_LT2, - ACTIONS(4596), 3, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COMMA, - ACTIONS(3273), 5, + ACTIONS(3297), 6, anon_sym_BANG, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, + anon_sym_COMMA, anon_sym_COLON_COLON, - [63199] = 5, + [63195] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4622), 1, + ACTIONS(4593), 1, + anon_sym_LPAREN, + ACTIONS(3271), 2, + anon_sym_COLON, anon_sym_DOT_DOT, STATE(2017), 2, sym_line_comment, sym_block_comment, - ACTIONS(4620), 12, - anon_sym_SEMI, + ACTIONS(3267), 5, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_LT2, + ACTIONS(3273), 5, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_EQ, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, + anon_sym_COLON_COLON, [63227] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -162398,18 +162419,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(4630), 1, sym_metavariable, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2605), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2018), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, [63272] = 14, @@ -162429,18 +162450,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4632), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2019), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, [63317] = 14, @@ -162460,18 +162481,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4634), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2020), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, [63362] = 14, @@ -162491,18 +162512,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4636), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2021), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, [63407] = 14, @@ -162522,18 +162543,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4638), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2022), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, [63452] = 14, @@ -162553,18 +162574,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4640), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2023), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, [63497] = 14, @@ -162584,18 +162605,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4642), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2024), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, [63542] = 14, @@ -162615,21 +162636,48 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4644), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2025), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, - [63587] = 14, + [63587] = 10, + ACTIONS(19), 1, + anon_sym_LBRACE, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4483), 1, + anon_sym_trait, + ACTIONS(4646), 1, + anon_sym_impl, + STATE(384), 1, + sym_block, + STATE(3510), 1, + sym_label, + STATE(2026), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [63624] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -162644,23 +162692,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4646), 1, + ACTIONS(4648), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, - STATE(2026), 2, + STATE(2027), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, - [63632] = 14, + [63669] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -162675,23 +162723,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4648), 1, + ACTIONS(4650), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, - STATE(2027), 2, + STATE(2028), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, - [63677] = 14, + [63714] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -162706,49 +162754,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_const, ACTIONS(4630), 1, sym_metavariable, - ACTIONS(4650), 1, + ACTIONS(4652), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, - STATE(2028), 2, + STATE(2029), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, - [63722] = 10, - ACTIONS(19), 1, - anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4495), 1, - anon_sym_trait, - ACTIONS(4652), 1, - anon_sym_impl, - STATE(391), 1, - sym_block, - STATE(3414), 1, - sym_label, - STATE(2029), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, [63759] = 14, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -162766,18 +162787,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4654), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2030), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, [63804] = 14, @@ -162797,18 +162818,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4656), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2031), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, [63849] = 14, @@ -162828,18 +162849,18 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4658), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2655), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2032), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, + STATE(3120), 2, sym_const_parameter, sym_optional_type_parameter, [63894] = 14, @@ -162859,142 +162880,21 @@ static const uint16_t ts_small_parse_table[] = { sym_metavariable, ACTIONS(4660), 1, anon_sym_GT, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2075), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, + STATE(2632), 1, sym_lifetime, - STATE(2959), 1, + STATE(2847), 1, sym_constrained_type_parameter, STATE(2033), 2, sym_line_comment, - sym_block_comment, - STATE(3140), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63939] = 13, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4662), 1, - sym_identifier, - ACTIONS(4664), 1, - sym_metavariable, - STATE(1481), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2368), 1, - sym_lifetime, - STATE(2555), 1, - sym_constrained_type_parameter, - STATE(2034), 2, - sym_line_comment, - sym_block_comment, - STATE(2973), 2, - sym_const_parameter, - sym_optional_type_parameter, - [63981] = 12, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4666), 1, - sym_identifier, - ACTIONS(4668), 1, - anon_sym_RBRACE, - ACTIONS(4670), 1, - anon_sym_DOT_DOT, - ACTIONS(4672), 1, - anon_sym_COMMA, - ACTIONS(4674), 1, - sym_integer_literal, - STATE(1481), 1, - sym_attribute_item, - STATE(2438), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2035), 2, - sym_line_comment, - sym_block_comment, - STATE(2963), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [64021] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_DOT_DOT, - ACTIONS(3291), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2036), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3297), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [64049] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2037), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1206), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64073] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3307), 1, - anon_sym_DOT_DOT, - ACTIONS(3303), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2038), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3309), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [64101] = 11, + sym_block_comment, + STATE(3120), 2, + sym_const_parameter, + sym_optional_type_parameter, + [63939] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163007,13 +162907,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4676), 1, + ACTIONS(4662), 1, anon_sym_for, - STATE(1934), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1939), 1, + STATE(1945), 1, sym_parameters, - STATE(2039), 2, + STATE(2034), 2, sym_line_comment, sym_block_comment, ACTIONS(3241), 4, @@ -163021,53 +162921,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64139] = 7, + [63977] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1312), 1, - aux_sym_string_literal_token1, - ACTIONS(4680), 1, - sym_crate, - STATE(2203), 1, - sym_string_literal, - STATE(2040), 2, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(4666), 1, + anon_sym_COLON, + STATE(2035), 2, sym_line_comment, sym_block_comment, - ACTIONS(4678), 8, + ACTIONS(4664), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64169] = 7, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64005] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1312), 1, - aux_sym_string_literal_token1, - ACTIONS(4682), 1, - sym_crate, - STATE(2203), 1, - sym_string_literal, - STATE(2041), 2, + ACTIONS(4666), 1, + anon_sym_COLON, + ACTIONS(4668), 1, + anon_sym_COLON_COLON, + STATE(2036), 2, sym_line_comment, sym_block_comment, - ACTIONS(4678), 8, + ACTIONS(4664), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64199] = 11, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64033] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163080,13 +162978,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4684), 1, + ACTIONS(4670), 1, anon_sym_for, - STATE(1934), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1939), 1, + STATE(1945), 1, sym_parameters, - STATE(2042), 2, + STATE(2037), 2, sym_line_comment, sym_block_comment, ACTIONS(3241), 4, @@ -163094,12 +162992,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64237] = 4, + [64071] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2043), 2, + ACTIONS(3245), 1, + anon_sym_COLON, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4672), 1, + anon_sym_EQ, + STATE(1945), 1, + sym_parameters, + STATE(2365), 1, + sym_type_arguments, + STATE(2038), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 3, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [64111] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2039), 2, sym_line_comment, sym_block_comment, ACTIONS(1240), 11, @@ -163114,19 +163040,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64261] = 6, + [64135] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4688), 1, + ACTIONS(3271), 1, + anon_sym_DOT_DOT, + ACTIONS(3267), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2040), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3273), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [64163] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4676), 1, anon_sym_COLON, - ACTIONS(4690), 1, + ACTIONS(4678), 1, anon_sym_COLON_COLON, - STATE(2044), 2, + STATE(2041), 2, sym_line_comment, sym_block_comment, - ACTIONS(4686), 9, + ACTIONS(4674), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163136,19 +163084,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64289] = 6, + [64191] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4680), 1, + sym_identifier, + ACTIONS(4682), 1, + anon_sym_RBRACE, + ACTIONS(4684), 1, + anon_sym_DOT_DOT, + ACTIONS(4686), 1, + anon_sym_COMMA, ACTIONS(4688), 1, + sym_integer_literal, + STATE(1476), 1, + sym_attribute_item, + STATE(2395), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2042), 2, + sym_line_comment, + sym_block_comment, + STATE(2851), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [64231] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4692), 1, anon_sym_COLON, - STATE(2045), 2, + ACTIONS(4694), 1, + anon_sym_COLON_COLON, + STATE(2043), 2, sym_line_comment, sym_block_comment, - ACTIONS(4686), 9, + ACTIONS(4690), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163158,30 +163134,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64317] = 7, + [64259] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1312), 1, - aux_sym_string_literal_token1, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4696), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, + STATE(1945), 1, + sym_parameters, + STATE(2044), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3241), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [64297] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3295), 1, + anon_sym_DOT_DOT, + ACTIONS(3291), 2, + anon_sym_LBRACE, + anon_sym_LT2, + STATE(2045), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3297), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [64325] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, ACTIONS(4692), 1, - sym_crate, - STATE(2203), 1, - sym_string_literal, + anon_sym_COLON, STATE(2046), 2, sym_line_comment, sym_block_comment, - ACTIONS(4678), 8, + ACTIONS(4690), 9, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64347] = 4, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64353] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163189,7 +163213,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2047), 2, sym_line_comment, sym_block_comment, - ACTIONS(1232), 11, + ACTIONS(1236), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -163201,85 +163225,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64371] = 4, + [64377] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4668), 1, + anon_sym_COLON_COLON, + ACTIONS(4692), 1, + anon_sym_COLON, STATE(2048), 2, sym_line_comment, sym_block_comment, - ACTIONS(1236), 11, + ACTIONS(4690), 9, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, - anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64395] = 13, + [64405] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4624), 1, + ACTIONS(4680), 1, sym_identifier, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4630), 1, - sym_metavariable, - STATE(1481), 1, + ACTIONS(4684), 1, + anon_sym_DOT_DOT, + ACTIONS(4688), 1, + sym_integer_literal, + ACTIONS(4698), 1, + anon_sym_RBRACE, + ACTIONS(4700), 1, + anon_sym_COMMA, + STATE(1476), 1, sym_attribute_item, - STATE(2050), 1, + STATE(2395), 1, aux_sym_enum_variant_list_repeat1, - STATE(2574), 1, - sym_lifetime, - STATE(2959), 1, - sym_constrained_type_parameter, STATE(2049), 2, sym_line_comment, sym_block_comment, - STATE(3140), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64437] = 13, + STATE(2770), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [64445] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4694), 1, - sym_identifier, - ACTIONS(4696), 1, - sym_metavariable, - STATE(1069), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1481), 1, - sym_attribute_item, - STATE(2721), 1, - sym_lifetime, - STATE(2864), 1, - sym_constrained_type_parameter, + ACTIONS(1308), 1, + aux_sym_string_literal_token1, + ACTIONS(4704), 1, + sym_crate, + STATE(2179), 1, + sym_string_literal, STATE(2050), 2, sym_line_comment, sym_block_comment, - STATE(3304), 2, - sym_const_parameter, - sym_optional_type_parameter, - [64479] = 13, + ACTIONS(4702), 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, + [64475] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163290,25 +163309,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(4628), 1, anon_sym_const, - ACTIONS(4698), 1, + ACTIONS(4706), 1, sym_identifier, - ACTIONS(4700), 1, + ACTIONS(4708), 1, sym_metavariable, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, STATE(2052), 1, aux_sym_enum_variant_list_repeat1, - STATE(2443), 1, + STATE(2436), 1, sym_lifetime, - STATE(2718), 1, + STATE(2512), 1, sym_constrained_type_parameter, STATE(2051), 2, sym_line_comment, sym_block_comment, - STATE(2751), 2, + STATE(2778), 2, sym_const_parameter, sym_optional_type_parameter, - [64521] = 13, + [64517] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163319,253 +163338,323 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(4628), 1, anon_sym_const, - ACTIONS(4702), 1, + ACTIONS(4710), 1, sym_identifier, - ACTIONS(4704), 1, + ACTIONS(4712), 1, sym_metavariable, - STATE(1069), 1, + STATE(1065), 1, aux_sym_enum_variant_list_repeat1, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2432), 1, + STATE(2447), 1, sym_lifetime, - STATE(2661), 1, + STATE(2534), 1, sym_constrained_type_parameter, STATE(2052), 2, sym_line_comment, sym_block_comment, - STATE(2818), 2, + STATE(2775), 2, sym_const_parameter, sym_optional_type_parameter, - [64563] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + [64559] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4706), 1, - anon_sym_move, - STATE(397), 1, - sym_block, - STATE(3414), 1, - sym_label, STATE(2053), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64597] = 12, + ACTIONS(1232), 11, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64583] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, ACTIONS(4666), 1, - sym_identifier, - ACTIONS(4670), 1, - anon_sym_DOT_DOT, - ACTIONS(4674), 1, - sym_integer_literal, - ACTIONS(4708), 1, - anon_sym_RBRACE, - ACTIONS(4710), 1, - anon_sym_COMMA, - STATE(1481), 1, - sym_attribute_item, - STATE(2438), 1, - aux_sym_enum_variant_list_repeat1, + anon_sym_COLON, + ACTIONS(4694), 1, + anon_sym_COLON_COLON, STATE(2054), 2, sym_line_comment, sym_block_comment, - STATE(2741), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [64637] = 9, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(4664), 9, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64611] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(2957), 1, anon_sym_SQUOTE, - ACTIONS(4712), 1, + ACTIONS(4628), 1, + anon_sym_const, + ACTIONS(4714), 1, sym_identifier, - STATE(399), 1, - sym_block, - STATE(3414), 1, - sym_label, + ACTIONS(4716), 1, + sym_metavariable, + STATE(1065), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1476), 1, + sym_attribute_item, + STATE(2390), 1, + sym_lifetime, + STATE(2531), 1, + sym_constrained_type_parameter, STATE(2055), 2, sym_line_comment, sym_block_comment, - ACTIONS(4714), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [64671] = 6, + STATE(3011), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64653] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4688), 1, - anon_sym_COLON, - ACTIONS(4716), 1, - anon_sym_COLON_COLON, STATE(2056), 2, sym_line_comment, sym_block_comment, - ACTIONS(4686), 9, + ACTIONS(1244), 11, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [64699] = 11, + [64677] = 13, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(2957), 1, + anon_sym_SQUOTE, + ACTIONS(4628), 1, + anon_sym_const, + ACTIONS(4718), 1, + sym_identifier, + ACTIONS(4720), 1, + sym_metavariable, + STATE(1476), 1, + sym_attribute_item, + STATE(2055), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2401), 1, + sym_lifetime, + STATE(2693), 1, + sym_constrained_type_parameter, + STATE(2057), 2, + sym_line_comment, + sym_block_comment, + STATE(2959), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64719] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4471), 1, + ACTIONS(4521), 1, anon_sym_COLON, - ACTIONS(4473), 1, + ACTIONS(4523), 1, anon_sym_BANG, - ACTIONS(4475), 1, + ACTIONS(4525), 1, anon_sym_DOT_DOT, ACTIONS(4531), 1, anon_sym_COLON_COLON, - STATE(1933), 1, + STATE(1930), 1, sym_type_arguments, - ACTIONS(4477), 2, + ACTIONS(4527), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2057), 2, + STATE(2058), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 3, + ACTIONS(4519), 3, anon_sym_RPAREN, anon_sym_PIPE, anon_sym_COMMA, - [64737] = 11, + [64757] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4718), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, - STATE(2058), 2, + STATE(2059), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(1206), 11, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [64781] = 13, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(2957), 1, + anon_sym_SQUOTE, + ACTIONS(4624), 1, + sym_identifier, + ACTIONS(4628), 1, + anon_sym_const, + ACTIONS(4630), 1, + sym_metavariable, + STATE(1476), 1, + sym_attribute_item, + STATE(2075), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2632), 1, + sym_lifetime, + STATE(2847), 1, + sym_constrained_type_parameter, + STATE(2060), 2, + sym_line_comment, + sym_block_comment, + STATE(3120), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64823] = 9, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64775] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4722), 1, + sym_identifier, + STATE(380), 1, + sym_block, + STATE(3510), 1, + sym_label, + STATE(2061), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4724), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64857] = 13, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(2957), 1, + anon_sym_SQUOTE, + ACTIONS(4628), 1, + anon_sym_const, + ACTIONS(4718), 1, + sym_identifier, ACTIONS(4720), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, - STATE(2059), 2, + sym_metavariable, + STATE(1476), 1, + sym_attribute_item, + STATE(2055), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2326), 1, + sym_lifetime, + STATE(2693), 1, + sym_constrained_type_parameter, + STATE(2062), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, + STATE(2959), 2, + sym_const_parameter, + sym_optional_type_parameter, + [64899] = 9, + ACTIONS(19), 1, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64813] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2060), 2, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4726), 1, + anon_sym_move, + STATE(389), 1, + sym_block, + STATE(3510), 1, + sym_label, + STATE(2063), 2, sym_line_comment, sym_block_comment, - ACTIONS(1244), 11, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [64837] = 11, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64933] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4722), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, - STATE(2061), 2, + ACTIONS(1308), 1, + aux_sym_string_literal_token1, + ACTIONS(4728), 1, + sym_crate, + STATE(2179), 1, + sym_string_literal, + STATE(2064), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(4702), 8, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64875] = 11, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [64963] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163578,13 +163667,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4724), 1, + ACTIONS(4730), 1, anon_sym_for, - STATE(1934), 1, + STATE(1931), 1, sym_type_arguments, - STATE(1939), 1, + STATE(1945), 1, sym_parameters, - STATE(2062), 2, + STATE(2065), 2, sym_line_comment, sym_block_comment, ACTIONS(3241), 4, @@ -163592,20 +163681,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [64913] = 6, + [65001] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3279), 1, + ACTIONS(3311), 1, anon_sym_DOT_DOT, - ACTIONS(3275), 2, + ACTIONS(3307), 2, anon_sym_LBRACE, anon_sym_LT2, - STATE(2063), 2, + STATE(2066), 2, sym_line_comment, sym_block_comment, - ACTIONS(3281), 8, + ACTIONS(3313), 8, anon_sym_LPAREN, anon_sym_EQ_GT, anon_sym_BANG, @@ -163614,65 +163703,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ, anon_sym_COLON_COLON, anon_sym_if, - [64941] = 11, + [65029] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, + ACTIONS(3279), 1, + anon_sym_DOT_DOT, + ACTIONS(3275), 2, + anon_sym_LBRACE, anon_sym_LT2, - ACTIONS(4726), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, - STATE(2064), 2, + STATE(2067), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [64979] = 6, + ACTIONS(3281), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [65057] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4730), 1, - anon_sym_COLON, + ACTIONS(1308), 1, + aux_sym_string_literal_token1, ACTIONS(4732), 1, - anon_sym_COLON_COLON, - STATE(2065), 2, + sym_crate, + STATE(2179), 1, + sym_string_literal, + STATE(2068), 2, sym_line_comment, sym_block_comment, - ACTIONS(4728), 9, + ACTIONS(4702), 8, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65007] = 6, + anon_sym_LBRACE, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [65087] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4690), 1, + ACTIONS(4678), 1, anon_sym_COLON_COLON, ACTIONS(4736), 1, anon_sym_COLON, - STATE(2066), 2, + STATE(2069), 2, sym_line_comment, sym_block_comment, ACTIONS(4734), 9, @@ -163685,65 +163770,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65035] = 6, + [65115] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, - ACTIONS(3267), 2, - anon_sym_LBRACE, - anon_sym_LT2, - STATE(2067), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3273), 8, + ACTIONS(4443), 1, anon_sym_LPAREN, - anon_sym_EQ_GT, + ACTIONS(4445), 1, anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [65063] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4574), 1, + ACTIONS(4447), 1, anon_sym_COLON_COLON, - ACTIONS(4736), 1, - anon_sym_COLON, - STATE(2068), 2, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4738), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, + STATE(1945), 1, + sym_parameters, + STATE(2070), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 9, + ACTIONS(3241), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65091] = 7, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65153] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1312), 1, + ACTIONS(1308), 1, aux_sym_string_literal_token1, - ACTIONS(4738), 1, + ACTIONS(4740), 1, sym_crate, - STATE(2203), 1, + STATE(2179), 1, sym_string_literal, - STATE(2069), 2, + STATE(2071), 2, sym_line_comment, sym_block_comment, - ACTIONS(4678), 8, + ACTIONS(4702), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_async, @@ -163752,64 +163820,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [65121] = 13, + [65183] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(2957), 1, - anon_sym_SQUOTE, - ACTIONS(4628), 1, - anon_sym_const, - ACTIONS(4662), 1, - sym_identifier, - ACTIONS(4664), 1, - sym_metavariable, - STATE(1481), 1, - sym_attribute_item, - STATE(2073), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2441), 1, - sym_lifetime, - STATE(2555), 1, - sym_constrained_type_parameter, - STATE(2070), 2, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, + anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4742), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, + STATE(1945), 1, + sym_parameters, + STATE(2072), 2, sym_line_comment, sym_block_comment, - STATE(2973), 2, - sym_const_parameter, - sym_optional_type_parameter, - [65163] = 6, + ACTIONS(3241), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65221] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4716), 1, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4447), 1, anon_sym_COLON_COLON, - ACTIONS(4736), 1, - anon_sym_COLON, - STATE(2071), 2, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4744), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, + STATE(1945), 1, + sym_parameters, + STATE(2073), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 9, + ACTIONS(3241), 4, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65191] = 12, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [65259] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3245), 1, - anon_sym_COLON, ACTIONS(4443), 1, anon_sym_LPAREN, ACTIONS(4445), 1, @@ -163818,20 +163887,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COLON_COLON, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4740), 1, - anon_sym_EQ, - STATE(1939), 1, - sym_parameters, - STATE(2330), 1, + ACTIONS(4746), 1, + anon_sym_for, + STATE(1931), 1, sym_type_arguments, - STATE(2072), 2, + STATE(1945), 1, + sym_parameters, + STATE(2074), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 3, + ACTIONS(3241), 4, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [65231] = 13, + anon_sym_where, + [65297] = 13, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163842,151 +163912,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(4628), 1, anon_sym_const, - ACTIONS(4742), 1, + ACTIONS(4748), 1, sym_identifier, - ACTIONS(4744), 1, + ACTIONS(4750), 1, sym_metavariable, - STATE(1069), 1, + STATE(1065), 1, aux_sym_enum_variant_list_repeat1, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2412), 1, - sym_lifetime, STATE(2564), 1, + sym_lifetime, + STATE(2945), 1, sym_constrained_type_parameter, - STATE(2073), 2, + STATE(2075), 2, sym_line_comment, sym_block_comment, - STATE(2952), 2, + STATE(3089), 2, sym_const_parameter, sym_optional_type_parameter, - [65273] = 6, + [65339] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4732), 1, - anon_sym_COLON_COLON, - ACTIONS(4748), 1, - anon_sym_COLON, - STATE(2074), 2, + STATE(2076), 2, sym_line_comment, sym_block_comment, - ACTIONS(4746), 9, + ACTIONS(4752), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, anon_sym_EQ, anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65301] = 11, + [65362] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4447), 1, - anon_sym_COLON_COLON, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4750), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, - STATE(1939), 1, - sym_parameters, - STATE(2075), 2, + STATE(2077), 2, sym_line_comment, sym_block_comment, - ACTIONS(3241), 4, + ACTIONS(4754), 10, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [65339] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4752), 1, - sym_identifier, - ACTIONS(4754), 1, + anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(4756), 1, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(4758), 1, - sym_crate, - STATE(1481), 1, - sym_attribute_item, - STATE(2187), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2805), 1, - sym_enum_variant, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2076), 2, - sym_line_comment, - sym_block_comment, - [65380] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4666), 1, - sym_identifier, - ACTIONS(4670), 1, - anon_sym_DOT_DOT, - ACTIONS(4674), 1, - sym_integer_literal, - ACTIONS(4760), 1, - anon_sym_RBRACE, - STATE(1481), 1, - sym_attribute_item, - STATE(2438), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2077), 2, - sym_line_comment, - sym_block_comment, - STATE(3215), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [65417] = 8, + anon_sym_else, + anon_sym_in, + [65385] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3965), 1, - anon_sym_LT2, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - ACTIONS(4762), 1, - anon_sym_BANG, - STATE(1611), 1, - sym_type_arguments, STATE(2078), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65448] = 4, + ACTIONS(4756), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65408] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -163994,7 +163995,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2079), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 10, + ACTIONS(4453), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164005,7 +164006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65471] = 4, + [65431] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164013,7 +164014,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2080), 2, sym_line_comment, sym_block_comment, - ACTIONS(4766), 10, + ACTIONS(4664), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164024,71 +164025,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65494] = 13, - ACTIONS(67), 1, - anon_sym_pub, + [65454] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4768), 1, - sym_identifier, - ACTIONS(4770), 1, - anon_sym_RBRACE, - ACTIONS(4772), 1, - anon_sym_COMMA, - STATE(1481), 1, - sym_attribute_item, - STATE(2179), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2835), 1, - sym_field_declaration, - STATE(3555), 1, - sym_visibility_modifier, STATE(2081), 2, sym_line_comment, sym_block_comment, - [65535] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4768), 1, - sym_identifier, - ACTIONS(4774), 1, - anon_sym_RBRACE, - ACTIONS(4776), 1, - anon_sym_COMMA, - STATE(1481), 1, - sym_attribute_item, - STATE(2197), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2997), 1, - sym_field_declaration, - STATE(3555), 1, - sym_visibility_modifier, - STATE(2082), 2, - sym_line_comment, - sym_block_comment, - [65576] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2083), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4778), 10, + ACTIONS(4758), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164099,15 +164044,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65599] = 4, + [65477] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2084), 2, + STATE(2082), 2, sym_line_comment, sym_block_comment, - ACTIONS(4780), 10, + ACTIONS(4760), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164118,15 +164063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65622] = 4, + [65500] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2085), 2, + STATE(2083), 2, sym_line_comment, sym_block_comment, - ACTIONS(4782), 10, + ACTIONS(4762), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164137,15 +164082,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65645] = 4, + [65523] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2086), 2, + STATE(2084), 2, sym_line_comment, sym_block_comment, - ACTIONS(4784), 10, + ACTIONS(4764), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164156,15 +164101,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65668] = 4, + [65546] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2087), 2, + STATE(2085), 2, sym_line_comment, sym_block_comment, - ACTIONS(4686), 10, + ACTIONS(4766), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164175,15 +164120,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65691] = 4, + [65569] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2088), 2, + STATE(2086), 2, sym_line_comment, sym_block_comment, - ACTIONS(4786), 10, + ACTIONS(4768), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164194,15 +164139,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65714] = 4, + [65592] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2089), 2, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4680), 1, + sym_identifier, + ACTIONS(4684), 1, + anon_sym_DOT_DOT, + ACTIONS(4688), 1, + sym_integer_literal, + ACTIONS(4770), 1, + anon_sym_RBRACE, + STATE(1476), 1, + sym_attribute_item, + STATE(2395), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2087), 2, sym_line_comment, sym_block_comment, - ACTIONS(4788), 10, + STATE(3232), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [65629] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2088), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4772), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164213,26 +164184,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65737] = 4, + [65652] = 13, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2090), 2, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + sym_identifier, + ACTIONS(4776), 1, + anon_sym_RBRACE, + ACTIONS(4778), 1, + anon_sym_COMMA, + ACTIONS(4780), 1, + sym_crate, + STATE(1476), 1, + sym_attribute_item, + STATE(2181), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2762), 1, + sym_enum_variant, + STATE(3603), 1, + sym_visibility_modifier, + STATE(2089), 2, sym_line_comment, sym_block_comment, - ACTIONS(4790), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + [65693] = 13, + ACTIONS(67), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4782), 1, + sym_identifier, + ACTIONS(4784), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4786), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [65760] = 4, + STATE(1476), 1, + sym_attribute_item, + STATE(2187), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2791), 1, + sym_field_declaration, + STATE(3560), 1, + sym_visibility_modifier, + STATE(2090), 2, + sym_line_comment, + sym_block_comment, + [65734] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164240,7 +164248,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2091), 2, sym_line_comment, sym_block_comment, - ACTIONS(4792), 10, + ACTIONS(4690), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164251,7 +164259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65783] = 4, + [65757] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164259,7 +164267,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2092), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 10, + ACTIONS(4788), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164270,30 +164278,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65806] = 8, + [65780] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4473), 1, - anon_sym_BANG, - ACTIONS(4568), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, STATE(2093), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [65837] = 4, + ACTIONS(4790), 10, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_else, + anon_sym_in, + [65803] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164301,7 +164305,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2094), 2, sym_line_comment, sym_block_comment, - ACTIONS(4794), 10, + ACTIONS(4792), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164312,7 +164316,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65860] = 4, + [65826] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164320,7 +164324,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2095), 2, sym_line_comment, sym_block_comment, - ACTIONS(4796), 10, + ACTIONS(4794), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164331,7 +164335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65883] = 4, + [65849] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164339,7 +164343,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2096), 2, sym_line_comment, sym_block_comment, - ACTIONS(4798), 10, + ACTIONS(4796), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164350,7 +164354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65906] = 4, + [65872] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164358,7 +164362,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2097), 2, sym_line_comment, sym_block_comment, - ACTIONS(4800), 10, + ACTIONS(4798), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164369,7 +164373,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65929] = 4, + [65895] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164377,7 +164381,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2098), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 10, + ACTIONS(4800), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164388,7 +164392,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65952] = 4, + [65918] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164396,7 +164400,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2099), 2, sym_line_comment, sym_block_comment, - ACTIONS(4804), 10, + ACTIONS(4802), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164407,7 +164411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65975] = 4, + [65941] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164415,7 +164419,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2100), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 10, + ACTIONS(1366), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164426,7 +164430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [65998] = 4, + [65964] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164434,7 +164438,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2101), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 10, + ACTIONS(4804), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164445,7 +164449,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66021] = 4, + [65987] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164453,7 +164457,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2102), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 10, + ACTIONS(4806), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164464,7 +164468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66044] = 4, + [66010] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164472,7 +164476,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2103), 2, sym_line_comment, sym_block_comment, - ACTIONS(4812), 10, + ACTIONS(4808), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164483,7 +164487,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66067] = 4, + [66033] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164491,26 +164495,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(2104), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66090] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2105), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(1450), 10, + ACTIONS(4810), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164521,41 +164506,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66113] = 11, + [66056] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4666), 1, + ACTIONS(4680), 1, sym_identifier, - ACTIONS(4670), 1, + ACTIONS(4684), 1, anon_sym_DOT_DOT, - ACTIONS(4674), 1, + ACTIONS(4688), 1, sym_integer_literal, - ACTIONS(4816), 1, + ACTIONS(4812), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2438), 1, + STATE(2395), 1, aux_sym_enum_variant_list_repeat1, - STATE(2106), 2, + STATE(2105), 2, sym_line_comment, sym_block_comment, - STATE(3215), 3, + STATE(3232), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [66150] = 4, + [66093] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2107), 2, + STATE(2106), 2, sym_line_comment, sym_block_comment, - ACTIONS(4818), 10, + ACTIONS(4814), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164566,15 +164551,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66173] = 4, + [66116] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2108), 2, + STATE(2107), 2, sym_line_comment, sym_block_comment, - ACTIONS(4820), 10, + ACTIONS(4816), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164585,72 +164570,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66196] = 4, + [66139] = 13, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2109), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4822), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + sym_identifier, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4818), 1, anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + ACTIONS(4820), 1, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66219] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2110), 2, + STATE(1476), 1, + sym_attribute_item, + STATE(2188), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3012), 1, + sym_enum_variant, + STATE(3603), 1, + sym_visibility_modifier, + STATE(2108), 2, sym_line_comment, sym_block_comment, - ACTIONS(4824), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66242] = 4, + [66180] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2111), 2, + ACTIONS(1564), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(2100), 1, + sym_block, + STATE(3582), 1, + sym_label, + STATE(2109), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 10, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66265] = 4, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66211] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2112), 2, + STATE(2110), 2, sym_line_comment, sym_block_comment, - ACTIONS(4828), 10, + ACTIONS(4822), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164661,41 +164640,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66288] = 11, + [66234] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4666), 1, + ACTIONS(4680), 1, sym_identifier, - ACTIONS(4670), 1, + ACTIONS(4684), 1, anon_sym_DOT_DOT, - ACTIONS(4674), 1, + ACTIONS(4688), 1, sym_integer_literal, - ACTIONS(4830), 1, + ACTIONS(4824), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2438), 1, + STATE(2395), 1, aux_sym_enum_variant_list_repeat1, - STATE(2113), 2, + STATE(2111), 2, sym_line_comment, sym_block_comment, - STATE(3215), 3, + STATE(3232), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [66325] = 4, + [66271] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2114), 2, + STATE(2112), 2, sym_line_comment, sym_block_comment, - ACTIONS(4832), 10, + ACTIONS(4826), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164706,53 +164685,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66348] = 4, + [66294] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2115), 2, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4455), 1, + anon_sym_LPAREN, + ACTIONS(4459), 1, + anon_sym_COLON, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(4828), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2113), 2, sym_line_comment, sym_block_comment, - ACTIONS(4834), 10, - anon_sym_SEMI, + ACTIONS(4453), 3, anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, anon_sym_PIPE, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66371] = 4, + [66329] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2116), 2, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4830), 1, + anon_sym_LBRACE, + STATE(1933), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + STATE(2114), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 10, + ACTIONS(3299), 5, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_COLON, - anon_sym_PIPE, - anon_sym_EQ, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_else, - anon_sym_in, - [66394] = 4, + [66362] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2117), 2, + STATE(2115), 2, sym_line_comment, sym_block_comment, - ACTIONS(4836), 10, + ACTIONS(4832), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164763,7 +164753,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66417] = 10, + [66385] = 13, + ACTIONS(67), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4782), 1, + sym_identifier, + ACTIONS(4834), 1, + anon_sym_RBRACE, + ACTIONS(4836), 1, + anon_sym_COMMA, + STATE(1476), 1, + sym_attribute_item, + STATE(2226), 1, + aux_sym_enum_variant_list_repeat1, + STATE(2814), 1, + sym_field_declaration, + STATE(3560), 1, + sym_visibility_modifier, + STATE(2116), 2, + sym_line_comment, + sym_block_comment, + [66426] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -164776,50 +164794,98 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT, ACTIONS(4844), 1, anon_sym_COLON_COLON, - STATE(1933), 1, + STATE(1930), 1, sym_type_arguments, ACTIONS(4842), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2118), 2, + STATE(2117), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 3, + ACTIONS(4519), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [66452] = 8, + [66461] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1564), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(2105), 1, - sym_block, - STATE(3588), 1, - sym_label, + ACTIONS(3945), 1, + anon_sym_LT2, + ACTIONS(4095), 1, + anon_sym_COLON_COLON, + ACTIONS(4846), 1, + anon_sym_BANG, + STATE(1581), 1, + sym_type_arguments, + STATE(2118), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66492] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(3541), 1, + anon_sym_COLON_COLON, + ACTIONS(4848), 1, + anon_sym_BANG, + STATE(1048), 1, + sym_type_arguments, STATE(2119), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, + ACTIONS(3323), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66483] = 4, + [66523] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4525), 1, + anon_sym_DOT_DOT, + ACTIONS(4533), 1, + anon_sym_COLON_COLON, + STATE(1930), 1, + sym_type_arguments, + ACTIONS(4527), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2120), 2, sym_line_comment, sym_block_comment, - ACTIONS(4846), 10, + ACTIONS(4519), 3, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_COMMA, + [66558] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2121), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4850), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164830,15 +164896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66506] = 4, + [66581] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2121), 2, + STATE(2122), 2, sym_line_comment, sym_block_comment, - ACTIONS(4848), 10, + ACTIONS(4852), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, @@ -164849,464 +164915,355 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_else, anon_sym_in, - [66529] = 11, + [66604] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4666), 1, + ACTIONS(4680), 1, sym_identifier, - ACTIONS(4670), 1, + ACTIONS(4684), 1, anon_sym_DOT_DOT, - ACTIONS(4674), 1, + ACTIONS(4688), 1, sym_integer_literal, - ACTIONS(4850), 1, + ACTIONS(4854), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2438), 1, + STATE(2395), 1, aux_sym_enum_variant_list_repeat1, - STATE(2122), 2, + STATE(2123), 2, sym_line_comment, sym_block_comment, - STATE(3215), 3, + STATE(3232), 3, sym_shorthand_field_initializer, sym_field_initializer, sym_base_field_initializer, - [66566] = 8, + [66641] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(3467), 1, - anon_sym_COLON_COLON, - ACTIONS(4852), 1, + ACTIONS(4523), 1, anon_sym_BANG, - STATE(1068), 1, + ACTIONS(4554), 1, + anon_sym_COLON_COLON, + STATE(1930), 1, sym_type_arguments, - STATE(2123), 2, + STATE(2124), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, + ACTIONS(3323), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [66597] = 10, + [66672] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4473), 1, - anon_sym_BANG, - ACTIONS(4475), 1, - anon_sym_DOT_DOT, - ACTIONS(4533), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, - ACTIONS(4477), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2124), 2, + STATE(2125), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 3, + ACTIONS(4856), 10, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [66632] = 13, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4752), 1, - sym_identifier, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4854), 1, anon_sym_RBRACE, - ACTIONS(4856), 1, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - STATE(1481), 1, - sym_attribute_item, - STATE(2215), 1, - aux_sym_enum_variant_list_repeat1, - STATE(2918), 1, - sym_enum_variant, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2125), 2, - sym_line_comment, - sym_block_comment, - [66673] = 10, + anon_sym_else, + anon_sym_in, + [66695] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(4858), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2126), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, + ACTIONS(4858), 10, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_COLON, anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [66708] = 9, + anon_sym_else, + anon_sym_in, + [66718] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4860), 1, - anon_sym_LBRACE, - STATE(1935), 1, - sym_type_arguments, - STATE(1948), 1, - sym_parameters, STATE(2127), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 5, + ACTIONS(4860), 10, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACK, - anon_sym_PLUS, + anon_sym_RBRACE, + anon_sym_COLON, + anon_sym_PIPE, + anon_sym_EQ, anon_sym_COMMA, - [66741] = 10, + anon_sym_else, + anon_sym_in, + [66741] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4666), 1, - sym_identifier, - ACTIONS(4670), 1, + ACTIONS(3271), 1, anon_sym_DOT_DOT, - ACTIONS(4674), 1, - sym_integer_literal, - STATE(1481), 1, - sym_attribute_item, - STATE(2438), 1, - aux_sym_enum_variant_list_repeat1, STATE(2128), 2, sym_line_comment, sym_block_comment, - STATE(3215), 3, - sym_shorthand_field_initializer, - sym_field_initializer, - sym_base_field_initializer, - [66775] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4475), 1, - anon_sym_DOT_DOT, - ACTIONS(4533), 1, - anon_sym_COLON_COLON, - ACTIONS(4862), 1, - anon_sym_RBRACK, - ACTIONS(3311), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4469), 2, + ACTIONS(3273), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, - anon_sym_COMMA, - ACTIONS(4477), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2129), 2, - sym_line_comment, - sym_block_comment, - [66807] = 12, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4768), 1, - sym_identifier, - ACTIONS(4865), 1, - anon_sym_RBRACE, - STATE(1481), 1, - sym_attribute_item, - STATE(2218), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3260), 1, - sym_field_declaration, - STATE(3555), 1, - sym_visibility_modifier, - STATE(2130), 2, - sym_line_comment, - sym_block_comment, - [66845] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4869), 1, - anon_sym_PLUS, - STATE(2131), 3, - sym_line_comment, - sym_block_comment, - aux_sym_trait_bounds_repeat1, - ACTIONS(4867), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [66869] = 12, - ACTIONS(67), 1, - anon_sym_pub, + anon_sym_COLON_COLON, + anon_sym_if, + [66765] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4752), 1, + ACTIONS(4680), 1, sym_identifier, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4872), 1, - anon_sym_RBRACE, - STATE(1481), 1, + ACTIONS(4684), 1, + anon_sym_DOT_DOT, + ACTIONS(4688), 1, + sym_integer_literal, + STATE(1476), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2395), 1, aux_sym_enum_variant_list_repeat1, - STATE(3249), 1, - sym_enum_variant, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2132), 2, + STATE(2129), 2, sym_line_comment, sym_block_comment, - [66907] = 9, + STATE(3232), 3, + sym_shorthand_field_initializer, + sym_field_initializer, + sym_base_field_initializer, + [66799] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4874), 1, + ACTIONS(4603), 1, anon_sym_LPAREN, - ACTIONS(4879), 1, - anon_sym_LBRACK, - ACTIONS(4882), 1, - anon_sym_LBRACE, - STATE(3319), 1, - sym_token_tree_pattern, - STATE(3380), 1, - sym_macro_rule, - ACTIONS(4877), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(2133), 3, + ACTIONS(4607), 1, + anon_sym_BANG, + ACTIONS(4611), 1, + anon_sym_DOT_DOT, + ACTIONS(4862), 1, + anon_sym_COLON_COLON, + ACTIONS(4613), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2130), 2, sym_line_comment, sym_block_comment, - aux_sym_macro_definition_repeat1, - [66939] = 6, + ACTIONS(4453), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [66831] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4887), 1, - anon_sym_PLUS, - STATE(2131), 1, - aux_sym_trait_bounds_repeat1, - STATE(2134), 2, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4864), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + STATE(2131), 2, sym_line_comment, sym_block_comment, - ACTIONS(4885), 7, + ACTIONS(3299), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, + anon_sym_PLUS, anon_sym_where, - [66965] = 12, + [66863] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4889), 1, + ACTIONS(4866), 1, anon_sym_SEMI, - ACTIONS(4891), 1, + ACTIONS(4868), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(4870), 1, anon_sym_LBRACE, - ACTIONS(4895), 1, + ACTIONS(4872), 1, anon_sym_LT, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - STATE(583), 1, + STATE(697), 1, sym_field_declaration_list, - STATE(2276), 1, + STATE(2239), 1, sym_type_parameters, - STATE(3001), 1, + STATE(2875), 1, sym_ordered_field_declaration_list, - STATE(3077), 1, + STATE(3060), 1, sym_where_clause, - STATE(2135), 2, + STATE(2132), 2, + sym_line_comment, + sym_block_comment, + [66901] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4876), 1, + anon_sym_SEMI, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(648), 1, + sym_declaration_list, + STATE(2133), 2, sym_line_comment, sym_block_comment, - [67003] = 9, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [66929] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4606), 1, - anon_sym_LPAREN, - ACTIONS(4610), 1, - anon_sym_BANG, - ACTIONS(4614), 1, + ACTIONS(3311), 1, anon_sym_DOT_DOT, - ACTIONS(4899), 1, - anon_sym_COLON_COLON, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2136), 2, + STATE(2134), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, + ACTIONS(3313), 8, + anon_sym_LPAREN, anon_sym_EQ_GT, + anon_sym_BANG, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, anon_sym_if, - [67035] = 9, + [66953] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4463), 1, + ACTIONS(3299), 1, + anon_sym_PLUS, + ACTIONS(4519), 1, + anon_sym_PIPE, + ACTIONS(4521), 1, + anon_sym_COLON, + ACTIONS(4525), 1, anon_sym_DOT_DOT, - ACTIONS(4901), 1, + ACTIONS(4531), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, + ACTIONS(4527), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2137), 2, + ACTIONS(4880), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2135), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_COMMA, - [67067] = 12, + [66987] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4893), 1, - anon_sym_LBRACE, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4903), 1, - anon_sym_SEMI, - STATE(639), 1, - sym_field_declaration_list, - STATE(2277), 1, - sym_type_parameters, - STATE(3006), 1, - sym_ordered_field_declaration_list, - STATE(3061), 1, - sym_where_clause, - STATE(2138), 2, + ACTIONS(4519), 1, + anon_sym_PIPE, + ACTIONS(4521), 1, + anon_sym_COLON, + ACTIONS(4525), 1, + anon_sym_DOT_DOT, + ACTIONS(4574), 1, + anon_sym_COLON_COLON, + ACTIONS(4527), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2136), 2, sym_line_comment, sym_block_comment, - [67105] = 7, + ACTIONS(3299), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [67019] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4905), 1, - anon_sym_SEMI, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1359), 1, - sym_declaration_list, - STATE(2139), 2, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + STATE(1048), 1, + sym_type_arguments, + STATE(2137), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, + ACTIONS(3323), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67133] = 12, - ACTIONS(67), 1, - anon_sym_pub, + [67047] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4768), 1, - sym_identifier, - ACTIONS(4909), 1, - anon_sym_RBRACE, - STATE(1481), 1, - sym_attribute_item, - STATE(2218), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3260), 1, - sym_field_declaration, - STATE(3555), 1, - sym_visibility_modifier, - STATE(2140), 2, + ACTIONS(3279), 1, + anon_sym_DOT_DOT, + STATE(2138), 2, sym_line_comment, sym_block_comment, - [67171] = 12, + ACTIONS(3281), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [67071] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -165315,136 +165272,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4752), 1, + ACTIONS(4774), 1, sym_identifier, - ACTIONS(4758), 1, + ACTIONS(4780), 1, sym_crate, - ACTIONS(4911), 1, + ACTIONS(4885), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2212), 1, aux_sym_enum_variant_list_repeat1, - STATE(3249), 1, + STATE(3256), 1, sym_enum_variant, - STATE(3407), 1, + STATE(3603), 1, sym_visibility_modifier, - STATE(2141), 2, + STATE(2139), 2, sym_line_comment, sym_block_comment, - [67209] = 7, + [67109] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4913), 1, - anon_sym_SEMI, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(708), 1, - sym_declaration_list, - STATE(2142), 2, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4887), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + STATE(2140), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67237] = 12, + ACTIONS(3299), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [67141] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(4868), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, + ACTIONS(4872), 1, anon_sym_LT, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4917), 1, + ACTIONS(4889), 1, anon_sym_SEMI, - ACTIONS(4919), 1, + ACTIONS(4891), 1, anon_sym_LBRACE, - STATE(1299), 1, + STATE(1283), 1, sym_field_declaration_list, - STATE(2286), 1, + STATE(2255), 1, sym_type_parameters, - STATE(2743), 1, + STATE(2826), 1, sym_ordered_field_declaration_list, - STATE(3034), 1, + STATE(3136), 1, sym_where_clause, + STATE(2141), 2, + sym_line_comment, + sym_block_comment, + [67179] = 12, + ACTIONS(67), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + sym_identifier, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4893), 1, + anon_sym_RBRACE, + STATE(1476), 1, + sym_attribute_item, + STATE(2212), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3256), 1, + sym_enum_variant, + STATE(3603), 1, + sym_visibility_modifier, + STATE(2142), 2, + sym_line_comment, + sym_block_comment, + [67217] = 12, + ACTIONS(67), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + sym_identifier, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4895), 1, + anon_sym_RBRACE, + STATE(1476), 1, + sym_attribute_item, + STATE(2212), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3256), 1, + sym_enum_variant, + STATE(3603), 1, + sym_visibility_modifier, STATE(2143), 2, sym_line_comment, sym_block_comment, - [67275] = 7, + [67255] = 12, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4921), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4782), 1, + sym_identifier, + ACTIONS(4897), 1, + anon_sym_RBRACE, + STATE(1476), 1, + sym_attribute_item, + STATE(2205), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3078), 1, + sym_field_declaration, + STATE(3560), 1, + sym_visibility_modifier, STATE(2144), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67303] = 7, + [67293] = 12, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(4923), 1, - anon_sym_SEMI, - STATE(1284), 1, - sym_declaration_list, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4782), 1, + sym_identifier, + ACTIONS(4899), 1, + anon_sym_RBRACE, + STATE(1476), 1, + sym_attribute_item, + STATE(2205), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3078), 1, + sym_field_declaration, + STATE(3560), 1, + sym_visibility_modifier, STATE(2145), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [67331] = 9, + [67331] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4469), 1, - anon_sym_PIPE, - ACTIONS(4471), 1, - anon_sym_COLON, - ACTIONS(4475), 1, - anon_sym_DOT_DOT, - ACTIONS(4576), 1, - anon_sym_COLON_COLON, - ACTIONS(4477), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4903), 1, + anon_sym_PLUS, + STATE(2163), 1, + aux_sym_trait_bounds_repeat1, STATE(2146), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 3, - anon_sym_RPAREN, - anon_sym_PLUS, + ACTIONS(4901), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, anon_sym_COMMA, - [67363] = 9, + anon_sym_SQUOTE, + anon_sym_where, + [67357] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -165453,21 +165471,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4925), 1, + ACTIONS(4905), 1, anon_sym_for, - STATE(1935), 1, + STATE(1933), 1, sym_type_arguments, - STATE(1948), 1, + STATE(1947), 1, sym_parameters, STATE(2147), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, + ACTIONS(3299), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67395] = 12, + [67389] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -165476,207 +165494,217 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4758), 1, + ACTIONS(4780), 1, sym_crate, - ACTIONS(4768), 1, + ACTIONS(4782), 1, sym_identifier, - ACTIONS(4927), 1, + ACTIONS(4907), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2218), 1, + STATE(2205), 1, aux_sym_enum_variant_list_repeat1, - STATE(3260), 1, + STATE(3078), 1, sym_field_declaration, - STATE(3555), 1, + STATE(3560), 1, sym_visibility_modifier, STATE(2148), 2, sym_line_comment, sym_block_comment, - [67433] = 9, + [67427] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4929), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, - STATE(1948), 1, - sym_parameters, + ACTIONS(3295), 1, + anon_sym_DOT_DOT, STATE(2149), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67465] = 10, + ACTIONS(3297), 8, + anon_sym_LPAREN, + anon_sym_EQ_GT, + anon_sym_BANG, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_COLON_COLON, + anon_sym_if, + [67451] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_PLUS, - ACTIONS(4469), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4519), 1, anon_sym_PIPE, - ACTIONS(4471), 1, + ACTIONS(4521), 1, anon_sym_COLON, - ACTIONS(4475), 1, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4525), 1, anon_sym_DOT_DOT, - ACTIONS(4531), 1, + ACTIONS(4574), 1, anon_sym_COLON_COLON, - ACTIONS(4477), 2, + STATE(1930), 1, + sym_type_arguments, + ACTIONS(4527), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(4862), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2150), 2, sym_line_comment, sym_block_comment, - [67499] = 7, + [67487] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3965), 1, + ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4931), 1, + ACTIONS(4909), 1, anon_sym_COLON_COLON, - STATE(1611), 1, + STATE(1930), 1, sym_type_arguments, STATE(2151), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, + ACTIONS(3323), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67527] = 11, + [67515] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4469), 1, - anon_sym_PIPE, - ACTIONS(4471), 1, - anon_sym_COLON, - ACTIONS(4473), 1, - anon_sym_BANG, - ACTIONS(4475), 1, + ACTIONS(4525), 1, anon_sym_DOT_DOT, - ACTIONS(4576), 1, + ACTIONS(4533), 1, anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, - ACTIONS(4477), 2, + ACTIONS(4880), 1, + anon_sym_RBRACK, + ACTIONS(3299), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4519), 2, + anon_sym_PIPE, + anon_sym_COMMA, + ACTIONS(4527), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, STATE(2152), 2, sym_line_comment, sym_block_comment, - [67563] = 12, + [67547] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4919), 1, + ACTIONS(4911), 1, + anon_sym_PLUS, + STATE(2163), 1, + aux_sym_trait_bounds_repeat1, + STATE(2153), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4901), 7, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4933), 1, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [67573] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4913), 1, anon_sym_SEMI, - STATE(1186), 1, - sym_field_declaration_list, - STATE(2236), 1, - sym_type_parameters, - STATE(2857), 1, - sym_ordered_field_declaration_list, - STATE(3265), 1, - sym_where_clause, - STATE(2153), 2, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1301), 1, + sym_declaration_list, + STATE(2154), 2, sym_line_comment, sym_block_comment, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, [67601] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4917), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4935), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, - STATE(1948), 1, - sym_parameters, - STATE(2154), 2, + ACTIONS(4922), 1, + anon_sym_LBRACK, + ACTIONS(4925), 1, + anon_sym_LBRACE, + STATE(3337), 1, + sym_token_tree_pattern, + STATE(3418), 1, + sym_macro_rule, + ACTIONS(4920), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(2155), 3, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [67633] = 9, + aux_sym_macro_definition_repeat1, + [67633] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4937), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, - STATE(1948), 1, - sym_parameters, - STATE(2155), 2, + ACTIONS(4930), 1, + anon_sym_PLUS, + STATE(2156), 3, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, + aux_sym_trait_bounds_repeat1, + ACTIONS(4928), 7, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - [67665] = 5, + [67657] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3307), 1, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4455), 1, + anon_sym_LPAREN, + ACTIONS(4463), 1, anon_sym_DOT_DOT, - STATE(2156), 2, + ACTIONS(4933), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2157), 2, sym_line_comment, sym_block_comment, - ACTIONS(3309), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, + ACTIONS(4453), 3, + anon_sym_RBRACK, anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, + anon_sym_COMMA, [67689] = 12, ACTIONS(67), 1, anon_sym_pub, @@ -165686,89 +165714,138 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4752), 1, + ACTIONS(4774), 1, sym_identifier, - ACTIONS(4758), 1, + ACTIONS(4780), 1, sym_crate, - ACTIONS(4939), 1, + ACTIONS(4935), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2212), 1, aux_sym_enum_variant_list_repeat1, - STATE(3249), 1, + STATE(3256), 1, sym_enum_variant, - STATE(3407), 1, + STATE(3603), 1, sym_visibility_modifier, - STATE(2157), 2, + STATE(2158), 2, sym_line_comment, sym_block_comment, - [67727] = 9, + [67727] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(4868), 1, anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4941), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, - STATE(1948), 1, - sym_parameters, - STATE(2158), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3311), 4, - anon_sym_SEMI, + ACTIONS(4870), 1, anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(4874), 1, anon_sym_where, - [67759] = 7, + ACTIONS(4937), 1, + anon_sym_SEMI, + STATE(479), 1, + sym_field_declaration_list, + STATE(2260), 1, + sym_type_parameters, + STATE(3009), 1, + sym_ordered_field_declaration_list, + STATE(3128), 1, + sym_where_clause, + STATE(2159), 2, + sym_line_comment, + sym_block_comment, + [67765] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(4943), 1, - anon_sym_COLON_COLON, - STATE(1068), 1, - sym_type_arguments, - STATE(2159), 2, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4939), 1, + anon_sym_SEMI, + STATE(655), 1, + sym_declaration_list, + STATE(2160), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, + ACTIONS(3323), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67787] = 7, + [67793] = 12, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4868), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4891), 1, anon_sym_LBRACE, - ACTIONS(4945), 1, + ACTIONS(4941), 1, anon_sym_SEMI, - STATE(543), 1, - sym_declaration_list, - STATE(2160), 2, + STATE(1187), 1, + sym_field_declaration_list, + STATE(2251), 1, + sym_type_parameters, + STATE(2813), 1, + sym_ordered_field_declaration_list, + STATE(3290), 1, + sym_where_clause, + STATE(2161), 2, + sym_line_comment, + sym_block_comment, + [67831] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3945), 1, + anon_sym_LT2, + ACTIONS(4943), 1, + anon_sym_COLON_COLON, + STATE(1581), 1, + sym_type_arguments, + STATE(2162), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, + ACTIONS(3323), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [67815] = 12, + [67859] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4947), 1, + anon_sym_PLUS, + STATE(2156), 1, + aux_sym_trait_bounds_repeat1, + STATE(2163), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4945), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [67885] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -165777,24 +165854,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4752), 1, - sym_identifier, - ACTIONS(4758), 1, + ACTIONS(4780), 1, sym_crate, - ACTIONS(4947), 1, + ACTIONS(4782), 1, + sym_identifier, + ACTIONS(4949), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2205), 1, aux_sym_enum_variant_list_repeat1, - STATE(3249), 1, - sym_enum_variant, - STATE(3407), 1, + STATE(3078), 1, + sym_field_declaration, + STATE(3560), 1, sym_visibility_modifier, - STATE(2161), 2, + STATE(2164), 2, sym_line_comment, sym_block_comment, - [67853] = 9, + [67923] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -165803,21 +165880,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4949), 1, + ACTIONS(4951), 1, anon_sym_for, - STATE(1935), 1, + STATE(1933), 1, sym_type_arguments, - STATE(1948), 1, + STATE(1947), 1, sym_parameters, - STATE(2162), 2, + STATE(2165), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, + ACTIONS(3299), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [67885] = 12, + [67955] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -165826,24 +165903,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4768), 1, + ACTIONS(4774), 1, sym_identifier, - ACTIONS(4951), 1, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4953), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2218), 1, + STATE(2212), 1, aux_sym_enum_variant_list_repeat1, - STATE(3260), 1, - sym_field_declaration, - STATE(3555), 1, + STATE(3256), 1, + sym_enum_variant, + STATE(3603), 1, sym_visibility_modifier, - STATE(2163), 2, + STATE(2166), 2, sym_line_comment, sym_block_comment, - [67923] = 12, + [67993] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -165852,122 +165929,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4752), 1, - sym_identifier, - ACTIONS(4758), 1, + ACTIONS(4780), 1, sym_crate, - ACTIONS(4953), 1, + ACTIONS(4782), 1, + sym_identifier, + ACTIONS(4955), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2205), 1, aux_sym_enum_variant_list_repeat1, - STATE(3249), 1, - sym_enum_variant, - STATE(3407), 1, + STATE(3078), 1, + sym_field_declaration, + STATE(3560), 1, sym_visibility_modifier, - STATE(2164), 2, - sym_line_comment, - sym_block_comment, - [67961] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3279), 1, - anon_sym_DOT_DOT, - STATE(2165), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3281), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [67985] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4887), 1, - anon_sym_PLUS, - STATE(2134), 1, - aux_sym_trait_bounds_repeat1, - STATE(2166), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4955), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68011] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3271), 1, - anon_sym_DOT_DOT, STATE(2167), 2, sym_line_comment, sym_block_comment, - ACTIONS(3273), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68035] = 6, + [68031] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, ACTIONS(4957), 1, - anon_sym_PLUS, - STATE(2134), 1, - aux_sym_trait_bounds_repeat1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, STATE(2168), 2, sym_line_comment, sym_block_comment, - ACTIONS(4955), 7, + ACTIONS(3299), 4, anon_sym_SEMI, anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [68061] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4959), 1, anon_sym_PLUS, - STATE(2134), 1, - aux_sym_trait_bounds_repeat1, - STATE(2169), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4955), 7, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, anon_sym_where, - [68087] = 12, + [68063] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -165976,43 +165978,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4758), 1, + ACTIONS(4780), 1, sym_crate, - ACTIONS(4768), 1, + ACTIONS(4782), 1, sym_identifier, - ACTIONS(4961), 1, + ACTIONS(4959), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2218), 1, + STATE(2205), 1, aux_sym_enum_variant_list_repeat1, - STATE(3260), 1, + STATE(3078), 1, sym_field_declaration, - STATE(3555), 1, + STATE(3560), 1, sym_visibility_modifier, - STATE(2170), 2, + STATE(2169), 2, sym_line_comment, sym_block_comment, - [68125] = 5, + [68101] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3295), 1, - anon_sym_DOT_DOT, - STATE(2171), 2, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4961), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, + STATE(1947), 1, + sym_parameters, + STATE(2170), 2, sym_line_comment, sym_block_comment, - ACTIONS(3297), 8, - anon_sym_LPAREN, - anon_sym_EQ_GT, - anon_sym_BANG, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_COLON_COLON, - anon_sym_if, - [68149] = 12, + ACTIONS(3299), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [68133] = 12, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -166021,24 +166027,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4752), 1, + ACTIONS(4774), 1, sym_identifier, - ACTIONS(4758), 1, + ACTIONS(4780), 1, sym_crate, ACTIONS(4963), 1, anon_sym_RBRACE, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2212), 1, aux_sym_enum_variant_list_repeat1, - STATE(3249), 1, + STATE(3256), 1, sym_enum_variant, - STATE(3407), 1, + STATE(3603), 1, sym_visibility_modifier, - STATE(2172), 2, + STATE(2171), 2, sym_line_comment, sym_block_comment, - [68187] = 9, + [68171] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166049,45 +166055,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT2, ACTIONS(4965), 1, anon_sym_for, - STATE(1935), 1, + STATE(1933), 1, sym_type_arguments, - STATE(1948), 1, + STATE(1947), 1, sym_parameters, - STATE(2173), 2, + STATE(2172), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, + ACTIONS(3299), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68219] = 12, - ACTIONS(67), 1, - anon_sym_pub, + [68203] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4768), 1, - sym_identifier, - ACTIONS(4967), 1, - anon_sym_RBRACE, - STATE(1481), 1, - sym_attribute_item, - STATE(2218), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3260), 1, - sym_field_declaration, - STATE(3555), 1, - sym_visibility_modifier, - STATE(2174), 2, + ACTIONS(4947), 1, + anon_sym_PLUS, + STATE(2163), 1, + aux_sym_trait_bounds_repeat1, + STATE(2173), 2, sym_line_comment, sym_block_comment, - [68257] = 9, + ACTIONS(4901), 7, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68229] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -166096,93 +166096,141 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4969), 1, + ACTIONS(4967), 1, anon_sym_for, - STATE(1935), 1, + STATE(1933), 1, sym_type_arguments, - STATE(1948), 1, + STATE(1947), 1, sym_parameters, - STATE(2175), 2, + STATE(2174), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, + ACTIONS(3299), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [68289] = 11, + [68261] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4971), 1, - anon_sym_SEMI, - ACTIONS(4973), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - STATE(1348), 1, - sym_block, - STATE(2482), 1, - sym_where_clause, - STATE(3595), 1, - sym_label, - STATE(2176), 2, + ACTIONS(4969), 1, + anon_sym_SEMI, + STATE(1201), 1, + sym_declaration_list, + STATE(2175), 2, sym_line_comment, sym_block_comment, - [68324] = 11, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [68289] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4977), 1, + ACTIONS(4971), 1, anon_sym_COLON, - ACTIONS(4979), 1, + ACTIONS(4973), 1, anon_sym_LT, - STATE(1100), 1, + STATE(688), 1, sym_declaration_list, - STATE(2373), 1, + STATE(2327), 1, sym_type_parameters, - STATE(2567), 1, + STATE(2544), 1, sym_trait_bounds, - STATE(3146), 1, + STATE(3257), 1, sym_where_clause, + STATE(2176), 2, + sym_line_comment, + sym_block_comment, + [68324] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, STATE(2177), 2, sym_line_comment, sym_block_comment, - [68359] = 11, + ACTIONS(4928), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [68345] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + STATE(2178), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4928), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, anon_sym_where, - ACTIONS(4915), 1, + [68366] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2179), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4975), 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, + [68387] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4874), 1, + anon_sym_where, ACTIONS(4977), 1, - anon_sym_COLON, + anon_sym_SEMI, ACTIONS(4979), 1, - anon_sym_LT, - STATE(749), 1, - sym_declaration_list, - STATE(2382), 1, - sym_type_parameters, - STATE(2508), 1, - sym_trait_bounds, - STATE(3179), 1, + anon_sym_LBRACE, + ACTIONS(4981), 1, + anon_sym_DASH_GT, + STATE(709), 1, + sym_block, + STATE(2431), 1, sym_where_clause, - STATE(2178), 2, + STATE(3586), 1, + sym_label, + STATE(2180), 2, sym_line_comment, sym_block_comment, - [68394] = 11, + [68422] = 11, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -166191,94 +166239,142 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4768), 1, + ACTIONS(4774), 1, sym_identifier, - STATE(1069), 1, + ACTIONS(4780), 1, + sym_crate, + STATE(1065), 1, aux_sym_enum_variant_list_repeat1, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2928), 1, - sym_field_declaration, - STATE(3555), 1, + STATE(2885), 1, + sym_enum_variant, + STATE(3603), 1, sym_visibility_modifier, - STATE(2179), 2, + STATE(2181), 2, sym_line_comment, sym_block_comment, - [68429] = 11, + [68457] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(4981), 1, - anon_sym_SEMI, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(4973), 1, + anon_sym_LT, ACTIONS(4983), 1, + anon_sym_SEMI, + ACTIONS(4985), 1, + anon_sym_EQ, + STATE(2383), 1, + sym_type_parameters, + STATE(2976), 1, + sym_trait_bounds, + STATE(3375), 1, + sym_where_clause, + STATE(2182), 2, + sym_line_comment, + sym_block_comment, + [68492] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4979), 1, anon_sym_LBRACE, - STATE(666), 1, + ACTIONS(4987), 1, + anon_sym_SEMI, + ACTIONS(4989), 1, + anon_sym_PLUS, + STATE(635), 1, sym_block, - STATE(2403), 1, + STATE(2419), 1, sym_where_clause, - STATE(3592), 1, + STATE(3586), 1, sym_label, - STATE(2180), 2, + STATE(2183), 2, sym_line_comment, sym_block_comment, - [68464] = 11, + [68527] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4973), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(4985), 1, + ACTIONS(4991), 1, anon_sym_SEMI, - STATE(1382), 1, + STATE(486), 1, sym_block, - STATE(2486), 1, + STATE(2420), 1, sym_where_clause, - STATE(3595), 1, + STATE(3586), 1, sym_label, - STATE(2181), 2, + STATE(2184), 2, sym_line_comment, sym_block_comment, - [68499] = 11, + [68562] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4973), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(4987), 1, + ACTIONS(4993), 1, anon_sym_SEMI, - STATE(1367), 1, + STATE(624), 1, sym_block, - STATE(2483), 1, + STATE(2411), 1, sym_where_clause, - STATE(3595), 1, + STATE(3586), 1, sym_label, - STATE(2182), 2, + STATE(2185), 2, + sym_line_comment, + sym_block_comment, + [68597] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(4995), 1, + anon_sym_SEMI, + ACTIONS(4997), 1, + anon_sym_LBRACE, + STATE(1156), 1, + sym_block, + STATE(2410), 1, + sym_where_clause, + STATE(3589), 1, + sym_label, + STATE(2186), 2, sym_line_comment, sym_block_comment, - [68534] = 11, + [68632] = 11, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -166287,324 +166383,420 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4752), 1, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4782), 1, + sym_identifier, + STATE(1065), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1476), 1, + sym_attribute_item, + STATE(2917), 1, + sym_field_declaration, + STATE(3560), 1, + sym_visibility_modifier, + STATE(2187), 2, + sym_line_comment, + sym_block_comment, + [68667] = 11, + ACTIONS(67), 1, + anon_sym_pub, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4774), 1, sym_identifier, - ACTIONS(4758), 1, + ACTIONS(4780), 1, sym_crate, - STATE(1069), 1, + STATE(1065), 1, aux_sym_enum_variant_list_repeat1, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(3213), 1, + STATE(2783), 1, sym_enum_variant, - STATE(3407), 1, + STATE(3603), 1, sym_visibility_modifier, - STATE(2183), 2, + STATE(2188), 2, sym_line_comment, sym_block_comment, - [68569] = 11, + [68702] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4983), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(4999), 1, anon_sym_SEMI, - ACTIONS(4991), 1, - anon_sym_DASH_GT, - STATE(725), 1, + STATE(542), 1, sym_block, - STATE(2431), 1, + STATE(2432), 1, sym_where_clause, - STATE(3592), 1, + STATE(3586), 1, sym_label, - STATE(2184), 2, + STATE(2189), 2, sym_line_comment, sym_block_comment, - [68604] = 11, + [68737] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(4979), 1, - anon_sym_LT, - STATE(1195), 1, - sym_declaration_list, - STATE(2356), 1, - sym_type_parameters, - STATE(2632), 1, - sym_trait_bounds, - STATE(3258), 1, + ACTIONS(5001), 1, + anon_sym_SEMI, + STATE(1166), 1, + sym_block, + STATE(2412), 1, sym_where_clause, - STATE(2185), 2, + STATE(3589), 1, + sym_label, + STATE(2190), 2, sym_line_comment, sym_block_comment, - [68639] = 11, + [68772] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4973), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(4993), 1, + ACTIONS(5003), 1, anon_sym_SEMI, - ACTIONS(4995), 1, + ACTIONS(5005), 1, anon_sym_DASH_GT, - STATE(1230), 1, + STATE(743), 1, sym_block, - STATE(2435), 1, + STATE(2490), 1, sym_where_clause, - STATE(3595), 1, + STATE(3586), 1, sym_label, - STATE(2186), 2, + STATE(2191), 2, sym_line_comment, sym_block_comment, - [68674] = 11, - ACTIONS(67), 1, - anon_sym_pub, + [68807] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4752), 1, - sym_identifier, - ACTIONS(4758), 1, - sym_crate, - STATE(1069), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1481), 1, - sym_attribute_item, - STATE(2906), 1, - sym_enum_variant, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2187), 2, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(4997), 1, + anon_sym_LBRACE, + ACTIONS(5007), 1, + anon_sym_SEMI, + STATE(1397), 1, + sym_block, + STATE(2445), 1, + sym_where_clause, + STATE(3589), 1, + sym_label, + STATE(2192), 2, sym_line_comment, sym_block_comment, - [68709] = 11, - ACTIONS(67), 1, - anon_sym_pub, + [68842] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4768), 1, - sym_identifier, - STATE(1481), 1, - sym_attribute_item, - STATE(2218), 1, - aux_sym_enum_variant_list_repeat1, - STATE(3260), 1, - sym_field_declaration, - STATE(3555), 1, - sym_visibility_modifier, - STATE(2188), 2, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(4997), 1, + anon_sym_LBRACE, + ACTIONS(5009), 1, + anon_sym_SEMI, + STATE(1176), 1, + sym_block, + STATE(2413), 1, + sym_where_clause, + STATE(3589), 1, + sym_label, + STATE(2193), 2, + sym_line_comment, + sym_block_comment, + [68877] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4979), 1, + anon_sym_LBRACE, + ACTIONS(5011), 1, + anon_sym_SEMI, + ACTIONS(5013), 1, + anon_sym_DASH_GT, + STATE(517), 1, + sym_block, + STATE(2492), 1, + sym_where_clause, + STATE(3586), 1, + sym_label, + STATE(2194), 2, sym_line_comment, sym_block_comment, - [68744] = 11, + [68912] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(4983), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(4997), 1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5015), 1, anon_sym_SEMI, - STATE(505), 1, + STATE(576), 1, sym_block, - STATE(2458), 1, + STATE(2457), 1, sym_where_clause, - STATE(3592), 1, + STATE(3586), 1, sym_label, - STATE(2189), 2, + STATE(2195), 2, sym_line_comment, sym_block_comment, - [68779] = 7, + [68947] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5002), 1, - anon_sym_fn, - ACTIONS(5004), 1, - anon_sym_extern, - STATE(2351), 1, - sym_extern_modifier, - STATE(2190), 3, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4979), 1, + anon_sym_LBRACE, + ACTIONS(5017), 1, + anon_sym_SEMI, + ACTIONS(5019), 1, + anon_sym_DASH_GT, + STATE(662), 1, + sym_block, + STATE(2398), 1, + sym_where_clause, + STATE(3586), 1, + sym_label, + STATE(2196), 2, sym_line_comment, sym_block_comment, - aux_sym_function_modifiers_repeat1, - ACTIONS(4999), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [68806] = 11, + [68982] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4973), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(5007), 1, + ACTIONS(5021), 1, anon_sym_SEMI, - ACTIONS(5009), 1, + ACTIONS(5023), 1, anon_sym_DASH_GT, - STATE(1468), 1, + STATE(1236), 1, sym_block, - STATE(2489), 1, + STATE(2437), 1, sym_where_clause, - STATE(3595), 1, + STATE(3589), 1, sym_label, - STATE(2191), 2, + STATE(2197), 2, sym_line_comment, sym_block_comment, - [68841] = 10, + [69017] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5011), 1, - sym_identifier, - ACTIONS(5013), 1, - anon_sym_RBRACE, - ACTIONS(5015), 1, - anon_sym_COMMA, - ACTIONS(5017), 1, - anon_sym_ref, - ACTIONS(5019), 1, - sym_mutable_specifier, - STATE(2192), 2, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(4973), 1, + anon_sym_LT, + STATE(1188), 1, + sym_declaration_list, + STATE(2293), 1, + sym_type_parameters, + STATE(2513), 1, + sym_trait_bounds, + STATE(3293), 1, + sym_where_clause, + STATE(2198), 2, sym_line_comment, sym_block_comment, - STATE(2784), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [68874] = 11, + [69052] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4977), 1, + ACTIONS(4971), 1, anon_sym_COLON, - ACTIONS(4979), 1, + ACTIONS(4973), 1, anon_sym_LT, - STATE(685), 1, + STATE(1271), 1, sym_declaration_list, - STATE(2336), 1, + STATE(2310), 1, sym_type_parameters, - STATE(2672), 1, + STATE(2542), 1, sym_trait_bounds, - STATE(3291), 1, + STATE(3123), 1, sym_where_clause, - STATE(2193), 2, + STATE(2199), 2, sym_line_comment, sym_block_comment, - [68909] = 6, + [69087] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1312), 1, - aux_sym_string_literal_token1, - STATE(2203), 1, - sym_string_literal, - STATE(2194), 2, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(4973), 1, + anon_sym_LT, + STATE(625), 1, + sym_declaration_list, + STATE(2313), 1, + sym_type_parameters, + STATE(2562), 1, + sym_trait_bounds, + STATE(3208), 1, + sym_where_clause, + STATE(2200), 2, + sym_line_comment, + sym_block_comment, + [69122] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + ACTIONS(4838), 1, + anon_sym_BANG, + STATE(2201), 2, sym_line_comment, sym_block_comment, - ACTIONS(4678), 6, + ACTIONS(3323), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [68934] = 11, + [69147] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4973), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5021), 1, + ACTIONS(5025), 1, anon_sym_SEMI, - STATE(1331), 1, + ACTIONS(5027), 1, + anon_sym_DASH_GT, + STATE(1429), 1, sym_block, - STATE(2491), 1, + STATE(2397), 1, sym_where_clause, - STATE(3595), 1, + STATE(3589), 1, sym_label, - STATE(2195), 2, + STATE(2202), 2, sym_line_comment, sym_block_comment, - [68969] = 11, + [69182] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(4507), 1, + anon_sym_trait, + ACTIONS(5029), 1, + anon_sym_impl, + STATE(2203), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [69207] = 11, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4983), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(5023), 1, + ACTIONS(5031), 1, anon_sym_SEMI, - ACTIONS(5025), 1, + ACTIONS(5033), 1, anon_sym_DASH_GT, - STATE(553), 1, + STATE(1445), 1, sym_block, - STATE(2415), 1, + STATE(2399), 1, sym_where_clause, - STATE(3592), 1, + STATE(3589), 1, sym_label, - STATE(2196), 2, + STATE(2204), 2, sym_line_comment, sym_block_comment, - [69004] = 11, + [69242] = 11, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -166613,157 +166805,101 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4758), 1, + ACTIONS(4780), 1, sym_crate, - ACTIONS(4768), 1, + ACTIONS(4782), 1, sym_identifier, - STATE(1069), 1, + STATE(1065), 1, aux_sym_enum_variant_list_repeat1, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2929), 1, + STATE(3189), 1, sym_field_declaration, - STATE(3555), 1, + STATE(3560), 1, sym_visibility_modifier, - STATE(2197), 2, + STATE(2205), 2, sym_line_comment, sym_block_comment, - [69039] = 11, + [69277] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5027), 1, - anon_sym_SEMI, - STATE(1342), 1, - sym_block, - STATE(2468), 1, - sym_where_clause, - STATE(3595), 1, - sym_label, - STATE(2198), 2, + ACTIONS(5035), 1, + anon_sym_fn, + ACTIONS(5037), 1, + anon_sym_extern, + STATE(2220), 1, + aux_sym_function_modifiers_repeat1, + STATE(2320), 1, + sym_extern_modifier, + STATE(2206), 2, sym_line_comment, sym_block_comment, - [69074] = 10, + ACTIONS(4469), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [69306] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5011), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_ref, - ACTIONS(5019), 1, - sym_mutable_specifier, - ACTIONS(5029), 1, - anon_sym_RBRACE, - ACTIONS(5031), 1, - anon_sym_COMMA, - STATE(2199), 2, + STATE(2207), 2, sym_line_comment, sym_block_comment, - STATE(2780), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69107] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(4928), 8, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, anon_sym_SQUOTE, - ACTIONS(4897), 1, anon_sym_where, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5033), 1, - anon_sym_SEMI, - ACTIONS(5035), 1, - anon_sym_DASH_GT, - STATE(1155), 1, - sym_block, - STATE(2416), 1, - sym_where_clause, - STATE(3595), 1, - sym_label, - STATE(2200), 2, - sym_line_comment, - sym_block_comment, - [69142] = 10, + [69327] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(4453), 1, - anon_sym_PIPE, - ACTIONS(4455), 1, - anon_sym_LPAREN, - ACTIONS(4459), 1, - anon_sym_COLON, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5037), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2201), 2, + STATE(2208), 2, sym_line_comment, sym_block_comment, - [69175] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(4979), 1, - anon_sym_LT, - ACTIONS(5039), 1, + ACTIONS(4928), 8, anon_sym_SEMI, - ACTIONS(5041), 1, + anon_sym_LBRACE, + anon_sym_PLUS, anon_sym_EQ, - STATE(2294), 1, - sym_type_parameters, - STATE(2930), 1, - sym_trait_bounds, - STATE(3574), 1, - sym_where_clause, - STATE(2202), 2, - sym_line_comment, - sym_block_comment, - [69210] = 4, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_SQUOTE, + anon_sym_where, + [69348] = 11, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2203), 2, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4782), 1, + sym_identifier, + STATE(1476), 1, + sym_attribute_item, + STATE(2205), 1, + aux_sym_enum_variant_list_repeat1, + STATE(3078), 1, + sym_field_declaration, + STATE(3560), 1, + sym_visibility_modifier, + STATE(2209), 2, sym_line_comment, sym_block_comment, - ACTIONS(5043), 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, - [69231] = 11, + [69383] = 11, ACTIONS(67), 1, anon_sym_pub, ACTIONS(101), 1, @@ -166772,395 +166908,305 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(2955), 1, anon_sym_POUND, - ACTIONS(4752), 1, + ACTIONS(4774), 1, sym_identifier, - ACTIONS(4758), 1, + ACTIONS(4780), 1, sym_crate, - STATE(1481), 1, + STATE(1476), 1, sym_attribute_item, - STATE(2183), 1, + STATE(2212), 1, aux_sym_enum_variant_list_repeat1, - STATE(3249), 1, + STATE(3256), 1, sym_enum_variant, - STATE(3407), 1, + STATE(3603), 1, sym_visibility_modifier, - STATE(2204), 2, - sym_line_comment, - sym_block_comment, - [69266] = 11, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(4983), 1, - anon_sym_LBRACE, - ACTIONS(5045), 1, - anon_sym_SEMI, - STATE(705), 1, - sym_block, - STATE(2399), 1, - sym_where_clause, - STATE(3592), 1, - sym_label, - STATE(2205), 2, + STATE(2210), 2, sym_line_comment, sym_block_comment, - [69301] = 10, + [69418] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(1482), 1, anon_sym_DOT_DOT, - ACTIONS(5011), 1, + ACTIONS(5039), 1, sym_identifier, - ACTIONS(5017), 1, - anon_sym_ref, - ACTIONS(5019), 1, - sym_mutable_specifier, - ACTIONS(5047), 1, + ACTIONS(5041), 1, anon_sym_RBRACE, - ACTIONS(5049), 1, + ACTIONS(5043), 1, anon_sym_COMMA, - STATE(2206), 2, + ACTIONS(5045), 1, + anon_sym_ref, + ACTIONS(5047), 1, + sym_mutable_specifier, + STATE(2211), 2, sym_line_comment, sym_block_comment, - STATE(2757), 2, + STATE(2937), 2, sym_field_pattern, sym_remaining_field_pattern, - [69334] = 11, + [69451] = 11, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4983), 1, - anon_sym_LBRACE, - ACTIONS(5051), 1, - anon_sym_SEMI, - ACTIONS(5053), 1, - anon_sym_DASH_GT, - STATE(582), 1, - sym_block, - STATE(2391), 1, - sym_where_clause, - STATE(3592), 1, - sym_label, - STATE(2207), 2, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4774), 1, + sym_identifier, + ACTIONS(4780), 1, + sym_crate, + STATE(1065), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1476), 1, + sym_attribute_item, + STATE(3084), 1, + sym_enum_variant, + STATE(3603), 1, + sym_visibility_modifier, + STATE(2212), 2, sym_line_comment, sym_block_comment, - [69369] = 6, + [69486] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4732), 1, - anon_sym_COLON_COLON, - ACTIONS(4838), 1, - anon_sym_BANG, - STATE(2208), 2, + ACTIONS(1308), 1, + aux_sym_string_literal_token1, + STATE(2179), 1, + sym_string_literal, + STATE(2213), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, + ACTIONS(4702), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [69394] = 11, + [69511] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4973), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(5055), 1, - anon_sym_SEMI, - ACTIONS(5057), 1, - anon_sym_DASH_GT, - STATE(1448), 1, - sym_block, - STATE(2463), 1, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(4973), 1, + anon_sym_LT, + STATE(752), 1, + sym_declaration_list, + STATE(2388), 1, + sym_type_parameters, + STATE(2660), 1, + sym_trait_bounds, + STATE(3038), 1, sym_where_clause, - STATE(3595), 1, - sym_label, - STATE(2209), 2, + STATE(2214), 2, sym_line_comment, sym_block_comment, - [69429] = 11, + [69546] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(4983), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(5059), 1, + ACTIONS(5049), 1, anon_sym_SEMI, - STATE(739), 1, + ACTIONS(5051), 1, + anon_sym_DASH_GT, + STATE(1316), 1, sym_block, - STATE(2410), 1, + STATE(2389), 1, sym_where_clause, - STATE(3592), 1, + STATE(3589), 1, sym_label, - STATE(2210), 2, + STATE(2215), 2, sym_line_comment, sym_block_comment, - [69464] = 11, + [69581] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(4453), 1, + anon_sym_PIPE, + ACTIONS(4455), 1, + anon_sym_LPAREN, + ACTIONS(4459), 1, anon_sym_COLON, - ACTIONS(4979), 1, - anon_sym_LT, - STATE(1298), 1, - sym_declaration_list, - STATE(2295), 1, - sym_type_parameters, - STATE(2724), 1, - sym_trait_bounds, - STATE(3043), 1, - sym_where_clause, - STATE(2211), 2, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5053), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2216), 2, sym_line_comment, sym_block_comment, - [69499] = 11, + [69614] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4973), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(5061), 1, + ACTIONS(5055), 1, anon_sym_SEMI, - ACTIONS(5063), 1, + ACTIONS(5057), 1, anon_sym_DASH_GT, - STATE(1333), 1, + STATE(531), 1, sym_block, - STATE(2460), 1, + STATE(2459), 1, sym_where_clause, - STATE(3595), 1, + STATE(3586), 1, sym_label, - STATE(2212), 2, + STATE(2217), 2, sym_line_comment, sym_block_comment, - [69534] = 11, + [69649] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4983), 1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(5065), 1, + ACTIONS(5059), 1, anon_sym_SEMI, - ACTIONS(5067), 1, - anon_sym_DASH_GT, - STATE(528), 1, + STATE(1455), 1, sym_block, - STATE(2407), 1, + STATE(2404), 1, sym_where_clause, - STATE(3592), 1, - sym_label, - STATE(2213), 2, - sym_line_comment, - sym_block_comment, - [69569] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4519), 1, - anon_sym_trait, - ACTIONS(5069), 1, - anon_sym_impl, - STATE(2214), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [69594] = 11, - ACTIONS(67), 1, - anon_sym_pub, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4752), 1, - sym_identifier, - ACTIONS(4758), 1, - sym_crate, - STATE(1069), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1481), 1, - sym_attribute_item, - STATE(2961), 1, - sym_enum_variant, - STATE(3407), 1, - sym_visibility_modifier, - STATE(2215), 2, - sym_line_comment, - sym_block_comment, - [69629] = 10, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5011), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_ref, - ACTIONS(5019), 1, - sym_mutable_specifier, - ACTIONS(5071), 1, - anon_sym_RBRACE, - ACTIONS(5073), 1, - anon_sym_COMMA, - STATE(2216), 2, + STATE(3589), 1, + sym_label, + STATE(2218), 2, sym_line_comment, sym_block_comment, - STATE(2810), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [69662] = 11, + [69684] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4973), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5075), 1, + ACTIONS(5061), 1, anon_sym_SEMI, - STATE(1225), 1, + ACTIONS(5063), 1, + anon_sym_DASH_GT, + STATE(585), 1, sym_block, - STATE(2442), 1, + STATE(2465), 1, sym_where_clause, - STATE(3595), 1, + STATE(3586), 1, sym_label, - STATE(2217), 2, + STATE(2219), 2, sym_line_comment, sym_block_comment, - [69697] = 11, - ACTIONS(67), 1, - anon_sym_pub, + [69719] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(4758), 1, - sym_crate, - ACTIONS(4768), 1, - sym_identifier, - STATE(1069), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1481), 1, - sym_attribute_item, - STATE(3201), 1, - sym_field_declaration, - STATE(3555), 1, - sym_visibility_modifier, - STATE(2218), 2, + ACTIONS(5068), 1, + anon_sym_fn, + ACTIONS(5070), 1, + anon_sym_extern, + STATE(2320), 1, + sym_extern_modifier, + STATE(2220), 3, sym_line_comment, sym_block_comment, - [69732] = 4, + aux_sym_function_modifiers_repeat1, + ACTIONS(5065), 4, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_unsafe, + [69746] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2219), 2, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(5039), 1, + sym_identifier, + ACTIONS(5045), 1, + anon_sym_ref, + ACTIONS(5047), 1, + sym_mutable_specifier, + ACTIONS(5073), 1, + anon_sym_RBRACE, + ACTIONS(5075), 1, + anon_sym_COMMA, + STATE(2221), 2, sym_line_comment, sym_block_comment, - ACTIONS(4867), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69753] = 11, + STATE(3022), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69779] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(4979), 1, - anon_sym_LT, - STATE(603), 1, - sym_declaration_list, - STATE(2307), 1, - sym_type_parameters, - STATE(2501), 1, - sym_trait_bounds, - STATE(3071), 1, - sym_where_clause, - STATE(2220), 2, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(5039), 1, + sym_identifier, + ACTIONS(5045), 1, + anon_sym_ref, + ACTIONS(5047), 1, + sym_mutable_specifier, + ACTIONS(5077), 1, + anon_sym_RBRACE, + ACTIONS(5079), 1, + anon_sym_COMMA, + STATE(2222), 2, sym_line_comment, sym_block_comment, - [69788] = 4, + STATE(2738), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [69812] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2221), 2, + STATE(2223), 2, sym_line_comment, sym_block_comment, - ACTIONS(4867), 8, + ACTIONS(4928), 8, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, @@ -167169,1342 +167215,1322 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_SQUOTE, anon_sym_where, - [69809] = 11, + [69833] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(4979), 1, - anon_sym_LT, - ACTIONS(5077), 1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(4997), 1, + anon_sym_LBRACE, + ACTIONS(5081), 1, anon_sym_SEMI, - ACTIONS(5079), 1, - anon_sym_EQ, - STATE(2306), 1, - sym_type_parameters, - STATE(3007), 1, - sym_trait_bounds, - STATE(3581), 1, + STATE(1115), 1, + sym_block, + STATE(2408), 1, sym_where_clause, - STATE(2222), 2, + STATE(3589), 1, + sym_label, + STATE(2224), 2, sym_line_comment, sym_block_comment, - [69844] = 4, + [69868] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2223), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4867), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3344), 1, anon_sym_SQUOTE, + ACTIONS(4874), 1, anon_sym_where, - [69865] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5081), 1, - anon_sym_fn, + ACTIONS(4979), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, ACTIONS(5083), 1, - anon_sym_extern, - STATE(2190), 1, - aux_sym_function_modifiers_repeat1, - STATE(2351), 1, - sym_extern_modifier, - STATE(2224), 2, + anon_sym_SEMI, + STATE(614), 1, + sym_block, + STATE(2474), 1, + sym_where_clause, + STATE(3586), 1, + sym_label, + STATE(2225), 2, sym_line_comment, sym_block_comment, - ACTIONS(4481), 4, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_unsafe, - [69894] = 4, + [69903] = 11, + ACTIONS(67), 1, + anon_sym_pub, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2225), 2, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(4780), 1, + sym_crate, + ACTIONS(4782), 1, + sym_identifier, + STATE(1065), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1476), 1, + sym_attribute_item, + STATE(2994), 1, + sym_field_declaration, + STATE(3560), 1, + sym_visibility_modifier, + STATE(2226), 2, sym_line_comment, sym_block_comment, - ACTIONS(4867), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69915] = 11, + [69938] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4983), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, ACTIONS(5085), 1, anon_sym_SEMI, ACTIONS(5087), 1, anon_sym_DASH_GT, - STATE(550), 1, + STATE(1124), 1, sym_block, - STATE(2467), 1, + STATE(2409), 1, sym_where_clause, - STATE(3592), 1, + STATE(3589), 1, sym_label, - STATE(2226), 2, - sym_line_comment, - sym_block_comment, - [69950] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, STATE(2227), 2, sym_line_comment, sym_block_comment, - ACTIONS(4867), 8, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_SQUOTE, - anon_sym_where, - [69971] = 11, + [69973] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4973), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, ACTIONS(5089), 1, anon_sym_SEMI, ACTIONS(5091), 1, anon_sym_DASH_GT, - STATE(1110), 1, + STATE(1359), 1, sym_block, - STATE(2406), 1, + STATE(2486), 1, sym_where_clause, - STATE(3595), 1, + STATE(3589), 1, sym_label, STATE(2228), 2, sym_line_comment, sym_block_comment, - [70006] = 11, + [70008] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(4983), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(5093), 1, - anon_sym_SEMI, - STATE(698), 1, - sym_block, - STATE(2485), 1, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(4973), 1, + anon_sym_LT, + STATE(1372), 1, + sym_declaration_list, + STATE(2325), 1, + sym_type_parameters, + STATE(2561), 1, + sym_trait_bounds, + STATE(3234), 1, sym_where_clause, - STATE(3592), 1, - sym_label, STATE(2229), 2, sym_line_comment, sym_block_comment, - [70041] = 11, + [70043] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(4983), 1, - anon_sym_LBRACE, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(5039), 1, + sym_identifier, + ACTIONS(5045), 1, + anon_sym_ref, + ACTIONS(5047), 1, + sym_mutable_specifier, + ACTIONS(5093), 1, + anon_sym_RBRACE, ACTIONS(5095), 1, - anon_sym_SEMI, - STATE(534), 1, - sym_block, - STATE(2473), 1, - sym_where_clause, - STATE(3592), 1, - sym_label, + anon_sym_COMMA, STATE(2230), 2, sym_line_comment, sym_block_comment, + STATE(2870), 2, + sym_field_pattern, + sym_remaining_field_pattern, [70076] = 11, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4983), 1, - anon_sym_LBRACE, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(4973), 1, + anon_sym_LT, ACTIONS(5097), 1, anon_sym_SEMI, ACTIONS(5099), 1, - anon_sym_DASH_GT, - STATE(743), 1, - sym_block, - STATE(2396), 1, + anon_sym_EQ, + STATE(2294), 1, + sym_type_parameters, + STATE(2833), 1, + sym_trait_bounds, + STATE(3576), 1, sym_where_clause, - STATE(3592), 1, - sym_label, STATE(2231), 2, sym_line_comment, sym_block_comment, - [70111] = 10, + [70111] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_RPAREN, - ACTIONS(5105), 1, - anon_sym_LBRACK, - ACTIONS(5107), 1, - anon_sym_LBRACE, - STATE(2133), 1, - aux_sym_macro_definition_repeat1, - STATE(3184), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2232), 2, sym_line_comment, sym_block_comment, - [70143] = 9, + ACTIONS(3299), 3, + anon_sym_SEMI, + anon_sym_RBRACK, + anon_sym_PLUS, + [70137] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4840), 1, + anon_sym_DOT_DOT, + ACTIONS(4844), 1, + anon_sym_COLON_COLON, + ACTIONS(4842), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2233), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4519), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [70163] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4243), 1, + anon_sym_LBRACE, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5105), 1, + anon_sym_STAR, + STATE(2776), 1, + sym_use_list, + STATE(3195), 1, + sym_type_arguments, + ACTIONS(5103), 2, + sym_identifier, + sym_super, + STATE(2234), 2, + sym_line_comment, + sym_block_comment, + [70193] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(1482), 1, anon_sym_DOT_DOT, - ACTIONS(5011), 1, + ACTIONS(5039), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(5045), 1, anon_sym_ref, - ACTIONS(5019), 1, + ACTIONS(5047), 1, sym_mutable_specifier, - ACTIONS(5109), 1, + ACTIONS(5107), 1, anon_sym_RBRACE, - STATE(2233), 2, + STATE(2235), 2, sym_line_comment, sym_block_comment, - STATE(3259), 2, + STATE(3197), 2, sym_field_pattern, sym_remaining_field_pattern, - [70173] = 10, + [70223] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4716), 1, - anon_sym_COLON_COLON, - ACTIONS(5111), 1, - anon_sym_LPAREN, - ACTIONS(5113), 1, - anon_sym_LBRACK, - ACTIONS(5115), 1, - anon_sym_RBRACK, - ACTIONS(5117), 1, + ACTIONS(4243), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_EQ, - STATE(3368), 1, - sym_delim_token_tree, - STATE(2234), 2, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5105), 1, + anon_sym_STAR, + STATE(2776), 1, + sym_use_list, + STATE(3217), 1, + sym_type_arguments, + ACTIONS(5103), 2, + sym_identifier, + sym_super, + STATE(2236), 2, sym_line_comment, sym_block_comment, - [70205] = 10, + [70253] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, - ACTIONS(5111), 1, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(5039), 1, + sym_identifier, + ACTIONS(5045), 1, + anon_sym_ref, + ACTIONS(5047), 1, + sym_mutable_specifier, + ACTIONS(5109), 1, + anon_sym_RBRACE, + STATE(2237), 2, + sym_line_comment, + sym_block_comment, + STATE(3197), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [70283] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4868), 1, anon_sym_LPAREN, - ACTIONS(5113), 1, - anon_sym_LBRACK, - ACTIONS(5115), 1, - anon_sym_RBRACK, - ACTIONS(5117), 1, + ACTIONS(4891), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, + ACTIONS(5113), 1, anon_sym_EQ, - STATE(3368), 1, - sym_delim_token_tree, - STATE(2235), 2, + ACTIONS(5111), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2238), 2, sym_line_comment, sym_block_comment, - [70237] = 10, + STATE(2769), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [70311] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(4868), 1, anon_sym_LPAREN, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4919), 1, + ACTIONS(4870), 1, anon_sym_LBRACE, - ACTIONS(5121), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(5115), 1, anon_sym_SEMI, - STATE(1103), 1, + STATE(749), 1, sym_field_declaration_list, - STATE(2945), 1, + STATE(3002), 1, sym_ordered_field_declaration_list, - STATE(3149), 1, + STATE(3251), 1, sym_where_clause, - STATE(2236), 2, + STATE(2239), 2, sym_line_comment, sym_block_comment, - [70269] = 10, + [70343] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_LBRACK, - ACTIONS(5107), 1, - anon_sym_LBRACE, - ACTIONS(5123), 1, - anon_sym_RBRACK, - STATE(2274), 1, - aux_sym_macro_definition_repeat1, - STATE(3209), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, - STATE(2237), 2, + ACTIONS(5117), 1, + sym_identifier, + STATE(2240), 2, sym_line_comment, sym_block_comment, - [70301] = 10, + ACTIONS(4724), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [70365] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5121), 1, + anon_sym_RPAREN, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5123), 1, - anon_sym_RPAREN, - STATE(2273), 1, + STATE(2254), 1, aux_sym_macro_definition_repeat1, - STATE(3212), 1, + STATE(3074), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, - STATE(2238), 2, + STATE(2241), 2, sym_line_comment, sym_block_comment, - [70333] = 10, + [70397] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4690), 1, - anon_sym_COLON_COLON, - ACTIONS(5111), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5113), 1, - anon_sym_LBRACK, - ACTIONS(5115), 1, + ACTIONS(5121), 1, anon_sym_RBRACK, - ACTIONS(5117), 1, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5119), 1, - anon_sym_EQ, - STATE(3368), 1, - sym_delim_token_tree, - STATE(2239), 2, + STATE(2256), 1, + aux_sym_macro_definition_repeat1, + STATE(3141), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, + STATE(2242), 2, sym_line_comment, sym_block_comment, - [70365] = 10, + [70429] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4732), 1, - anon_sym_COLON_COLON, - ACTIONS(5111), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5113), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5117), 1, - anon_sym_LBRACE, ACTIONS(5125), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(5127), 1, - anon_sym_EQ, - STATE(3363), 1, - sym_delim_token_tree, - STATE(2240), 2, + anon_sym_RBRACE, + STATE(2258), 1, + aux_sym_macro_definition_repeat1, + STATE(3150), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, + STATE(2243), 2, sym_line_comment, sym_block_comment, - [70397] = 9, + [70461] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4225), 1, + ACTIONS(5119), 1, + anon_sym_LPAREN, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5131), 1, - anon_sym_STAR, - STATE(3015), 1, - sym_use_list, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(5129), 2, - sym_identifier, - sym_super, - STATE(2241), 2, - sym_line_comment, - sym_block_comment, - [70427] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5133), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2242), 2, + ACTIONS(5129), 1, + anon_sym_RPAREN, + STATE(2259), 1, + aux_sym_macro_definition_repeat1, + STATE(3162), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, + STATE(2244), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 3, - anon_sym_SEMI, - anon_sym_RBRACK, - anon_sym_PLUS, - [70453] = 10, + [70493] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5135), 1, + ACTIONS(5129), 1, anon_sym_RBRACK, - STATE(2269), 1, + STATE(2289), 1, aux_sym_macro_definition_repeat1, - STATE(3216), 1, + STATE(3169), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, - STATE(2243), 2, + STATE(2245), 2, sym_line_comment, sym_block_comment, - [70485] = 5, + [70525] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5137), 1, - sym_identifier, - STATE(2244), 2, + ACTIONS(5119), 1, + anon_sym_LPAREN, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, + anon_sym_LBRACE, + ACTIONS(5131), 1, + anon_sym_RBRACE, + STATE(2263), 1, + aux_sym_macro_definition_repeat1, + STATE(3192), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, + STATE(2246), 2, sym_line_comment, sym_block_comment, - ACTIONS(4714), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70507] = 8, + [70557] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5141), 1, - anon_sym_EQ, - ACTIONS(5139), 2, + ACTIONS(5133), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2245), 2, + STATE(2252), 1, + aux_sym_macro_definition_repeat1, + STATE(3047), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, + STATE(2247), 2, sym_line_comment, sym_block_comment, - STATE(2873), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [70535] = 10, + [70589] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_RPAREN, - STATE(2133), 1, + ACTIONS(5135), 1, + anon_sym_RBRACE, + STATE(2253), 1, aux_sym_macro_definition_repeat1, - STATE(3081), 1, + STATE(3053), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, - STATE(2246), 2, + STATE(2248), 2, sym_line_comment, sym_block_comment, - [70567] = 9, + [70621] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(1482), 1, anon_sym_DOT_DOT, - ACTIONS(5011), 1, + ACTIONS(5039), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(5045), 1, anon_sym_ref, - ACTIONS(5019), 1, + ACTIONS(5047), 1, sym_mutable_specifier, - ACTIONS(5145), 1, + ACTIONS(5137), 1, anon_sym_RBRACE, - STATE(2247), 2, + STATE(2249), 2, sym_line_comment, sym_block_comment, - STATE(3259), 2, + STATE(3197), 2, sym_field_pattern, sym_remaining_field_pattern, - [70597] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5149), 1, - anon_sym_COLON, - ACTIONS(5151), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5147), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2248), 2, - sym_line_comment, - sym_block_comment, - [70625] = 9, + [70651] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(1482), 1, anon_sym_DOT_DOT, - ACTIONS(5011), 1, + ACTIONS(5039), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(5045), 1, anon_sym_ref, - ACTIONS(5019), 1, + ACTIONS(5047), 1, sym_mutable_specifier, - ACTIONS(5153), 1, + ACTIONS(5139), 1, anon_sym_RBRACE, - STATE(2249), 2, + STATE(2250), 2, sym_line_comment, sym_block_comment, - STATE(3259), 2, + STATE(3197), 2, sym_field_pattern, sym_remaining_field_pattern, - [70655] = 10, + [70681] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(4868), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4891), 1, + anon_sym_LBRACE, + ACTIONS(5141), 1, + anon_sym_SEMI, + STATE(1255), 1, + sym_field_declaration_list, + STATE(2793), 1, + sym_ordered_field_declaration_list, + STATE(3115), 1, + sym_where_clause, + STATE(2251), 2, + sym_line_comment, + sym_block_comment, + [70713] = 10, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5119), 1, + anon_sym_LPAREN, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5135), 1, - anon_sym_RPAREN, - STATE(2232), 1, + ACTIONS(5143), 1, + anon_sym_RBRACE, + STATE(2155), 1, aux_sym_macro_definition_repeat1, - STATE(3220), 1, + STATE(3151), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, - STATE(2250), 2, + STATE(2252), 2, sym_line_comment, sym_block_comment, - [70687] = 7, + [70745] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2251), 2, + ACTIONS(5119), 1, + anon_sym_LPAREN, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, + anon_sym_LBRACE, + ACTIONS(5145), 1, + anon_sym_RBRACE, + STATE(2155), 1, + aux_sym_macro_definition_repeat1, + STATE(3155), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, + STATE(2253), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [70713] = 8, + [70777] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(5159), 1, - anon_sym_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5157), 2, + ACTIONS(5119), 1, + anon_sym_LPAREN, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, + anon_sym_LBRACE, + ACTIONS(5147), 1, anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2252), 2, + STATE(2155), 1, + aux_sym_macro_definition_repeat1, + STATE(3224), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, + STATE(2254), 2, sym_line_comment, sym_block_comment, - [70741] = 9, + [70809] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5011), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_ref, - ACTIONS(5019), 1, - sym_mutable_specifier, - ACTIONS(5161), 1, - anon_sym_RBRACE, - STATE(2253), 2, + ACTIONS(4868), 1, + anon_sym_LPAREN, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4891), 1, + anon_sym_LBRACE, + ACTIONS(5149), 1, + anon_sym_SEMI, + STATE(1368), 1, + sym_field_declaration_list, + STATE(2933), 1, + sym_ordered_field_declaration_list, + STATE(3231), 1, + sym_where_clause, + STATE(2255), 2, sym_line_comment, sym_block_comment, - STATE(3259), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70771] = 10, + [70841] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5163), 1, - anon_sym_RBRACE, - STATE(2133), 1, + ACTIONS(5147), 1, + anon_sym_RBRACK, + STATE(2155), 1, aux_sym_macro_definition_repeat1, - STATE(3087), 1, + STATE(3245), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, - STATE(2254), 2, + STATE(2256), 2, sym_line_comment, sym_block_comment, - [70803] = 7, + [70873] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4840), 1, + ACTIONS(4463), 1, anon_sym_DOT_DOT, - ACTIONS(4844), 1, + ACTIONS(5153), 1, + anon_sym_COLON, + ACTIONS(5155), 1, anon_sym_COLON_COLON, - ACTIONS(4842), 2, + ACTIONS(4465), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - STATE(2255), 2, + ACTIONS(5151), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2257), 2, sym_line_comment, sym_block_comment, - ACTIONS(4469), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [70829] = 8, + [70901] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5167), 1, - anon_sym_EQ, - ACTIONS(5165), 2, + ACTIONS(5157), 1, anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2256), 2, + STATE(2155), 1, + aux_sym_macro_definition_repeat1, + STATE(3248), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, + STATE(2258), 2, sym_line_comment, sym_block_comment, - STATE(2917), 2, - sym_field_declaration_list, - sym_ordered_field_declaration_list, - [70857] = 9, + [70933] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5011), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_ref, - ACTIONS(5019), 1, - sym_mutable_specifier, - ACTIONS(5169), 1, - anon_sym_RBRACE, - STATE(2257), 2, + ACTIONS(5119), 1, + anon_sym_LPAREN, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, + anon_sym_LBRACE, + ACTIONS(5159), 1, + anon_sym_RPAREN, + STATE(2155), 1, + aux_sym_macro_definition_repeat1, + STATE(3279), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, + STATE(2259), 2, sym_line_comment, sym_block_comment, - STATE(3259), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [70887] = 5, + [70965] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5171), 1, - sym_identifier, - STATE(2258), 2, + ACTIONS(4868), 1, + anon_sym_LPAREN, + ACTIONS(4870), 1, + anon_sym_LBRACE, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(5161), 1, + anon_sym_SEMI, + STATE(677), 1, + sym_field_declaration_list, + STATE(2862), 1, + sym_ordered_field_declaration_list, + STATE(3144), 1, + sym_where_clause, + STATE(2260), 2, sym_line_comment, sym_block_comment, - ACTIONS(4714), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [70909] = 9, + [70997] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4225), 1, - anon_sym_LBRACE, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5131), 1, - anon_sym_STAR, - STATE(3015), 1, - sym_use_list, - STATE(3154), 1, - sym_type_arguments, - ACTIONS(5129), 2, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(5039), 1, sym_identifier, - sym_super, - STATE(2259), 2, + ACTIONS(5045), 1, + anon_sym_ref, + ACTIONS(5047), 1, + sym_mutable_specifier, + ACTIONS(5163), 1, + anon_sym_RBRACE, + STATE(2261), 2, sym_line_comment, sym_block_comment, - [70939] = 9, + STATE(3197), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71027] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(1482), 1, anon_sym_DOT_DOT, - ACTIONS(5011), 1, + ACTIONS(5039), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(5045), 1, anon_sym_ref, - ACTIONS(5019), 1, + ACTIONS(5047), 1, sym_mutable_specifier, - ACTIONS(5173), 1, + ACTIONS(5165), 1, anon_sym_RBRACE, - STATE(2260), 2, + STATE(2262), 2, sym_line_comment, sym_block_comment, - STATE(3259), 2, + STATE(3197), 2, sym_field_pattern, sym_remaining_field_pattern, - [70969] = 10, + [71057] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5143), 1, - anon_sym_RBRACK, - STATE(2133), 1, + ACTIONS(5167), 1, + anon_sym_RBRACE, + STATE(2155), 1, aux_sym_macro_definition_repeat1, - STATE(3083), 1, + STATE(3288), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, - STATE(2261), 2, + STATE(2263), 2, sym_line_comment, sym_block_comment, - [71001] = 10, + [71089] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_LBRACK, - ACTIONS(5107), 1, - anon_sym_LBRACE, - ACTIONS(5175), 1, - anon_sym_RBRACK, - STATE(2270), 1, - aux_sym_macro_definition_repeat1, - STATE(3156), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, - STATE(2262), 2, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(5039), 1, + sym_identifier, + ACTIONS(5045), 1, + anon_sym_ref, + ACTIONS(5047), 1, + sym_mutable_specifier, + ACTIONS(5169), 1, + anon_sym_RBRACE, + STATE(2264), 2, sym_line_comment, sym_block_comment, - [71033] = 10, + STATE(3197), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71119] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_LBRACK, - ACTIONS(5107), 1, - anon_sym_LBRACE, - ACTIONS(5177), 1, - anon_sym_RPAREN, - STATE(2133), 1, - aux_sym_macro_definition_repeat1, - STATE(3117), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, - STATE(2263), 2, + ACTIONS(1482), 1, + anon_sym_DOT_DOT, + ACTIONS(5039), 1, + sym_identifier, + ACTIONS(5045), 1, + anon_sym_ref, + ACTIONS(5047), 1, + sym_mutable_specifier, + ACTIONS(5171), 1, + anon_sym_RBRACE, + STATE(2265), 2, sym_line_comment, sym_block_comment, - [71065] = 5, + STATE(3197), 2, + sym_field_pattern, + sym_remaining_field_pattern, + [71149] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5179), 1, - anon_sym_trait, - STATE(2264), 2, + ACTIONS(5173), 1, + sym_identifier, + STATE(2266), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, + ACTIONS(4724), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71087] = 10, + [71171] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, - anon_sym_LBRACE, + ACTIONS(5179), 1, + anon_sym_RBRACK, ACTIONS(5181), 1, - anon_sym_RBRACE, - STATE(2272), 1, - aux_sym_macro_definition_repeat1, - STATE(3151), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, - STATE(2265), 2, - sym_line_comment, - sym_block_comment, - [71119] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(1482), 1, - anon_sym_DOT_DOT, - ACTIONS(5011), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_ref, - ACTIONS(5019), 1, - sym_mutable_specifier, + anon_sym_LBRACE, ACTIONS(5183), 1, - anon_sym_RBRACE, - STATE(2266), 2, + anon_sym_EQ, + STATE(3490), 1, + sym_delim_token_tree, + STATE(2267), 2, sym_line_comment, sym_block_comment, - STATE(3259), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71149] = 10, + [71203] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(4694), 1, + anon_sym_COLON_COLON, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5181), 1, anon_sym_LBRACE, ACTIONS(5185), 1, - anon_sym_RBRACE, - STATE(2283), 1, - aux_sym_macro_definition_repeat1, - STATE(3090), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, - STATE(2267), 2, + anon_sym_RBRACK, + ACTIONS(5187), 1, + anon_sym_EQ, + STATE(3415), 1, + sym_delim_token_tree, + STATE(2268), 2, sym_line_comment, sym_block_comment, - [71181] = 10, + [71235] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5181), 1, anon_sym_LBRACE, + ACTIONS(5185), 1, + anon_sym_RBRACK, ACTIONS(5187), 1, - anon_sym_RBRACE, - STATE(2280), 1, - aux_sym_macro_definition_repeat1, - STATE(3100), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, - STATE(2268), 2, + anon_sym_EQ, + STATE(3415), 1, + sym_delim_token_tree, + STATE(2269), 2, sym_line_comment, sym_block_comment, - [71213] = 10, + [71267] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(4868), 1, anon_sym_LPAREN, - ACTIONS(5103), 1, - anon_sym_RBRACK, - ACTIONS(5105), 1, - anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(4891), 1, anon_sym_LBRACE, - STATE(2133), 1, - aux_sym_macro_definition_repeat1, - STATE(3181), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, - STATE(2269), 2, + ACTIONS(5191), 1, + anon_sym_EQ, + ACTIONS(5189), 2, + anon_sym_RBRACE, + anon_sym_COMMA, + STATE(2270), 2, sym_line_comment, sym_block_comment, - [71245] = 10, + STATE(2831), 2, + sym_field_declaration_list, + sym_ordered_field_declaration_list, + [71295] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(4668), 1, + anon_sym_COLON_COLON, + ACTIONS(5175), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5177), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5181), 1, anon_sym_LBRACE, - ACTIONS(5177), 1, + ACTIONS(5185), 1, anon_sym_RBRACK, - STATE(2133), 1, - aux_sym_macro_definition_repeat1, - STATE(3091), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, - STATE(2270), 2, + ACTIONS(5187), 1, + anon_sym_EQ, + STATE(3415), 1, + sym_delim_token_tree, + STATE(2271), 2, sym_line_comment, sym_block_comment, - [71277] = 5, + [71327] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5189), 1, - sym_identifier, - STATE(2271), 2, + ACTIONS(5193), 1, + anon_sym_trait, + STATE(2272), 2, sym_line_comment, sym_block_comment, - ACTIONS(4714), 6, + ACTIONS(3323), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71299] = 10, + [71349] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5191), 1, - anon_sym_RBRACE, - STATE(2133), 1, + ACTIONS(5195), 1, + anon_sym_RPAREN, + STATE(2277), 1, aux_sym_macro_definition_repeat1, - STATE(3095), 1, + STATE(3222), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, - STATE(2272), 2, + STATE(2273), 2, sym_line_comment, sym_block_comment, - [71331] = 10, + [71381] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5193), 1, - anon_sym_RPAREN, - STATE(2133), 1, + ACTIONS(5195), 1, + anon_sym_RBRACK, + STATE(2278), 1, aux_sym_macro_definition_repeat1, - STATE(3180), 1, + STATE(3223), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, - STATE(2273), 2, + STATE(2274), 2, sym_line_comment, sym_block_comment, - [71363] = 10, + [71413] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5193), 1, - anon_sym_RBRACK, - STATE(2133), 1, + ACTIONS(5197), 1, + anon_sym_RPAREN, + STATE(2279), 1, aux_sym_macro_definition_repeat1, - STATE(3178), 1, + STATE(3225), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, - STATE(2274), 2, - sym_line_comment, - sym_block_comment, - [71395] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5195), 1, - anon_sym_trait, STATE(2275), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [71417] = 10, + [71445] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(4897), 1, - anon_sym_where, ACTIONS(5197), 1, - anon_sym_SEMI, - STATE(565), 1, - sym_field_declaration_list, - STATE(3003), 1, - sym_ordered_field_declaration_list, - STATE(3059), 1, - sym_where_clause, + anon_sym_RBRACK, + STATE(2280), 1, + aux_sym_macro_definition_repeat1, + STATE(3226), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, STATE(2276), 2, sym_line_comment, sym_block_comment, - [71449] = 10, + [71477] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(4893), 1, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(4897), 1, - anon_sym_where, ACTIONS(5199), 1, - anon_sym_SEMI, - STATE(744), 1, - sym_field_declaration_list, - STATE(2904), 1, - sym_ordered_field_declaration_list, - STATE(3228), 1, - sym_where_clause, + anon_sym_RPAREN, + STATE(2155), 1, + aux_sym_macro_definition_repeat1, + STATE(3241), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, STATE(2277), 2, sym_line_comment, sym_block_comment, - [71481] = 10, + [71509] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5201), 1, - anon_sym_RPAREN, - STATE(2246), 1, + ACTIONS(5199), 1, + anon_sym_RBRACK, + STATE(2155), 1, aux_sym_macro_definition_repeat1, - STATE(3299), 1, + STATE(3242), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, STATE(2278), 2, sym_line_comment, sym_block_comment, - [71513] = 10, + [71541] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, ACTIONS(5201), 1, - anon_sym_RBRACK, - STATE(2261), 1, + anon_sym_RPAREN, + STATE(2155), 1, aux_sym_macro_definition_repeat1, - STATE(3306), 1, + STATE(3243), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, STATE(2279), 2, sym_line_comment, sym_block_comment, - [71545] = 10, + [71573] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, + ACTIONS(5119), 1, anon_sym_LPAREN, - ACTIONS(5105), 1, + ACTIONS(5123), 1, anon_sym_LBRACK, - ACTIONS(5107), 1, + ACTIONS(5125), 1, anon_sym_LBRACE, - ACTIONS(5203), 1, - anon_sym_RBRACE, - STATE(2133), 1, + ACTIONS(5201), 1, + anon_sym_RBRACK, + STATE(2155), 1, aux_sym_macro_definition_repeat1, - STATE(3287), 1, + STATE(3244), 1, sym_macro_rule, - STATE(3319), 1, + STATE(3337), 1, sym_token_tree_pattern, STATE(2280), 2, sym_line_comment, sym_block_comment, - [71577] = 10, + [71605] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_LBRACK, - ACTIONS(5107), 1, - anon_sym_LBRACE, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, ACTIONS(5205), 1, - anon_sym_RBRACE, - STATE(2254), 1, - aux_sym_macro_definition_repeat1, - STATE(3045), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, + anon_sym_COLON, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5203), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2281), 2, sym_line_comment, sym_block_comment, - [71609] = 8, + [71633] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4463), 1, anon_sym_DOT_DOT, - ACTIONS(5159), 1, - anon_sym_COLON, ACTIONS(5207), 1, anon_sym_COLON_COLON, ACTIONS(4465), 2, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, - ACTIONS(5157), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2282), 2, sym_line_comment, sym_block_comment, - [71637] = 10, + ACTIONS(3299), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [71659] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_LBRACK, - ACTIONS(5107), 1, - anon_sym_LBRACE, ACTIONS(5209), 1, - anon_sym_RBRACE, - STATE(2133), 1, - aux_sym_macro_definition_repeat1, - STATE(3294), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, + sym_identifier, STATE(2283), 2, sym_line_comment, sym_block_comment, - [71669] = 9, + ACTIONS(4724), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [71681] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1482), 1, + ACTIONS(4463), 1, anon_sym_DOT_DOT, - ACTIONS(5011), 1, - sym_identifier, - ACTIONS(5017), 1, - anon_sym_ref, - ACTIONS(5019), 1, - sym_mutable_specifier, + ACTIONS(5205), 1, + anon_sym_COLON, ACTIONS(5211), 1, - anon_sym_RBRACE, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5203), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2284), 2, sym_line_comment, sym_block_comment, - STATE(3259), 2, - sym_field_pattern, - sym_remaining_field_pattern, - [71699] = 7, + [71709] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4463), 1, anon_sym_DOT_DOT, - ACTIONS(5207), 1, + ACTIONS(5211), 1, anon_sym_COLON_COLON, ACTIONS(4465), 2, anon_sym_DOT_DOT_DOT, @@ -168512,473 +168538,579 @@ static const uint16_t ts_small_parse_table[] = { STATE(2285), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 3, + ACTIONS(3299), 3, anon_sym_RPAREN, anon_sym_PLUS, anon_sym_COMMA, - [71725] = 10, - ACTIONS(101), 1, + [71735] = 10, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4891), 1, - anon_sym_LPAREN, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4919), 1, - anon_sym_LBRACE, ACTIONS(5213), 1, - anon_sym_SEMI, - STATE(1210), 1, - sym_field_declaration_list, - STATE(2837), 1, - sym_ordered_field_declaration_list, - STATE(3210), 1, - sym_where_clause, + aux_sym_line_comment_token1, + ACTIONS(5215), 1, + aux_sym_line_comment_token3, + ACTIONS(5217), 1, + anon_sym_BANG2, + ACTIONS(5219), 1, + anon_sym_SLASH2, + STATE(3319), 1, + sym__inner_line_doc_comment_marker, + STATE(3333), 1, + sym__line_doc_comment_marker, + STATE(3341), 1, + sym__outer_line_doc_comment_marker, STATE(2286), 2, sym_line_comment, sym_block_comment, - [71757] = 10, + [71767] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5101), 1, - anon_sym_LPAREN, - ACTIONS(5105), 1, - anon_sym_LBRACK, - ACTIONS(5107), 1, - anon_sym_LBRACE, - ACTIONS(5175), 1, - anon_sym_RPAREN, - STATE(2263), 1, - aux_sym_macro_definition_repeat1, - STATE(3165), 1, - sym_macro_rule, - STATE(3319), 1, - sym_token_tree_pattern, + ACTIONS(5221), 1, + anon_sym_trait, STATE(2287), 2, sym_line_comment, sym_block_comment, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, [71789] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5215), 1, + ACTIONS(5223), 1, sym_identifier, STATE(2288), 2, sym_line_comment, sym_block_comment, - ACTIONS(4714), 6, + ACTIONS(4724), 6, anon_sym_async, anon_sym_const, anon_sym_default, anon_sym_fn, anon_sym_unsafe, anon_sym_extern, - [71811] = 9, + [71811] = 10, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, - anon_sym_EQ, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5217), 1, - anon_sym_GT, - ACTIONS(5219), 1, - anon_sym_COMMA, - STATE(2941), 1, - sym_trait_bounds, - STATE(2944), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5119), 1, + anon_sym_LPAREN, + ACTIONS(5123), 1, + anon_sym_LBRACK, + ACTIONS(5125), 1, + anon_sym_LBRACE, + ACTIONS(5159), 1, + anon_sym_RBRACK, + STATE(2155), 1, + aux_sym_macro_definition_repeat1, + STATE(3284), 1, + sym_macro_rule, + STATE(3337), 1, + sym_token_tree_pattern, STATE(2289), 2, sym_line_comment, sym_block_comment, - [71840] = 9, + [71843] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5221), 1, + ACTIONS(5225), 1, anon_sym_SEMI, - STATE(670), 1, + STATE(1401), 1, sym_declaration_list, - STATE(2860), 1, + STATE(2969), 1, sym_where_clause, STATE(2290), 2, sym_line_comment, sym_block_comment, - [71869] = 9, + [71872] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5223), 1, + ACTIONS(5227), 1, anon_sym_SEMI, - STATE(1405), 1, + STATE(1242), 1, sym_declaration_list, - STATE(3013), 1, + STATE(2781), 1, sym_where_clause, STATE(2291), 2, sym_line_comment, sym_block_comment, - [71898] = 9, + [71901] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(5225), 1, - anon_sym_LBRACE, - STATE(1191), 1, - sym_enum_variant_list, - STATE(2623), 1, - sym_type_parameters, - STATE(3264), 1, - sym_where_clause, + ACTIONS(4760), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2292), 2, sym_line_comment, sym_block_comment, - [71927] = 9, + ACTIONS(3370), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [71922] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5227), 1, - anon_sym_SEMI, - STATE(1196), 1, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(1259), 1, sym_declaration_list, - STATE(2731), 1, + STATE(2540), 1, + sym_trait_bounds, + STATE(3117), 1, sym_where_clause, STATE(2293), 2, sym_line_comment, sym_block_comment, - [71956] = 9, + [71951] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4977), 1, + ACTIONS(4971), 1, anon_sym_COLON, ACTIONS(5229), 1, anon_sym_SEMI, ACTIONS(5231), 1, anon_sym_EQ, - STATE(2845), 1, + STATE(2801), 1, sym_trait_bounds, - STATE(3374), 1, + STATE(3359), 1, sym_where_clause, STATE(2294), 2, sym_line_comment, sym_block_comment, - [71985] = 9, + [71980] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(1206), 1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5233), 1, + anon_sym_SEMI, + STATE(1270), 1, sym_declaration_list, - STATE(2639), 1, - sym_trait_bounds, - STATE(3232), 1, + STATE(2811), 1, sym_where_clause, STATE(2295), 2, sym_line_comment, sym_block_comment, - [72014] = 9, + [72009] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(5235), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5233), 1, - anon_sym_SEMI, - STATE(1396), 1, - sym_declaration_list, - STATE(3012), 1, + STATE(1279), 1, + sym_enum_variant_list, + STATE(2543), 1, + sym_type_parameters, + STATE(3129), 1, sym_where_clause, STATE(2296), 2, sym_line_comment, sym_block_comment, - [72043] = 6, + [72038] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(4965), 1, - anon_sym_for, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4891), 1, + anon_sym_LBRACE, + STATE(1284), 1, + sym_field_declaration_list, + STATE(2545), 1, + sym_type_parameters, + STATE(3137), 1, + sym_where_clause, STATE(2297), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [72066] = 9, + [72067] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4584), 1, + anon_sym_EQ, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5237), 1, + anon_sym_GT, + ACTIONS(5239), 1, + anon_sym_COMMA, + STATE(2746), 1, + sym_trait_bounds, + STATE(2869), 1, + aux_sym_type_parameters_repeat1, + STATE(2298), 2, + sym_line_comment, + sym_block_comment, + [72096] = 5, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4598), 1, + anon_sym_DOT_DOT, + STATE(2299), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4596), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [72117] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5241), 1, + anon_sym_PLUS, + ACTIONS(5243), 1, + anon_sym_GT, + ACTIONS(5245), 1, + anon_sym_COMMA, + STATE(2853), 1, + sym_trait_bounds, + STATE(2854), 1, + aux_sym_type_arguments_repeat1, + STATE(2300), 2, + sym_line_comment, + sym_block_comment, + [72146] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3051), 1, + anon_sym_PLUS, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5243), 1, + anon_sym_GT, + ACTIONS(5245), 1, + anon_sym_COMMA, + STATE(2853), 1, + sym_trait_bounds, + STATE(2854), 1, + aux_sym_type_arguments_repeat1, + STATE(2301), 2, + sym_line_comment, + sym_block_comment, + [72175] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5247), 1, + anon_sym_RBRACK, + ACTIONS(4760), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2302), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3370), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [72198] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4584), 1, + anon_sym_EQ, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5250), 1, + anon_sym_GT, + ACTIONS(5252), 1, + anon_sym_COMMA, + STATE(2746), 1, + sym_trait_bounds, + STATE(2772), 1, + aux_sym_type_parameters_repeat1, + STATE(2303), 2, + sym_line_comment, + sym_block_comment, + [72227] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5235), 1, - anon_sym_SEMI, - STATE(490), 1, - sym_declaration_list, - STATE(2836), 1, - sym_where_clause, - STATE(2298), 2, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5211), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5151), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2304), 2, sym_line_comment, sym_block_comment, - [72095] = 9, + [72252] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5237), 1, - anon_sym_SEMI, - STATE(492), 1, - sym_declaration_list, - STATE(2838), 1, - sym_where_clause, - STATE(2299), 2, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(5254), 1, + anon_sym_if, + STATE(3539), 1, + sym_label, + STATE(1321), 2, + sym_if_expression, + sym_block, + STATE(2305), 2, sym_line_comment, sym_block_comment, - [72124] = 9, + [72279] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4919), 1, - anon_sym_LBRACE, - STATE(1185), 1, - sym_field_declaration_list, - STATE(2620), 1, - sym_type_parameters, - STATE(3033), 1, - sym_where_clause, - STATE(2300), 2, + ACTIONS(4584), 1, + anon_sym_EQ, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5256), 1, + anon_sym_GT, + ACTIONS(5258), 1, + anon_sym_COMMA, + STATE(2746), 1, + sym_trait_bounds, + STATE(2890), 1, + aux_sym_type_parameters_repeat1, + STATE(2306), 2, sym_line_comment, sym_block_comment, - [72153] = 9, + [72308] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5239), 1, + ACTIONS(5260), 1, anon_sym_SEMI, - STATE(654), 1, + STATE(1328), 1, sym_declaration_list, - STATE(2813), 1, + STATE(2892), 1, sym_where_clause, - STATE(2301), 2, + STATE(2307), 2, sym_line_comment, sym_block_comment, - [72182] = 9, + [72337] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5241), 1, + ACTIONS(5262), 1, anon_sym_SEMI, - STATE(1221), 1, + STATE(1332), 1, sym_declaration_list, - STATE(2822), 1, + STATE(2901), 1, sym_where_clause, - STATE(2302), 2, + STATE(2308), 2, sym_line_comment, sym_block_comment, - [72211] = 9, + [72366] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5243), 1, + ACTIONS(5264), 1, anon_sym_SEMI, - STATE(750), 1, + STATE(1351), 1, sym_declaration_list, - STATE(3025), 1, + STATE(2921), 1, sym_where_clause, - STATE(2303), 2, + STATE(2309), 2, sym_line_comment, sym_block_comment, - [72240] = 9, + [72395] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5245), 1, - anon_sym_SEMI, - STATE(642), 1, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(1357), 1, sym_declaration_list, - STATE(2815), 1, + STATE(2559), 1, + sym_trait_bounds, + STATE(3220), 1, sym_where_clause, - STATE(2304), 2, + STATE(2310), 2, sym_line_comment, sym_block_comment, - [72269] = 9, + [72424] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(5247), 1, - anon_sym_LBRACE, - STATE(722), 1, - sym_enum_variant_list, - STATE(2581), 1, - sym_type_parameters, - STATE(3147), 1, - sym_where_clause, - STATE(2305), 2, + ACTIONS(5266), 1, + anon_sym_RBRACK, + ACTIONS(4816), 2, + anon_sym_PIPE, + anon_sym_COMMA, + STATE(2311), 2, sym_line_comment, sym_block_comment, - [72298] = 9, + ACTIONS(3418), 3, + anon_sym_SEMI, + anon_sym_PLUS, + anon_sym_DASH_GT, + [72447] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5249), 1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5269), 1, anon_sym_SEMI, - ACTIONS(5251), 1, - anon_sym_EQ, - STATE(3017), 1, - sym_trait_bounds, - STATE(3610), 1, + STATE(713), 1, + sym_declaration_list, + STATE(2876), 1, sym_where_clause, - STATE(2306), 2, + STATE(2312), 2, sym_line_comment, sym_block_comment, - [72327] = 9, + [72476] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4977), 1, + ACTIONS(4971), 1, anon_sym_COLON, - STATE(607), 1, + STATE(680), 1, sym_declaration_list, - STATE(2522), 1, + STATE(2683), 1, sym_trait_bounds, - STATE(3046), 1, + STATE(3218), 1, sym_where_clause, - STATE(2307), 2, + STATE(2313), 2, sym_line_comment, sym_block_comment, - [72356] = 6, + [72505] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3410), 2, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4782), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5253), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2308), 2, + ACTIONS(5271), 1, + anon_sym_SEMI, + STATE(533), 1, + sym_declaration_list, + STATE(3003), 1, + sym_where_clause, + STATE(2314), 2, sym_line_comment, sym_block_comment, - [72379] = 5, + [72534] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4622), 1, anon_sym_DOT_DOT, - STATE(2309), 2, + STATE(2315), 2, sym_line_comment, sym_block_comment, ACTIONS(4620), 5, @@ -168987,2253 +169119,2157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [72400] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(4949), 1, - anon_sym_for, - STATE(2310), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3311), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [72423] = 9, + [72555] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5256), 1, + ACTIONS(5273), 1, anon_sym_SEMI, - STATE(511), 1, + STATE(550), 1, sym_declaration_list, - STATE(2980), 1, + STATE(2838), 1, sym_where_clause, - STATE(2311), 2, + STATE(2316), 2, sym_line_comment, sym_block_comment, - [72452] = 6, + [72584] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(4969), 1, - anon_sym_for, - STATE(2312), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(3311), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, + ACTIONS(4874), 1, anon_sym_where, - [72475] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2313), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4877), 6, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4878), 1, anon_sym_LBRACE, - anon_sym_RBRACE, - [72494] = 9, - ACTIONS(27), 1, - anon_sym_PIPE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5258), 1, - sym_identifier, - ACTIONS(5260), 1, - anon_sym_ref, - ACTIONS(5262), 1, - sym_mutable_specifier, - ACTIONS(5264), 1, - anon_sym_move, - STATE(220), 1, - sym_closure_parameters, - STATE(2314), 2, - sym_line_comment, - sym_block_comment, - [72523] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3087), 1, - anon_sym_PLUS, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5266), 1, - anon_sym_GT, - ACTIONS(5268), 1, - anon_sym_COMMA, - STATE(2994), 1, - sym_trait_bounds, - STATE(3000), 1, - aux_sym_type_arguments_repeat1, - STATE(2315), 2, - sym_line_comment, - sym_block_comment, - [72552] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5266), 1, - anon_sym_GT, - ACTIONS(5268), 1, - anon_sym_COMMA, - ACTIONS(5270), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - STATE(2994), 1, - sym_trait_bounds, - STATE(3000), 1, - aux_sym_type_arguments_repeat1, - STATE(2316), 2, - sym_line_comment, - sym_block_comment, - [72581] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(4941), 1, - anon_sym_for, + ACTIONS(5275), 1, + anon_sym_SEMI, + STATE(687), 1, + sym_declaration_list, + STATE(2767), 1, + sym_where_clause, STATE(2317), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [72604] = 9, + [72613] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5272), 1, + ACTIONS(5277), 1, anon_sym_SEMI, - STATE(676), 1, + STATE(552), 1, sym_declaration_list, - STATE(2921), 1, + STATE(2840), 1, sym_where_clause, STATE(2318), 2, sym_line_comment, sym_block_comment, - [72633] = 6, + [72642] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - ACTIONS(4937), 1, + ACTIONS(4887), 1, anon_sym_for, STATE(2319), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, + ACTIONS(3299), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [72656] = 5, + [72665] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4782), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2320), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [72677] = 9, + ACTIONS(3323), 6, + anon_sym_async, + anon_sym_const, + anon_sym_default, + anon_sym_fn, + anon_sym_unsafe, + anon_sym_extern, + [72684] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5270), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5274), 1, - anon_sym_GT, - ACTIONS(5276), 1, - anon_sym_COMMA, - STATE(2885), 1, - sym_trait_bounds, - STATE(2886), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5279), 1, + anon_sym_SEMI, + STATE(1399), 1, + sym_declaration_list, + STATE(2967), 1, + sym_where_clause, STATE(2321), 2, sym_line_comment, sym_block_comment, - [72706] = 7, + [72713] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5278), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(5281), 1, + anon_sym_LBRACE, + STATE(503), 1, + sym_enum_variant_list, + STATE(2647), 1, + sym_type_parameters, + STATE(3154), 1, + sym_where_clause, STATE(2322), 2, sym_line_comment, sym_block_comment, - [72731] = 9, + [72742] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3087), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5274), 1, - anon_sym_GT, - ACTIONS(5276), 1, - anon_sym_COMMA, - STATE(2885), 1, - sym_trait_bounds, - STATE(2886), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5283), 1, + anon_sym_SEMI, + STATE(1405), 1, + sym_declaration_list, + STATE(2980), 1, + sym_where_clause, STATE(2323), 2, sym_line_comment, sym_block_comment, - [72760] = 7, + [72771] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5147), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5285), 1, + anon_sym_SEMI, + STATE(1407), 1, + sym_declaration_list, + STATE(2982), 1, + sym_where_clause, STATE(2324), 2, sym_line_comment, sym_block_comment, - [72785] = 6, + [72800] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(4935), 1, - anon_sym_for, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(1442), 1, + sym_declaration_list, + STATE(2571), 1, + sym_trait_bounds, + STATE(3275), 1, + sym_where_clause, STATE(2325), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [72808] = 9, + [72829] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5280), 1, - anon_sym_SEMI, - STATE(1276), 1, - sym_declaration_list, - STATE(3031), 1, - sym_where_clause, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5287), 1, + anon_sym_GT, + ACTIONS(5289), 1, + anon_sym_COMMA, + STATE(2786), 1, + aux_sym_type_parameters_repeat1, + STATE(2888), 1, + sym_trait_bounds, + STATE(2941), 1, + aux_sym_for_lifetimes_repeat1, STATE(2326), 2, sym_line_comment, sym_block_comment, - [72837] = 9, + [72858] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5282), 1, - anon_sym_SEMI, - STATE(1229), 1, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(741), 1, sym_declaration_list, - STATE(3030), 1, + STATE(2577), 1, + sym_trait_bounds, + STATE(3276), 1, sym_where_clause, STATE(2327), 2, sym_line_comment, sym_block_comment, - [72866] = 9, + [72887] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5284), 1, + ACTIONS(5291), 1, anon_sym_SEMI, - STATE(1198), 1, + STATE(736), 1, sym_declaration_list, - STATE(3027), 1, + STATE(2825), 1, sym_where_clause, STATE(2328), 2, sym_line_comment, sym_block_comment, - [72895] = 9, + [72916] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(5281), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5286), 1, - anon_sym_SEMI, - STATE(1178), 1, - sym_declaration_list, - STATE(3026), 1, + STATE(693), 1, + sym_enum_variant_list, + STATE(2536), 1, + sym_type_parameters, + STATE(3255), 1, sym_where_clause, STATE(2329), 2, sym_line_comment, sym_block_comment, - [72924] = 6, + [72945] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3442), 1, - anon_sym_COLON, - ACTIONS(5288), 1, - anon_sym_EQ, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5293), 1, + anon_sym_SEMI, + STATE(1467), 1, + sym_declaration_list, + STATE(3023), 1, + sym_where_clause, STATE(2330), 2, sym_line_comment, sym_block_comment, - ACTIONS(3440), 4, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - anon_sym_COLON_COLON, - [72947] = 5, + [72974] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4796), 2, - anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5295), 1, + anon_sym_SEMI, + STATE(1469), 1, + sym_declaration_list, + STATE(3024), 1, + sym_where_clause, STATE(2331), 2, sym_line_comment, sym_block_comment, - ACTIONS(3384), 4, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - anon_sym_DASH_GT, - [72968] = 9, + [73003] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5290), 1, + ACTIONS(5297), 1, anon_sym_SEMI, - STATE(1096), 1, + STATE(1104), 1, sym_declaration_list, - STATE(3020), 1, + STATE(2732), 1, sym_where_clause, STATE(2332), 2, sym_line_comment, sym_block_comment, - [72997] = 9, + [73032] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, - anon_sym_EQ, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5292), 1, - anon_sym_GT, - ACTIONS(5294), 1, - anon_sym_COMMA, - STATE(2814), 1, - aux_sym_type_parameters_repeat1, - STATE(2941), 1, - sym_trait_bounds, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5299), 1, + anon_sym_SEMI, + STATE(1106), 1, + sym_declaration_list, + STATE(2733), 1, + sym_where_clause, STATE(2333), 2, sym_line_comment, sym_block_comment, - [73026] = 9, + [73061] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5301), 1, + anon_sym_SEMI, + STATE(1108), 1, + sym_declaration_list, + STATE(2736), 1, + sym_where_clause, + STATE(2334), 2, + sym_line_comment, + sym_block_comment, + [73090] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5296), 1, + ACTIONS(5303), 1, anon_sym_SEMI, - STATE(1309), 1, + STATE(1110), 1, sym_declaration_list, - STATE(3019), 1, + STATE(2737), 1, sym_where_clause, - STATE(2334), 2, + STATE(2335), 2, + sym_line_comment, + sym_block_comment, + [73119] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3370), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4760), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5247), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2336), 2, sym_line_comment, sym_block_comment, - [73055] = 8, + [73142] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(1482), 1, anon_sym_DOT_DOT, - ACTIONS(5011), 1, + ACTIONS(5039), 1, sym_identifier, - ACTIONS(5017), 1, + ACTIONS(5045), 1, anon_sym_ref, - ACTIONS(5019), 1, + ACTIONS(5047), 1, sym_mutable_specifier, - STATE(2335), 2, + STATE(2337), 2, sym_line_comment, sym_block_comment, - STATE(3259), 2, + STATE(3197), 2, sym_field_pattern, sym_remaining_field_pattern, - [73082] = 9, + [73169] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(556), 1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5305), 1, + anon_sym_SEMI, + STATE(1148), 1, sym_declaration_list, - STATE(2563), 1, - sym_trait_bounds, - STATE(3242), 1, + STATE(2743), 1, sym_where_clause, - STATE(2336), 2, + STATE(2338), 2, sym_line_comment, sym_block_comment, - [73111] = 9, + [73198] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5298), 1, + ACTIONS(5307), 1, anon_sym_SEMI, - STATE(521), 1, + STATE(1150), 1, sym_declaration_list, - STATE(2936), 1, + STATE(2744), 1, sym_where_clause, - STATE(2337), 2, + STATE(2339), 2, sym_line_comment, sym_block_comment, - [73140] = 6, + [73227] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3384), 2, - anon_sym_PLUS, - anon_sym_DASH_GT, - ACTIONS(4796), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5300), 2, - anon_sym_RPAREN, - anon_sym_COMMA, - STATE(2338), 2, + STATE(2340), 2, sym_line_comment, sym_block_comment, - [73163] = 6, + ACTIONS(4920), 6, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_RBRACE, + [73246] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - ACTIONS(4929), 1, + ACTIONS(4905), 1, anon_sym_for, - STATE(2339), 2, + STATE(2341), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, + ACTIONS(3299), 4, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_PLUS, anon_sym_where, - [73186] = 6, + [73269] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5300), 1, - anon_sym_RBRACK, - ACTIONS(4796), 2, - anon_sym_PIPE, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5211), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5309), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2340), 2, + STATE(2342), 2, sym_line_comment, sym_block_comment, - ACTIONS(3384), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [73209] = 6, + [73294] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(4925), 1, - anon_sym_for, - STATE(2341), 2, + ACTIONS(4584), 1, + anon_sym_EQ, + ACTIONS(4586), 1, + anon_sym_GT, + ACTIONS(4588), 1, + anon_sym_COMMA, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(2746), 1, + sym_trait_bounds, + STATE(2907), 1, + aux_sym_type_parameters_repeat1, + STATE(2343), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_PLUS, - anon_sym_where, - [73232] = 8, + [73323] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(5303), 1, - anon_sym_if, - STATE(3545), 1, - sym_label, - STATE(1151), 2, - sym_if_expression, - sym_block, - STATE(2342), 2, + ACTIONS(4816), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2344), 2, sym_line_comment, sym_block_comment, - [73259] = 9, + ACTIONS(3418), 4, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + anon_sym_DASH_GT, + [73344] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, - anon_sym_EQ, - ACTIONS(4977), 1, + ACTIONS(4971), 1, anon_sym_COLON, - ACTIONS(5305), 1, + ACTIONS(5241), 1, + anon_sym_PLUS, + ACTIONS(5311), 1, anon_sym_GT, - ACTIONS(5307), 1, + ACTIONS(5313), 1, anon_sym_COMMA, - STATE(2914), 1, - aux_sym_type_parameters_repeat1, - STATE(2941), 1, + STATE(2805), 1, sym_trait_bounds, - STATE(2343), 2, - sym_line_comment, - sym_block_comment, - [73288] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5309), 1, - anon_sym_SEMI, - STATE(601), 1, - sym_declaration_list, - STATE(2962), 1, - sym_where_clause, - STATE(2344), 2, + STATE(2806), 1, + aux_sym_type_arguments_repeat1, + STATE(2345), 2, sym_line_comment, sym_block_comment, - [73317] = 9, + [73373] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3087), 1, + ACTIONS(3051), 1, anon_sym_PLUS, - ACTIONS(4977), 1, + ACTIONS(4971), 1, anon_sym_COLON, ACTIONS(5311), 1, anon_sym_GT, ACTIONS(5313), 1, anon_sym_COMMA, - STATE(2950), 1, - aux_sym_type_parameters_repeat1, - STATE(2951), 1, + STATE(2805), 1, sym_trait_bounds, - STATE(2345), 2, + STATE(2806), 1, + aux_sym_type_arguments_repeat1, + STATE(2346), 2, sym_line_comment, sym_block_comment, - [73346] = 9, + [73402] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, ACTIONS(5315), 1, anon_sym_SEMI, - STATE(1147), 1, + STATE(717), 1, sym_declaration_list, STATE(2916), 1, sym_where_clause, - STATE(2346), 2, - sym_line_comment, - sym_block_comment, - [73375] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5147), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2347), 2, sym_line_comment, sym_block_comment, - [73400] = 9, + [73431] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(1210), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, + ACTIONS(3344), 1, + anon_sym_SQUOTE, ACTIONS(5317), 1, - anon_sym_SEMI, - STATE(1142), 1, - sym_declaration_list, - STATE(2919), 1, - sym_where_clause, + anon_sym_if, + STATE(3590), 1, + sym_label, + STATE(457), 2, + sym_if_expression, + sym_block, STATE(2348), 2, sym_line_comment, sym_block_comment, - [73429] = 9, + [73458] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, + ACTIONS(4870), 1, + anon_sym_LBRACE, + ACTIONS(4872), 1, anon_sym_LT, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4919), 1, - anon_sym_LBRACE, - STATE(1296), 1, + STATE(699), 1, sym_field_declaration_list, - STATE(2727), 1, + STATE(2566), 1, sym_type_parameters, - STATE(3035), 1, + STATE(3097), 1, sym_where_clause, STATE(2349), 2, sym_line_comment, sym_block_comment, - [73458] = 5, + [73487] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(817), 1, - anon_sym_DOT_DOT, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5319), 1, + anon_sym_SEMI, + STATE(488), 1, + sym_declaration_list, + STATE(2886), 1, + sym_where_clause, STATE(2350), 2, sym_line_comment, sym_block_comment, - ACTIONS(819), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73479] = 4, + [73516] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5321), 1, + anon_sym_SEMI, + STATE(490), 1, + sym_declaration_list, + STATE(2910), 1, + sym_where_clause, STATE(2351), 2, sym_line_comment, sym_block_comment, - ACTIONS(3327), 6, - anon_sym_async, - anon_sym_const, - anon_sym_default, - anon_sym_fn, - anon_sym_unsafe, - anon_sym_extern, - [73498] = 9, + [73545] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5241), 1, anon_sym_PLUS, - ACTIONS(5319), 1, - anon_sym_SEMI, - STATE(1305), 1, - sym_declaration_list, - STATE(2746), 1, - sym_where_clause, + ACTIONS(5323), 1, + anon_sym_GT, + ACTIONS(5325), 1, + anon_sym_COMMA, + STATE(2984), 1, + sym_trait_bounds, + STATE(2991), 1, + aux_sym_type_arguments_repeat1, STATE(2352), 2, sym_line_comment, sym_block_comment, - [73527] = 9, + [73574] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(5225), 1, - anon_sym_LBRACE, - STATE(1091), 1, - sym_enum_variant_list, - STATE(2714), 1, - sym_type_parameters, - STATE(3084), 1, - sym_where_clause, + ACTIONS(3051), 1, + anon_sym_PLUS, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5323), 1, + anon_sym_GT, + ACTIONS(5325), 1, + anon_sym_COMMA, + STATE(2984), 1, + sym_trait_bounds, + STATE(2991), 1, + aux_sym_type_arguments_repeat1, STATE(2353), 2, sym_line_comment, sym_block_comment, - [73556] = 8, + [73603] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(5321), 1, + ACTIONS(5327), 1, anon_sym_if, - STATE(3597), 1, + STATE(3591), 1, sym_label, - STATE(1806), 2, + STATE(1773), 2, sym_if_expression, sym_block, STATE(2354), 2, sym_line_comment, sym_block_comment, - [73583] = 9, + [73630] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5323), 1, + ACTIONS(5329), 1, anon_sym_SEMI, - STATE(1117), 1, + STATE(494), 1, sym_declaration_list, - STATE(2934), 1, + STATE(3010), 1, sym_where_clause, STATE(2355), 2, sym_line_comment, sym_block_comment, - [73612] = 9, + [73659] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, + ACTIONS(3418), 2, + anon_sym_PLUS, + anon_sym_DASH_GT, + ACTIONS(4816), 2, anon_sym_COLON, - STATE(1112), 1, - sym_declaration_list, - STATE(2576), 1, - sym_trait_bounds, - STATE(3158), 1, - sym_where_clause, + anon_sym_PIPE, + ACTIONS(5266), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2356), 2, sym_line_comment, sym_block_comment, - [73641] = 5, + [73682] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(785), 1, - anon_sym_DOT_DOT, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5331), 1, + anon_sym_SEMI, + STATE(496), 1, + sym_declaration_list, + STATE(2745), 1, + sym_where_clause, STATE(2357), 2, sym_line_comment, sym_block_comment, - ACTIONS(787), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73662] = 6, + [73711] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5253), 1, - anon_sym_RBRACK, - ACTIONS(4782), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5333), 1, + anon_sym_SEMI, + STATE(606), 1, + sym_declaration_list, + STATE(2999), 1, + sym_where_clause, STATE(2358), 2, sym_line_comment, sym_block_comment, - ACTIONS(3410), 3, - anon_sym_SEMI, - anon_sym_PLUS, - anon_sym_DASH_GT, - [73685] = 5, + [73740] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4601), 1, - anon_sym_DOT_DOT, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5335), 1, + anon_sym_SEMI, + STATE(608), 1, + sym_declaration_list, + STATE(3005), 1, + sym_where_clause, STATE(2359), 2, sym_line_comment, sym_block_comment, - ACTIONS(4599), 5, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_if, - [73706] = 7, + [73769] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, + ACTIONS(967), 1, anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - ACTIONS(5278), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2360), 2, sym_line_comment, sym_block_comment, - [73731] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_PLUS, - ACTIONS(5325), 1, - anon_sym_GT, - ACTIONS(5327), 1, - anon_sym_COMMA, - STATE(2956), 1, - aux_sym_type_arguments_repeat1, - STATE(2958), 1, - sym_trait_bounds, - STATE(2361), 2, - sym_line_comment, - sym_block_comment, - [73760] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4614), 1, - anon_sym_DOT_DOT, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, - STATE(2362), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4453), 3, + ACTIONS(969), 5, anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, anon_sym_if, - [73783] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4897), 1, - anon_sym_where, - STATE(681), 1, - sym_field_declaration_list, - STATE(2503), 1, - sym_type_parameters, - STATE(3082), 1, - sym_where_clause, - STATE(2363), 2, - sym_line_comment, - sym_block_comment, - [73812] = 5, + [73790] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(777), 1, + ACTIONS(753), 1, anon_sym_DOT_DOT, - STATE(2364), 2, + STATE(2361), 2, sym_line_comment, sym_block_comment, - ACTIONS(779), 5, + ACTIONS(755), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [73833] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(5247), 1, - anon_sym_LBRACE, - STATE(703), 1, - sym_enum_variant_list, - STATE(2502), 1, - sym_type_parameters, - STATE(3056), 1, - sym_where_clause, - STATE(2365), 2, - sym_line_comment, - sym_block_comment, - [73862] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3087), 1, - anon_sym_PLUS, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5325), 1, - anon_sym_GT, - ACTIONS(5327), 1, - anon_sym_COMMA, - STATE(2956), 1, - aux_sym_type_arguments_repeat1, - STATE(2958), 1, - sym_trait_bounds, - STATE(2366), 2, - sym_line_comment, - sym_block_comment, - [73891] = 8, + [73811] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2950), 1, - aux_sym_type_parameters_repeat1, - ACTIONS(3311), 2, - anon_sym_PLUS, - anon_sym_as, - STATE(2367), 2, - sym_line_comment, - sym_block_comment, - [73918] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5329), 1, - anon_sym_GT, - ACTIONS(5331), 1, - anon_sym_COMMA, - STATE(2950), 1, - aux_sym_type_parameters_repeat1, - STATE(2951), 1, - sym_trait_bounds, - STATE(2968), 1, - aux_sym_for_lifetimes_repeat1, - STATE(2368), 2, - sym_line_comment, - sym_block_comment, - [73947] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(4897), 1, - anon_sym_where, - STATE(487), 1, - sym_field_declaration_list, - STATE(2507), 1, - sym_type_parameters, - STATE(3051), 1, - sym_where_clause, - STATE(2369), 2, - sym_line_comment, - sym_block_comment, - [73976] = 9, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5333), 1, - anon_sym_SEMI, - STATE(496), 1, - sym_declaration_list, - STATE(2939), 1, - sym_where_clause, - STATE(2370), 2, + ACTIONS(767), 1, + anon_sym_DOT_DOT, + STATE(2362), 2, sym_line_comment, sym_block_comment, - [74005] = 5, + ACTIONS(769), 5, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_if, + [73832] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(797), 1, + ACTIONS(771), 1, anon_sym_DOT_DOT, - STATE(2371), 2, + STATE(2363), 2, sym_line_comment, sym_block_comment, - ACTIONS(799), 5, + ACTIONS(773), 5, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_DOT_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_if, - [74026] = 9, + [73853] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4870), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5335), 1, - anon_sym_SEMI, - STATE(1236), 1, - sym_declaration_list, - STATE(2978), 1, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(4874), 1, + anon_sym_where, + STATE(643), 1, + sym_field_declaration_list, + STATE(2514), 1, + sym_type_parameters, + STATE(3114), 1, sym_where_clause, - STATE(2372), 2, + STATE(2364), 2, sym_line_comment, sym_block_comment, - [74055] = 9, + [73882] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(4977), 1, + ACTIONS(3459), 1, anon_sym_COLON, - STATE(1445), 1, - sym_declaration_list, - STATE(2524), 1, - sym_trait_bounds, - STATE(3063), 1, - sym_where_clause, - STATE(2373), 2, + ACTIONS(5337), 1, + anon_sym_EQ, + STATE(2365), 2, sym_line_comment, sym_block_comment, - [74084] = 9, + ACTIONS(3457), 4, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_COLON_COLON, + [73905] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5337), 1, + ACTIONS(5339), 1, anon_sym_SEMI, - STATE(696), 1, + STATE(565), 1, sym_declaration_list, - STATE(2871), 1, + STATE(2905), 1, sym_where_clause, - STATE(2374), 2, + STATE(2366), 2, sym_line_comment, sym_block_comment, - [74113] = 9, + [73934] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5339), 1, + ACTIONS(5341), 1, anon_sym_SEMI, - STATE(1241), 1, + STATE(567), 1, sym_declaration_list, - STATE(2979), 1, + STATE(2911), 1, sym_where_clause, - STATE(2375), 2, + STATE(2367), 2, sym_line_comment, sym_block_comment, - [74142] = 9, + [73963] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(5235), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5341), 1, - anon_sym_SEMI, - STATE(1258), 1, - sym_declaration_list, - STATE(2984), 1, + STATE(1390), 1, + sym_enum_variant_list, + STATE(2511), 1, + sym_type_parameters, + STATE(3269), 1, sym_where_clause, - STATE(2376), 2, + STATE(2368), 2, sym_line_comment, sym_block_comment, - [74171] = 9, + [73992] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, ACTIONS(5343), 1, anon_sym_SEMI, - STATE(1260), 1, + STATE(1128), 1, sym_declaration_list, - STATE(2985), 1, + STATE(2787), 1, sym_where_clause, - STATE(2377), 2, + STATE(2369), 2, sym_line_comment, sym_block_comment, - [74200] = 9, + [74021] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, ACTIONS(5345), 1, anon_sym_SEMI, - STATE(692), 1, + STATE(569), 1, sym_declaration_list, - STATE(2870), 1, + STATE(2918), 1, sym_where_clause, - STATE(2378), 2, + STATE(2370), 2, sym_line_comment, sym_block_comment, - [74229] = 9, + [74050] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(4975), 1, - anon_sym_PLUS, + ACTIONS(4535), 1, + anon_sym_COLON_COLON, ACTIONS(5347), 1, - anon_sym_SEMI, - STATE(486), 1, - sym_declaration_list, - STATE(2828), 1, - sym_where_clause, - STATE(2379), 2, + anon_sym_GT, + ACTIONS(5349), 1, + anon_sym_COMMA, + STATE(2786), 1, + aux_sym_type_parameters_repeat1, + ACTIONS(3299), 2, + anon_sym_PLUS, + anon_sym_as, + STATE(2371), 2, sym_line_comment, sym_block_comment, - [74258] = 8, + [74077] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5151), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2372), 2, + sym_line_comment, + sym_block_comment, + [74102] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3051), 1, + anon_sym_PLUS, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5347), 1, + anon_sym_GT, ACTIONS(5349), 1, - anon_sym_if, - STATE(3596), 1, - sym_label, - STATE(458), 2, - sym_if_expression, - sym_block, - STATE(2380), 2, + anon_sym_COMMA, + STATE(2786), 1, + aux_sym_type_parameters_repeat1, + STATE(2888), 1, + sym_trait_bounds, + STATE(2373), 2, sym_line_comment, sym_block_comment, - [74285] = 8, - ACTIONS(19), 1, - anon_sym_LBRACE, + [74131] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(5351), 1, - anon_sym_if, - STATE(3414), 1, - sym_label, - STATE(376), 2, - sym_if_expression, - sym_block, - STATE(2381), 2, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + ACTIONS(5309), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2374), 2, sym_line_comment, sym_block_comment, - [74312] = 9, + [74156] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4891), 1, anon_sym_LBRACE, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(718), 1, - sym_declaration_list, - STATE(2633), 1, - sym_trait_bounds, - STATE(3233), 1, + STATE(1191), 1, + sym_field_declaration_list, + STATE(2515), 1, + sym_type_parameters, + STATE(3305), 1, sym_where_clause, - STATE(2382), 2, + STATE(2375), 2, sym_line_comment, sym_block_comment, - [74341] = 9, + [74185] = 9, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5353), 1, + ACTIONS(5351), 1, anon_sym_SEMI, - STATE(480), 1, + STATE(571), 1, sym_declaration_list, - STATE(2827), 1, + STATE(2925), 1, sym_where_clause, - STATE(2383), 2, + STATE(2376), 2, sym_line_comment, sym_block_comment, - [74370] = 9, + [74214] = 8, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(5353), 1, + anon_sym_if, + STATE(3510), 1, + sym_label, + STATE(377), 2, + sym_if_expression, + sym_block, + STATE(2377), 2, + sym_line_comment, + sym_block_comment, + [74241] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, ACTIONS(5355), 1, anon_sym_SEMI, - STATE(506), 1, + STATE(665), 1, sym_declaration_list, - STATE(2826), 1, + STATE(2735), 1, sym_where_clause, - STATE(2384), 2, + STATE(2378), 2, sym_line_comment, sym_block_comment, - [74399] = 9, + [74270] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, - anon_sym_EQ, - ACTIONS(4582), 1, - anon_sym_GT, - ACTIONS(4584), 1, - anon_sym_COMMA, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(2941), 1, - sym_trait_bounds, - STATE(2947), 1, - aux_sym_type_parameters_repeat1, - STATE(2385), 2, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(4967), 1, + anon_sym_for, + STATE(2379), 2, sym_line_comment, sym_block_comment, - [74428] = 9, + ACTIONS(3299), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74293] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(4864), 1, + anon_sym_for, + STATE(2380), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3299), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4975), 1, anon_sym_PLUS, + anon_sym_where, + [74316] = 9, + ACTIONS(27), 1, + anon_sym_PIPE, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, ACTIONS(5357), 1, - anon_sym_SEMI, - STATE(673), 1, - sym_declaration_list, - STATE(2861), 1, - sym_where_clause, - STATE(2386), 2, + sym_identifier, + ACTIONS(5359), 1, + anon_sym_ref, + ACTIONS(5361), 1, + sym_mutable_specifier, + ACTIONS(5363), 1, + anon_sym_move, + STATE(228), 1, + sym_closure_parameters, + STATE(2381), 2, sym_line_comment, sym_block_comment, - [74457] = 9, + [74345] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(4951), 1, + anon_sym_for, + STATE(2382), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3299), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(4975), 1, anon_sym_PLUS, - ACTIONS(5359), 1, + anon_sym_where, + [74368] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5365), 1, anon_sym_SEMI, - STATE(523), 1, - sym_declaration_list, - STATE(2825), 1, + ACTIONS(5367), 1, + anon_sym_EQ, + STATE(3031), 1, + sym_trait_bounds, + STATE(3505), 1, sym_where_clause, - STATE(2387), 2, + STATE(2383), 2, sym_line_comment, sym_block_comment, - [74486] = 8, + [74397] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - ACTIONS(4578), 1, - anon_sym_COLON, - STATE(1934), 1, - sym_type_arguments, - STATE(2569), 1, - sym_trait_bounds, - STATE(2388), 2, + ACTIONS(4957), 1, + anon_sym_for, + STATE(2384), 2, sym_line_comment, sym_block_comment, - [74512] = 8, + ACTIONS(3299), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74420] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, + ACTIONS(4537), 1, anon_sym_COLON_COLON, - STATE(1625), 1, - sym_parameters, - STATE(1934), 1, - sym_type_arguments, - STATE(2389), 2, + ACTIONS(4961), 1, + anon_sym_for, + STATE(2385), 2, sym_line_comment, sym_block_comment, - [74538] = 8, + ACTIONS(3299), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_where, + [74443] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(4965), 1, + anon_sym_for, + STATE(2386), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(3299), 4, + anon_sym_SEMI, anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4975), 1, anon_sym_PLUS, - STATE(1726), 1, - sym_block, - STATE(3597), 1, - sym_label, - STATE(2390), 2, + anon_sym_where, + [74466] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4611), 1, + anon_sym_DOT_DOT, + ACTIONS(4613), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2387), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(4453), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [74489] = 9, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(529), 1, + sym_declaration_list, + STATE(2530), 1, + sym_trait_bounds, + STATE(3087), 1, + sym_where_clause, + STATE(2388), 2, sym_line_comment, sym_block_comment, - [74564] = 8, + [74518] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4983), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(5361), 1, + ACTIONS(5369), 1, anon_sym_SEMI, - STATE(526), 1, + STATE(1395), 1, sym_block, - STATE(3592), 1, + STATE(3589), 1, sym_label, - STATE(2391), 2, + STATE(2389), 2, sym_line_comment, sym_block_comment, - [74590] = 4, + [74544] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2392), 2, + ACTIONS(4644), 1, + anon_sym_GT, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5371), 1, + anon_sym_COMMA, + STATE(2873), 1, + aux_sym_type_parameters_repeat1, + STATE(2888), 1, + sym_trait_bounds, + STATE(2390), 2, sym_line_comment, sym_block_comment, - ACTIONS(5363), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [74608] = 7, + [74570] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1454), 1, - anon_sym_RPAREN, - ACTIONS(5365), 1, - anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(4971), 1, anon_sym_COLON, - anon_sym_PIPE, - STATE(2393), 2, + ACTIONS(5241), 1, + anon_sym_PLUS, + STATE(3250), 1, + sym_trait_bounds, + ACTIONS(5373), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2391), 2, sym_line_comment, sym_block_comment, - [74632] = 6, + [74594] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5369), 1, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5155), 1, anon_sym_COLON_COLON, - ACTIONS(5371), 1, - anon_sym_as, - STATE(2394), 2, + ACTIONS(5205), 1, + anon_sym_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, + STATE(2392), 2, sym_line_comment, sym_block_comment, - ACTIONS(5367), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [74654] = 6, + [74618] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4852), 1, + anon_sym_PIPE, ACTIONS(5375), 1, - anon_sym_COMMA, - STATE(2408), 1, - aux_sym_where_clause_repeat1, - STATE(2395), 2, + anon_sym_SEMI, + ACTIONS(5377), 1, + anon_sym_COLON, + ACTIONS(5379), 1, + anon_sym_EQ, + ACTIONS(5381), 1, + anon_sym_else, + STATE(2393), 2, sym_line_comment, sym_block_comment, - ACTIONS(5373), 3, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_SQUOTE, - [74676] = 8, + [74644] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4983), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(5377), 1, - anon_sym_SEMI, - STATE(748), 1, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_PLUS, + STATE(1304), 1, sym_block, - STATE(3592), 1, + STATE(3539), 1, sym_label, - STATE(2396), 2, + STATE(2394), 2, sym_line_comment, sym_block_comment, - [74702] = 4, + [74670] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2397), 2, + ACTIONS(2955), 1, + anon_sym_POUND, + ACTIONS(5383), 1, + sym_identifier, + ACTIONS(5385), 1, + sym_integer_literal, + STATE(1065), 1, + aux_sym_enum_variant_list_repeat1, + STATE(1476), 1, + sym_attribute_item, + STATE(2395), 2, sym_line_comment, sym_block_comment, - ACTIONS(5379), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [74720] = 6, + [74696] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5371), 1, - anon_sym_as, - ACTIONS(5381), 1, - anon_sym_COLON_COLON, - STATE(2398), 2, + ACTIONS(3051), 1, + anon_sym_PLUS, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(3250), 1, + sym_trait_bounds, + ACTIONS(5373), 2, + anon_sym_GT, + anon_sym_COMMA, + STATE(2396), 2, sym_line_comment, sym_block_comment, - ACTIONS(5367), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [74742] = 8, + [74720] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4983), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(5383), 1, + ACTIONS(5387), 1, anon_sym_SEMI, - STATE(746), 1, + STATE(1113), 1, sym_block, - STATE(3592), 1, + STATE(3589), 1, sym_label, - STATE(2399), 2, + STATE(2397), 2, sym_line_comment, sym_block_comment, - [74768] = 6, + [74746] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5385), 1, - anon_sym_RBRACK, - ACTIONS(3717), 2, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4979), 1, + anon_sym_LBRACE, + ACTIONS(5389), 1, anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4800), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2400), 2, + STATE(711), 1, + sym_block, + STATE(3586), 1, + sym_label, + STATE(2398), 2, sym_line_comment, sym_block_comment, - [74790] = 6, + [74772] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5388), 1, - anon_sym_RBRACK, - ACTIONS(3311), 2, - anon_sym_SEMI, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_PIPE, - anon_sym_COMMA, - STATE(2401), 2, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4997), 1, + anon_sym_LBRACE, + ACTIONS(5391), 1, + anon_sym_SEMI, + STATE(1126), 1, + sym_block, + STATE(3589), 1, + sym_label, + STATE(2399), 2, sym_line_comment, sym_block_comment, - [74812] = 7, + [74798] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, - anon_sym_EQ, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(2941), 1, - sym_trait_bounds, - ACTIONS(5391), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2402), 2, + ACTIONS(4243), 1, + anon_sym_LBRACE, + ACTIONS(5105), 1, + anon_sym_STAR, + STATE(2776), 1, + sym_use_list, + ACTIONS(5103), 2, + sym_identifier, + sym_super, + STATE(2400), 2, sym_line_comment, sym_block_comment, - [74836] = 8, + [74822] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4983), 1, - anon_sym_LBRACE, - ACTIONS(5393), 1, - anon_sym_SEMI, - STATE(727), 1, - sym_block, - STATE(3592), 1, - sym_label, - STATE(2403), 2, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5347), 1, + anon_sym_GT, + ACTIONS(5349), 1, + anon_sym_COMMA, + STATE(2786), 1, + aux_sym_type_parameters_repeat1, + STATE(2888), 1, + sym_trait_bounds, + STATE(2401), 2, sym_line_comment, sym_block_comment, - [74862] = 8, + [74848] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - STATE(1351), 1, + STATE(1384), 1, sym_block, - STATE(3545), 1, + STATE(3539), 1, sym_label, - STATE(2404), 2, + STATE(2402), 2, sym_line_comment, sym_block_comment, - [74888] = 4, + [74874] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2405), 2, + STATE(2403), 2, sym_line_comment, sym_block_comment, - ACTIONS(5395), 5, + ACTIONS(5393), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [74906] = 8, + [74892] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4973), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(5397), 1, + ACTIONS(5395), 1, anon_sym_SEMI, - STATE(1341), 1, + STATE(1133), 1, sym_block, - STATE(3595), 1, + STATE(3589), 1, sym_label, - STATE(2406), 2, + STATE(2404), 2, sym_line_comment, sym_block_comment, - [74932] = 8, + [74918] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4451), 1, + anon_sym_COLON_COLON, + STATE(1931), 1, + sym_type_arguments, + STATE(1962), 1, + sym_parameters, + STATE(2405), 2, + sym_line_comment, + sym_block_comment, + [74944] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4983), 1, - anon_sym_LBRACE, ACTIONS(5399), 1, + anon_sym_COMMA, + ACTIONS(5397), 3, anon_sym_SEMI, - STATE(704), 1, - sym_block, - STATE(3592), 1, - sym_label, - STATE(2407), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, + STATE(2406), 3, sym_line_comment, sym_block_comment, - [74958] = 6, + aux_sym_where_clause_repeat1, + [74964] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5401), 1, + ACTIONS(3621), 1, + anon_sym_PLUS, + ACTIONS(4756), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5402), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2484), 1, - aux_sym_where_clause_repeat1, - STATE(2408), 2, + STATE(2407), 2, sym_line_comment, sym_block_comment, - ACTIONS(3338), 3, - anon_sym_SEMI, - anon_sym_LBRACE, + [74986] = 8, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3344), 1, anon_sym_SQUOTE, - [74980] = 4, + ACTIONS(4997), 1, + anon_sym_LBRACE, + ACTIONS(5405), 1, + anon_sym_SEMI, + STATE(1158), 1, + sym_block, + STATE(3589), 1, + sym_label, + STATE(2408), 2, + sym_line_comment, + sym_block_comment, + [75012] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4997), 1, + anon_sym_LBRACE, + ACTIONS(5407), 1, + anon_sym_SEMI, + STATE(1164), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2409), 2, sym_line_comment, sym_block_comment, - ACTIONS(5403), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [74998] = 8, + [75038] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4983), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(5405), 1, + ACTIONS(5409), 1, anon_sym_SEMI, - STATE(608), 1, + STATE(1174), 1, sym_block, - STATE(3592), 1, + STATE(3589), 1, sym_label, STATE(2410), 2, sym_line_comment, sym_block_comment, - [75024] = 6, + [75064] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5409), 1, - anon_sym_COLON_COLON, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4979), 1, + anon_sym_LBRACE, ACTIONS(5411), 1, - anon_sym_as, + anon_sym_SEMI, + STATE(637), 1, + sym_block, + STATE(3586), 1, + sym_label, STATE(2411), 2, sym_line_comment, sym_block_comment, - ACTIONS(5407), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [75046] = 8, + [75090] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_GT, - ACTIONS(4977), 1, - anon_sym_COLON, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4997), 1, + anon_sym_LBRACE, ACTIONS(5413), 1, - anon_sym_COMMA, - STATE(2940), 1, - aux_sym_type_parameters_repeat1, - STATE(2951), 1, - sym_trait_bounds, + anon_sym_SEMI, + STATE(1178), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2412), 2, sym_line_comment, sym_block_comment, - [75072] = 7, + [75116] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_COLON_COLON, - ACTIONS(5159), 1, - anon_sym_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4997), 1, + anon_sym_LBRACE, + ACTIONS(5415), 1, + anon_sym_SEMI, + STATE(1182), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2413), 2, sym_line_comment, sym_block_comment, - [75096] = 7, + [75142] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5149), 1, - anon_sym_COLON, - ACTIONS(5151), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_PLUS, + STATE(1678), 1, + sym_block, + STATE(3591), 1, + sym_label, STATE(2414), 2, sym_line_comment, sym_block_comment, - [75120] = 8, + [75168] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4983), 1, + ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(5415), 1, - anon_sym_SEMI, - STATE(568), 1, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(5417), 1, + anon_sym_move, + STATE(1742), 1, sym_block, - STATE(3592), 1, + STATE(3591), 1, sym_label, STATE(2415), 2, sym_line_comment, sym_block_comment, - [75146] = 8, + [75194] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5417), 1, - anon_sym_SEMI, - STATE(1179), 1, - sym_block, - STATE(3595), 1, - sym_label, STATE(2416), 2, sym_line_comment, sym_block_comment, - [75172] = 7, + ACTIONS(3699), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75212] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5419), 1, - anon_sym_RPAREN, - ACTIONS(5421), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2417), 2, sym_line_comment, sym_block_comment, - [75196] = 8, + ACTIONS(3703), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75230] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5423), 1, - anon_sym_STAR_SLASH, - ACTIONS(5425), 1, - sym__outer_block_doc_comment_marker, - ACTIONS(5427), 1, - sym__inner_block_doc_comment_marker, - ACTIONS(5429), 1, - sym__block_comment_content, - STATE(3130), 1, - sym__block_doc_comment_marker, STATE(2418), 2, sym_line_comment, sym_block_comment, - [75222] = 8, + ACTIONS(3711), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75248] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5325), 1, - anon_sym_GT, - ACTIONS(5327), 1, - anon_sym_COMMA, - STATE(2956), 1, - aux_sym_type_arguments_repeat1, - STATE(2958), 1, - sym_trait_bounds, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4979), 1, + anon_sym_LBRACE, + ACTIONS(5419), 1, + anon_sym_SEMI, + STATE(642), 1, + sym_block, + STATE(3586), 1, + sym_label, STATE(2419), 2, sym_line_comment, sym_block_comment, - [75248] = 6, + [75274] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5371), 1, - anon_sym_as, - ACTIONS(5431), 1, - anon_sym_COLON_COLON, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4979), 1, + anon_sym_LBRACE, + ACTIONS(5421), 1, + anon_sym_SEMI, + STATE(544), 1, + sym_block, + STATE(3586), 1, + sym_label, STATE(2420), 2, sym_line_comment, sym_block_comment, - ACTIONS(5367), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [75270] = 7, + [75300] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5433), 1, - anon_sym_COMMA, - STATE(2972), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(4756), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2421), 2, sym_line_comment, sym_block_comment, - [75294] = 8, + ACTIONS(3621), 3, + anon_sym_RPAREN, + anon_sym_PLUS, + anon_sym_COMMA, + [75320] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(5435), 1, - anon_sym_move, - STATE(459), 1, - sym_block, - STATE(3596), 1, - sym_label, + ACTIONS(3939), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4451), 1, + anon_sym_COLON_COLON, + STATE(1623), 1, + sym_parameters, + STATE(1931), 1, + sym_type_arguments, STATE(2422), 2, sym_line_comment, sym_block_comment, - [75320] = 7, + [75346] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1460), 1, - anon_sym_RPAREN, - ACTIONS(5437), 1, - anon_sym_COMMA, - STATE(2878), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4451), 1, + anon_sym_COLON_COLON, + ACTIONS(4582), 1, anon_sym_COLON, - anon_sym_PIPE, + STATE(1931), 1, + sym_type_arguments, + STATE(2606), 1, + sym_trait_bounds, STATE(2423), 2, sym_line_comment, sym_block_comment, - [75344] = 8, + [75372] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4975), 1, + ACTIONS(5423), 1, + anon_sym_RBRACK, + ACTIONS(3299), 2, + anon_sym_SEMI, anon_sym_PLUS, - STATE(1136), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(4453), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2424), 2, sym_line_comment, sym_block_comment, - [75370] = 8, + [75394] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(5439), 1, - anon_sym_move, - STATE(1380), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(4971), 1, + anon_sym_COLON, + ACTIONS(5311), 1, + anon_sym_GT, + ACTIONS(5313), 1, + anon_sym_COMMA, + STATE(2805), 1, + sym_trait_bounds, + STATE(2806), 1, + aux_sym_type_arguments_repeat1, STATE(2425), 2, sym_line_comment, sym_block_comment, - [75396] = 5, + [75420] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, + ACTIONS(4971), 1, anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5243), 1, + anon_sym_GT, + ACTIONS(5245), 1, + anon_sym_COMMA, + STATE(2853), 1, + sym_trait_bounds, + STATE(2854), 1, + aux_sym_type_arguments_repeat1, STATE(2426), 2, sym_line_comment, sym_block_comment, - ACTIONS(3311), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [75416] = 8, - ACTIONS(3), 1, + [75446] = 7, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5441), 1, - aux_sym_line_comment_token1, - ACTIONS(5443), 1, - aux_sym_line_comment_token3, - ACTIONS(5445), 1, - sym__inner_line_doc_comment_marker, - ACTIONS(5447), 1, - sym__outer_line_doc_comment_marker, - STATE(3494), 1, - sym__line_doc_comment_marker, + ACTIONS(5426), 1, + anon_sym_RPAREN, + ACTIONS(5428), 1, + anon_sym_COMMA, + STATE(2809), 1, + aux_sym_parameters_repeat1, + ACTIONS(4453), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2427), 2, sym_line_comment, sym_block_comment, - [75442] = 8, + [75470] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5449), 1, - anon_sym_SEMI, - ACTIONS(5451), 1, - anon_sym_COLON, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5455), 1, - anon_sym_EQ, - ACTIONS(5457), 1, - anon_sym_else, + ACTIONS(5430), 1, + anon_sym_COMMA, + STATE(2406), 1, + aux_sym_where_clause_repeat1, STATE(2428), 2, sym_line_comment, sym_block_comment, - [75468] = 8, + ACTIONS(3477), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [75492] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4975), 1, - anon_sym_PLUS, - STATE(1768), 1, - sym_block, - STATE(3597), 1, - sym_label, + ACTIONS(4826), 1, + anon_sym_RPAREN, + ACTIONS(5432), 1, + anon_sym_COLON, + ACTIONS(5434), 1, + anon_sym_PIPE, + ACTIONS(5436), 1, + anon_sym_COMMA, + STATE(3001), 1, + aux_sym_closure_parameters_repeat1, STATE(2429), 2, sym_line_comment, sym_block_comment, - [75494] = 5, + [75518] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4800), 2, + ACTIONS(5438), 1, + anon_sym_RPAREN, + ACTIONS(5440), 1, + anon_sym_COMMA, + STATE(2872), 1, + aux_sym_parameters_repeat1, + ACTIONS(4453), 2, anon_sym_COLON, anon_sym_PIPE, STATE(2430), 2, sym_line_comment, sym_block_comment, - ACTIONS(3717), 3, - anon_sym_RPAREN, - anon_sym_PLUS, - anon_sym_COMMA, - [75514] = 8, + [75542] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4983), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(5459), 1, + ACTIONS(5442), 1, anon_sym_SEMI, - STATE(578), 1, + STATE(484), 1, sym_block, - STATE(3592), 1, + STATE(3586), 1, sym_label, STATE(2431), 2, sym_line_comment, sym_block_comment, - [75540] = 8, + [75568] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_GT, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5461), 1, - anon_sym_COMMA, - STATE(2915), 1, - aux_sym_type_parameters_repeat1, - STATE(2951), 1, - sym_trait_bounds, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4979), 1, + anon_sym_LBRACE, + ACTIONS(5444), 1, + anon_sym_SEMI, + STATE(591), 1, + sym_block, + STATE(3586), 1, + sym_label, STATE(2432), 2, sym_line_comment, sym_block_comment, - [75566] = 7, + [75594] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5463), 1, + ACTIONS(1464), 1, anon_sym_RPAREN, - ACTIONS(5465), 1, + ACTIONS(5446), 1, anon_sym_COMMA, - STATE(2977), 1, + STATE(2817), 1, aux_sym_parameters_repeat1, ACTIONS(4453), 2, anon_sym_COLON, @@ -171241,90 +171277,91 @@ static const uint16_t ts_small_parse_table[] = { STATE(2433), 2, sym_line_comment, sym_block_comment, - [75590] = 4, + [75618] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5448), 1, + anon_sym_SEMI, + ACTIONS(5450), 1, + anon_sym_COLON, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5454), 1, + anon_sym_EQ, + ACTIONS(5456), 1, + anon_sym_else, STATE(2434), 2, sym_line_comment, sym_block_comment, - ACTIONS(5467), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75608] = 8, + [75644] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5469), 1, - anon_sym_SEMI, - STATE(1153), 1, - sym_block, - STATE(3595), 1, - sym_label, STATE(2435), 2, sym_line_comment, sym_block_comment, - [75634] = 7, + ACTIONS(5458), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75662] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5471), 1, - anon_sym_RPAREN, - ACTIONS(5474), 1, - anon_sym_COMMA, - STATE(2977), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, + ACTIONS(4971), 1, anon_sym_COLON, - anon_sym_PIPE, + ACTIONS(5460), 1, + anon_sym_GT, + ACTIONS(5462), 1, + anon_sym_COMMA, + STATE(2773), 1, + aux_sym_type_parameters_repeat1, + STATE(2888), 1, + sym_trait_bounds, STATE(2436), 2, sym_line_comment, sym_block_comment, - [75658] = 6, + [75688] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3311), 1, - anon_sym_PLUS, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5388), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4997), 1, + anon_sym_LBRACE, + ACTIONS(5464), 1, + anon_sym_SEMI, + STATE(1318), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2437), 2, sym_line_comment, sym_block_comment, - [75680] = 8, + [75714] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2955), 1, - anon_sym_POUND, - ACTIONS(5477), 1, - sym_identifier, - ACTIONS(5479), 1, - sym_integer_literal, - STATE(1069), 1, - aux_sym_enum_variant_list_repeat1, - STATE(1481), 1, - sym_attribute_item, + ACTIONS(5468), 1, + anon_sym_COMMA, + STATE(2428), 1, + aux_sym_where_clause_repeat1, STATE(2438), 2, sym_line_comment, sym_block_comment, - [75706] = 4, + ACTIONS(5466), 3, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_SQUOTE, + [75736] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171332,117 +171369,108 @@ static const uint16_t ts_small_parse_table[] = { STATE(2439), 2, sym_line_comment, sym_block_comment, - ACTIONS(5481), 5, + ACTIONS(5470), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [75724] = 4, + [75754] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4584), 1, + anon_sym_EQ, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(2746), 1, + sym_trait_bounds, + ACTIONS(5472), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2440), 2, sym_line_comment, sym_block_comment, - ACTIONS(5483), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_where, - [75742] = 8, + [75778] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, + ACTIONS(4971), 1, anon_sym_COLON, - ACTIONS(5311), 1, + ACTIONS(5323), 1, anon_sym_GT, - ACTIONS(5313), 1, + ACTIONS(5325), 1, anon_sym_COMMA, - STATE(2950), 1, - aux_sym_type_parameters_repeat1, - STATE(2951), 1, + STATE(2984), 1, sym_trait_bounds, + STATE(2991), 1, + aux_sym_type_arguments_repeat1, STATE(2441), 2, sym_line_comment, sym_block_comment, - [75768] = 8, + [75804] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5485), 1, - anon_sym_SEMI, - STATE(1315), 1, - sym_block, - STATE(3595), 1, - sym_label, STATE(2442), 2, sym_line_comment, sym_block_comment, - [75794] = 8, + ACTIONS(5474), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75822] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5487), 1, - anon_sym_GT, - ACTIONS(5489), 1, - anon_sym_COMMA, - STATE(2816), 1, - aux_sym_type_parameters_repeat1, - STATE(2951), 1, - sym_trait_bounds, STATE(2443), 2, sym_line_comment, sym_block_comment, - [75820] = 8, + ACTIONS(5476), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75840] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1934), 1, - sym_type_arguments, - STATE(1954), 1, - sym_parameters, STATE(2444), 2, sym_line_comment, sym_block_comment, - [75846] = 8, + ACTIONS(5478), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [75858] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5491), 1, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4997), 1, + anon_sym_LBRACE, + ACTIONS(5480), 1, anon_sym_SEMI, - ACTIONS(5493), 1, - anon_sym_COLON, - ACTIONS(5495), 1, - anon_sym_EQ, - ACTIONS(5497), 1, - anon_sym_else, + STATE(1458), 1, + sym_block, + STATE(3589), 1, + sym_label, STATE(2445), 2, sym_line_comment, sym_block_comment, - [75872] = 4, + [75884] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171450,31 +171478,31 @@ static const uint16_t ts_small_parse_table[] = { STATE(2446), 2, sym_line_comment, sym_block_comment, - ACTIONS(5499), 5, + ACTIONS(5482), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [75890] = 8, + [75902] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4848), 1, - anon_sym_PIPE, - ACTIONS(5501), 1, - anon_sym_SEMI, - ACTIONS(5503), 1, + ACTIONS(4654), 1, + anon_sym_GT, + ACTIONS(4971), 1, anon_sym_COLON, - ACTIONS(5505), 1, - anon_sym_EQ, - ACTIONS(5507), 1, - anon_sym_else, + ACTIONS(5484), 1, + anon_sym_COMMA, + STATE(2888), 1, + sym_trait_bounds, + STATE(2891), 1, + aux_sym_type_parameters_repeat1, STATE(2447), 2, sym_line_comment, sym_block_comment, - [75916] = 4, + [75928] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171482,62 +171510,63 @@ static const uint16_t ts_small_parse_table[] = { STATE(2448), 2, sym_line_comment, sym_block_comment, - ACTIONS(3545), 5, + ACTIONS(3643), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [75934] = 7, + [75946] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4225), 1, - anon_sym_LBRACE, - ACTIONS(5131), 1, - anon_sym_STAR, - STATE(3015), 1, - sym_use_list, - ACTIONS(5129), 2, - sym_identifier, - sym_super, STATE(2449), 2, sym_line_comment, sym_block_comment, - [75958] = 4, + ACTIONS(3647), 5, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ, + anon_sym_where, + [75964] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_PLUS, + STATE(1683), 1, + sym_block, + STATE(3591), 1, + sym_label, STATE(2450), 2, sym_line_comment, sym_block_comment, - ACTIONS(3703), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [75976] = 8, + [75990] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(1210), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4975), 1, - anon_sym_PLUS, - STATE(1106), 1, + ACTIONS(5486), 1, + anon_sym_move, + STATE(463), 1, sym_block, - STATE(3545), 1, + STATE(3590), 1, sym_label, STATE(2451), 2, sym_line_comment, sym_block_comment, - [76002] = 4, + [76016] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171545,13 +171574,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(2452), 2, sym_line_comment, sym_block_comment, - ACTIONS(5509), 5, + ACTIONS(3813), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [76020] = 4, + [76034] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171559,13 +171588,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(2453), 2, sym_line_comment, sym_block_comment, - ACTIONS(5511), 5, + ACTIONS(3817), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [76038] = 4, + [76052] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171573,13 +171602,13 @@ static const uint16_t ts_small_parse_table[] = { STATE(2454), 2, sym_line_comment, sym_block_comment, - ACTIONS(5513), 5, + ACTIONS(3821), 5, anon_sym_SEMI, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COLON, anon_sym_EQ, - anon_sym_COMMA, anon_sym_where, - [76056] = 4, + [76070] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171587,364 +171616,357 @@ static const uint16_t ts_small_parse_table[] = { STATE(2455), 2, sym_line_comment, sym_block_comment, - ACTIONS(3699), 5, + ACTIONS(3683), 5, anon_sym_SEMI, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ, anon_sym_where, - [76074] = 7, + [76088] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5515), 1, - anon_sym_RPAREN, - ACTIONS(5517), 1, - anon_sym_COMMA, - STATE(2899), 1, - aux_sym_parameters_repeat1, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, STATE(2456), 2, sym_line_comment, sym_block_comment, - [76098] = 7, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4977), 1, + ACTIONS(3687), 5, + anon_sym_SEMI, + anon_sym_LBRACE, anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_PLUS, - STATE(3241), 1, - sym_trait_bounds, - ACTIONS(5519), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2457), 2, - sym_line_comment, - sym_block_comment, - [76122] = 8, + anon_sym_EQ, + anon_sym_where, + [76106] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4983), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(5521), 1, + ACTIONS(5488), 1, anon_sym_SEMI, - STATE(574), 1, + STATE(616), 1, sym_block, - STATE(3592), 1, + STATE(3586), 1, sym_label, - STATE(2458), 2, + STATE(2457), 2, sym_line_comment, sym_block_comment, - [76148] = 7, + [76132] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3087), 1, - anon_sym_PLUS, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(3241), 1, - sym_trait_bounds, - ACTIONS(5519), 2, - anon_sym_GT, - anon_sym_COMMA, - STATE(2459), 2, + ACTIONS(5492), 1, + anon_sym_COLON_COLON, + ACTIONS(5494), 1, + anon_sym_as, + STATE(2458), 2, sym_line_comment, sym_block_comment, - [76172] = 8, + ACTIONS(5490), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [76154] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4973), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(5523), 1, + ACTIONS(5496), 1, anon_sym_SEMI, - STATE(1289), 1, + STATE(587), 1, sym_block, - STATE(3595), 1, + STATE(3586), 1, sym_label, - STATE(2460), 2, + STATE(2459), 2, sym_line_comment, sym_block_comment, - [76198] = 8, + [76180] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4814), 1, - anon_sym_RPAREN, - ACTIONS(5525), 1, + ACTIONS(4584), 1, + anon_sym_EQ, + ACTIONS(4971), 1, anon_sym_COLON, - ACTIONS(5527), 1, - anon_sym_PIPE, - ACTIONS(5529), 1, + STATE(2746), 1, + sym_trait_bounds, + ACTIONS(5498), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2911), 1, - aux_sym_closure_parameters_repeat1, - STATE(2461), 2, + STATE(2460), 2, sym_line_comment, sym_block_comment, - [76224] = 4, + [76204] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2462), 2, + STATE(2461), 2, sym_line_comment, sym_block_comment, - ACTIONS(3777), 5, + ACTIONS(5500), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [76242] = 8, + [76222] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5531), 1, + ACTIONS(5504), 1, + anon_sym_COLON_COLON, + ACTIONS(5506), 1, + anon_sym_as, + STATE(2462), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5502), 3, anon_sym_SEMI, - STATE(1466), 1, - sym_block, - STATE(3595), 1, - sym_label, + anon_sym_RBRACE, + anon_sym_COMMA, + [76244] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, STATE(2463), 2, sym_line_comment, sym_block_comment, - [76268] = 4, + ACTIONS(3215), 5, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + anon_sym_as, + [76262] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5508), 1, + anon_sym_RPAREN, + ACTIONS(5510), 1, + anon_sym_COLON, + ACTIONS(5512), 1, + anon_sym_COMMA, + STATE(2839), 1, + aux_sym_slice_pattern_repeat1, STATE(2464), 2, sym_line_comment, sym_block_comment, - ACTIONS(3745), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76286] = 7, + [76288] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4225), 1, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(5535), 1, - anon_sym_STAR, - STATE(3023), 1, - sym_use_list, - ACTIONS(5533), 2, - sym_identifier, - sym_super, + ACTIONS(5514), 1, + anon_sym_SEMI, + STATE(622), 1, + sym_block, + STATE(3586), 1, + sym_label, STATE(2465), 2, sym_line_comment, sym_block_comment, - [76310] = 8, + [76314] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5516), 1, + anon_sym_SEMI, + ACTIONS(5518), 1, anon_sym_COLON, - ACTIONS(5274), 1, - anon_sym_GT, - ACTIONS(5276), 1, - anon_sym_COMMA, - STATE(2885), 1, - sym_trait_bounds, - STATE(2886), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(5520), 1, + anon_sym_EQ, + ACTIONS(5522), 1, + anon_sym_else, STATE(2466), 2, sym_line_comment, sym_block_comment, - [76336] = 8, + [76340] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4983), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(5537), 1, - anon_sym_SEMI, - STATE(695), 1, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4989), 1, + anon_sym_PLUS, + STATE(1193), 1, sym_block, - STATE(3592), 1, + STATE(3539), 1, sym_label, STATE(2467), 2, sym_line_comment, sym_block_comment, - [76362] = 8, + [76366] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5539), 1, - anon_sym_SEMI, - STATE(1454), 1, - sym_block, - STATE(3595), 1, - sym_label, + ACTIONS(1470), 1, + anon_sym_RPAREN, + ACTIONS(5524), 1, + anon_sym_COMMA, + STATE(2846), 1, + aux_sym_parameters_repeat1, + ACTIONS(4453), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2468), 2, sym_line_comment, sym_block_comment, - [76388] = 4, + [76390] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5153), 1, + anon_sym_COLON, + ACTIONS(5155), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2469), 2, sym_line_comment, sym_block_comment, - ACTIONS(3681), 5, + [76414] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + STATE(2470), 2, + sym_line_comment, + sym_block_comment, + ACTIONS(5526), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [76406] = 8, + [76432] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5541), 1, + ACTIONS(5528), 1, anon_sym_RPAREN, - ACTIONS(5543), 1, - anon_sym_COLON, - ACTIONS(5545), 1, + ACTIONS(5530), 1, anon_sym_COMMA, - STATE(2993), 1, - aux_sym_slice_pattern_repeat1, - STATE(2470), 2, + STATE(2822), 1, + aux_sym_parameters_repeat1, + ACTIONS(4453), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2471), 2, sym_line_comment, sym_block_comment, - [76432] = 8, + [76456] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4451), 1, - anon_sym_COLON_COLON, - STATE(1054), 1, - sym_parameters, - STATE(1934), 1, - sym_type_arguments, - STATE(2471), 2, + STATE(2472), 2, sym_line_comment, sym_block_comment, - [76458] = 6, + ACTIONS(5532), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76474] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3717), 1, - anon_sym_PLUS, - ACTIONS(4800), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5385), 2, + ACTIONS(1466), 1, anon_sym_RPAREN, + ACTIONS(5534), 1, anon_sym_COMMA, - STATE(2472), 2, + STATE(2961), 1, + aux_sym_parameters_repeat1, + ACTIONS(4453), 2, + anon_sym_COLON, + anon_sym_PIPE, + STATE(2473), 2, sym_line_comment, sym_block_comment, - [76480] = 8, + [76498] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4983), 1, + ACTIONS(4979), 1, anon_sym_LBRACE, - ACTIONS(5547), 1, + ACTIONS(5536), 1, anon_sym_SEMI, - STATE(672), 1, + STATE(633), 1, sym_block, - STATE(3592), 1, + STATE(3586), 1, sym_label, - STATE(2473), 2, - sym_line_comment, - sym_block_comment, - [76506] = 8, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - ACTIONS(5266), 1, - anon_sym_GT, - ACTIONS(5268), 1, - anon_sym_COMMA, - STATE(2994), 1, - sym_trait_bounds, - STATE(3000), 1, - aux_sym_type_arguments_repeat1, STATE(2474), 2, sym_line_comment, sym_block_comment, - [76532] = 4, + [76524] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5402), 1, + anon_sym_RBRACK, + ACTIONS(3621), 2, + anon_sym_SEMI, + anon_sym_PLUS, + ACTIONS(4756), 2, + anon_sym_PIPE, + anon_sym_COMMA, STATE(2475), 2, sym_line_comment, sym_block_comment, - ACTIONS(3653), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76550] = 4, + [76546] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5506), 1, + anon_sym_as, + ACTIONS(5538), 1, + anon_sym_COLON_COLON, STATE(2476), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 5, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, + ACTIONS(5502), 3, + anon_sym_SEMI, + anon_sym_RBRACE, anon_sym_COMMA, - anon_sym_as, [76568] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, @@ -171953,31 +171975,27 @@ static const uint16_t ts_small_parse_table[] = { STATE(2477), 2, sym_line_comment, sym_block_comment, - ACTIONS(5549), 5, + ACTIONS(5540), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76586] = 8, + [76586] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(5551), 1, - anon_sym_move, - STATE(1792), 1, - sym_block, - STATE(3597), 1, - sym_label, STATE(2478), 2, sym_line_comment, sym_block_comment, - [76612] = 4, + ACTIONS(5542), 5, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_where, + [76604] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -171985,231 +172003,238 @@ static const uint16_t ts_small_parse_table[] = { STATE(2479), 2, sym_line_comment, sym_block_comment, - ACTIONS(5553), 5, + ACTIONS(5544), 5, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_EQ, anon_sym_COMMA, anon_sym_where, - [76630] = 4, + [76622] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4453), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2480), 2, sym_line_comment, sym_block_comment, - ACTIONS(5555), 5, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_EQ, + ACTIONS(3299), 3, + anon_sym_RPAREN, + anon_sym_PLUS, anon_sym_COMMA, - anon_sym_where, - [76648] = 4, + [76642] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4243), 1, + anon_sym_LBRACE, + ACTIONS(5548), 1, + anon_sym_STAR, + STATE(3000), 1, + sym_use_list, + ACTIONS(5546), 2, + sym_identifier, + sym_super, STATE(2481), 2, sym_line_comment, sym_block_comment, - ACTIONS(3707), 5, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76666] = 8, + [76666] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5557), 1, - anon_sym_SEMI, - STATE(1334), 1, - sym_block, - STATE(3595), 1, - sym_label, + ACTIONS(5550), 1, + anon_sym_RPAREN, + ACTIONS(5553), 1, + anon_sym_COMMA, + STATE(2822), 1, + aux_sym_parameters_repeat1, + ACTIONS(4453), 2, + anon_sym_COLON, + anon_sym_PIPE, STATE(2482), 2, sym_line_comment, sym_block_comment, - [76692] = 8, + [76690] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5559), 1, - anon_sym_SEMI, - STATE(1343), 1, - sym_block, - STATE(3595), 1, - sym_label, + ACTIONS(5556), 1, + anon_sym_STAR_SLASH, + ACTIONS(5558), 1, + sym__outer_block_doc_comment_marker, + ACTIONS(5560), 1, + sym__inner_block_doc_comment_marker, + ACTIONS(5562), 1, + sym__block_comment_content, + STATE(3265), 1, + sym__block_doc_comment_marker, STATE(2483), 2, sym_line_comment, sym_block_comment, - [76718] = 5, + [76716] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5563), 1, - anon_sym_COMMA, - ACTIONS(5561), 3, - anon_sym_SEMI, + ACTIONS(400), 1, anon_sym_LBRACE, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(2484), 3, + ACTIONS(4989), 1, + anon_sym_PLUS, + STATE(1689), 1, + sym_block, + STATE(3591), 1, + sym_label, + STATE(2484), 2, sym_line_comment, sym_block_comment, - aux_sym_where_clause_repeat1, - [76738] = 8, + [76742] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4983), 1, - anon_sym_LBRACE, - ACTIONS(5566), 1, + ACTIONS(4852), 1, + anon_sym_PIPE, + ACTIONS(5564), 1, anon_sym_SEMI, - STATE(502), 1, - sym_block, - STATE(3592), 1, - sym_label, + ACTIONS(5566), 1, + anon_sym_COLON, + ACTIONS(5568), 1, + anon_sym_EQ, + ACTIONS(5570), 1, + anon_sym_else, STATE(2485), 2, sym_line_comment, sym_block_comment, - [76764] = 8, + [76768] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - ACTIONS(4973), 1, + ACTIONS(4997), 1, anon_sym_LBRACE, - ACTIONS(5568), 1, + ACTIONS(5572), 1, anon_sym_SEMI, - STATE(1355), 1, + STATE(1431), 1, sym_block, - STATE(3595), 1, + STATE(3589), 1, sym_label, STATE(2486), 2, sym_line_comment, sym_block_comment, - [76790] = 8, + [76794] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4975), 1, + ACTIONS(3299), 1, anon_sym_PLUS, - STATE(1734), 1, - sym_block, - STATE(3597), 1, - sym_label, + ACTIONS(4453), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5423), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2487), 2, sym_line_comment, sym_block_comment, - [76816] = 4, + [76816] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5506), 1, + anon_sym_as, + ACTIONS(5574), 1, + anon_sym_COLON_COLON, STATE(2488), 2, sym_line_comment, sym_block_comment, - ACTIONS(3723), 5, + ACTIONS(5502), 3, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ, - anon_sym_where, - [76834] = 8, + anon_sym_RBRACE, + anon_sym_COMMA, + [76838] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4973), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(5570), 1, - anon_sym_SEMI, - STATE(1369), 1, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(5576), 1, + anon_sym_move, + STATE(1454), 1, sym_block, - STATE(3595), 1, + STATE(3539), 1, sym_label, STATE(2489), 2, sym_line_comment, sym_block_comment, - [76860] = 7, + [76864] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4580), 1, - anon_sym_EQ, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(2941), 1, - sym_trait_bounds, - ACTIONS(5572), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4979), 1, + anon_sym_LBRACE, + ACTIONS(5578), 1, + anon_sym_SEMI, + STATE(519), 1, + sym_block, + STATE(3586), 1, + sym_label, STATE(2490), 2, sym_line_comment, sym_block_comment, - [76884] = 8, + [76890] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4973), 1, - anon_sym_LBRACE, - ACTIONS(5574), 1, - anon_sym_SEMI, - STATE(1377), 1, - sym_block, - STATE(3595), 1, - sym_label, + ACTIONS(3243), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4451), 1, + anon_sym_COLON_COLON, + STATE(1049), 1, + sym_parameters, + STATE(1931), 1, + sym_type_arguments, STATE(2491), 2, sym_line_comment, sym_block_comment, - [76910] = 8, + [76916] = 8, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4848), 1, - anon_sym_PIPE, - ACTIONS(5576), 1, - anon_sym_SEMI, - ACTIONS(5578), 1, - anon_sym_COLON, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + ACTIONS(4979), 1, + anon_sym_LBRACE, ACTIONS(5580), 1, - anon_sym_EQ, - ACTIONS(5582), 1, - anon_sym_else, + anon_sym_SEMI, + STATE(574), 1, + sym_block, + STATE(3586), 1, + sym_label, STATE(2492), 2, sym_line_comment, sym_block_comment, - [76936] = 4, + [76942] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -172217,3818 +172242,3825 @@ static const uint16_t ts_small_parse_table[] = { STATE(2493), 2, sym_line_comment, sym_block_comment, - ACTIONS(3685), 5, + ACTIONS(5582), 5, anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COLON, + anon_sym_RBRACE, anon_sym_EQ, + anon_sym_COMMA, anon_sym_where, - [76954] = 7, + [76960] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3410), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5155), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2494), 2, sym_line_comment, sym_block_comment, - [76977] = 7, + [76981] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5584), 1, - anon_sym_COLON_COLON, - ACTIONS(5586), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, - STATE(2495), 2, - sym_line_comment, - sym_block_comment, - [77000] = 7, - ACTIONS(19), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(245), 1, + STATE(1195), 1, sym_block, - STATE(3414), 1, + STATE(3539), 1, sym_label, - STATE(2496), 2, + STATE(2495), 2, sym_line_comment, sym_block_comment, - [77023] = 6, + [77004] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5588), 1, + ACTIONS(5584), 1, anon_sym_DQUOTE, - STATE(2525), 1, + STATE(2510), 1, aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, + ACTIONS(5586), 2, sym_string_content, sym_escape_sequence, - STATE(2497), 2, + STATE(2496), 2, sym_line_comment, sym_block_comment, - [77044] = 7, + [77025] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5181), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(460), 1, - sym_block, - STATE(3596), 1, - sym_label, + STATE(1196), 1, + sym_delim_token_tree, + STATE(2497), 2, + sym_line_comment, + sym_block_comment, + [77048] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5588), 1, + sym_identifier, + STATE(1565), 1, + sym_type_arguments, STATE(2498), 2, sym_line_comment, sym_block_comment, - [77067] = 7, + [77071] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(455), 1, - sym_block, - STATE(3596), 1, - sym_label, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5588), 1, + sym_identifier, + STATE(1570), 1, + sym_type_arguments, STATE(2499), 2, sym_line_comment, sym_block_comment, - [77090] = 7, + [77094] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1821), 1, - sym_block, - STATE(3597), 1, - sym_label, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5590), 1, + anon_sym_RPAREN, + ACTIONS(5592), 1, + anon_sym_COMMA, + STATE(2989), 1, + aux_sym_tuple_pattern_repeat1, STATE(2500), 2, sym_line_comment, sym_block_comment, - [77113] = 7, + [77117] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(593), 1, - sym_declaration_list, - STATE(3049), 1, - sym_where_clause, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5594), 1, + anon_sym_RBRACK, + ACTIONS(5596), 1, + anon_sym_COMMA, + STATE(3007), 1, + aux_sym_slice_pattern_repeat1, STATE(2501), 2, sym_line_comment, sym_block_comment, - [77136] = 7, + [77140] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(5247), 1, - anon_sym_LBRACE, - STATE(730), 1, - sym_enum_variant_list, - STATE(3222), 1, - sym_where_clause, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, + ACTIONS(5600), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2502), 2, sym_line_comment, sym_block_comment, - [77159] = 7, + [77163] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - ACTIONS(4897), 1, - anon_sym_where, - STATE(687), 1, - sym_field_declaration_list, - STATE(3231), 1, - sym_where_clause, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5602), 1, + sym_identifier, + ACTIONS(5604), 1, + sym_super, + STATE(3195), 1, + sym_type_arguments, STATE(2503), 2, sym_line_comment, sym_block_comment, - [77182] = 7, + [77186] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5592), 1, - anon_sym_LPAREN, - ACTIONS(5594), 1, - anon_sym_LBRACK, - ACTIONS(5596), 1, - anon_sym_LBRACE, - STATE(390), 1, - sym_delim_token_tree, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(399), 1, + sym_block, + STATE(3510), 1, + sym_label, STATE(2504), 2, sym_line_comment, sym_block_comment, - [77205] = 7, + [77209] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(2231), 1, - sym_parameters, - STATE(3143), 1, - sym_type_parameters, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5602), 1, + sym_identifier, + ACTIONS(5604), 1, + sym_super, + STATE(3217), 1, + sym_type_arguments, STATE(2505), 2, sym_line_comment, sym_block_comment, - [77228] = 7, + [77232] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - ACTIONS(4973), 1, - anon_sym_LBRACE, - STATE(2957), 1, - sym_block, - STATE(3595), 1, - sym_label, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5606), 1, + anon_sym_RPAREN, + ACTIONS(5608), 1, + anon_sym_COMMA, + STATE(2742), 1, + aux_sym_tuple_type_repeat1, STATE(2506), 2, sym_line_comment, sym_block_comment, - [77251] = 7, + [77255] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - ACTIONS(4897), 1, - anon_sym_where, - STATE(649), 1, - sym_field_declaration_list, - STATE(3039), 1, - sym_where_clause, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(1933), 1, + sym_type_arguments, + STATE(2604), 1, + sym_trait_bounds, STATE(2507), 2, sym_line_comment, sym_block_comment, - [77274] = 7, + [77278] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(701), 1, - sym_declaration_list, - STATE(3200), 1, - sym_where_clause, + ACTIONS(4453), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5610), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2508), 2, sym_line_comment, sym_block_comment, - [77297] = 6, + [77297] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5598), 1, - anon_sym_DQUOTE, - STATE(2546), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(3243), 1, + anon_sym_LPAREN, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(1067), 1, + sym_parameters, + STATE(1933), 1, + sym_type_arguments, STATE(2509), 2, sym_line_comment, sym_block_comment, - [77318] = 7, + [77320] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1460), 1, - anon_sym_RPAREN, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5437), 1, - anon_sym_COMMA, - STATE(2878), 1, - aux_sym_parameters_repeat1, - STATE(2510), 2, + ACTIONS(5612), 1, + anon_sym_DQUOTE, + ACTIONS(5614), 2, + sym_string_content, + sym_escape_sequence, + STATE(2510), 3, sym_line_comment, sym_block_comment, - [77341] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + aux_sym_string_literal_repeat1, + [77339] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(398), 1, - sym_block, - STATE(3414), 1, - sym_label, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(5235), 1, + anon_sym_LBRACE, + STATE(1234), 1, + sym_enum_variant_list, + STATE(3090), 1, + sym_where_clause, STATE(2511), 2, sym_line_comment, sym_block_comment, - [77364] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [77362] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(386), 1, - sym_block, - STATE(3414), 1, - sym_label, + ACTIONS(5460), 1, + anon_sym_GT, + ACTIONS(5462), 1, + anon_sym_COMMA, + ACTIONS(5617), 1, + anon_sym_EQ, + STATE(2773), 1, + aux_sym_type_parameters_repeat1, STATE(2512), 2, sym_line_comment, sym_block_comment, - [77387] = 7, + [77385] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3436), 1, - sym_block, - STATE(3545), 1, - sym_label, + STATE(1258), 1, + sym_declaration_list, + STATE(3116), 1, + sym_where_clause, STATE(2513), 2, sym_line_comment, sym_block_comment, - [77410] = 7, + [77408] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(2209), 1, - sym_parameters, - STATE(3159), 1, - sym_type_parameters, + ACTIONS(4870), 1, + anon_sym_LBRACE, + ACTIONS(4874), 1, + anon_sym_where, + STATE(685), 1, + sym_field_declaration_list, + STATE(3190), 1, + sym_where_clause, STATE(2514), 2, sym_line_comment, sym_block_comment, - [77433] = 7, + [77431] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3965), 1, - anon_sym_LT2, - ACTIONS(4081), 1, - anon_sym_COLON_COLON, - ACTIONS(4762), 1, - anon_sym_BANG, - STATE(1611), 1, - sym_type_arguments, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4891), 1, + anon_sym_LBRACE, + STATE(1268), 1, + sym_field_declaration_list, + STATE(3119), 1, + sym_where_clause, STATE(2515), 2, sym_line_comment, sym_block_comment, - [77456] = 7, + [77454] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5584), 1, - anon_sym_COLON_COLON, - ACTIONS(5600), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, + ACTIONS(5619), 1, + anon_sym_COLON, STATE(2516), 2, sym_line_comment, sym_block_comment, - [77479] = 7, + ACTIONS(4852), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [77473] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5602), 1, + ACTIONS(4443), 1, anon_sym_LPAREN, - ACTIONS(5604), 1, - anon_sym_LBRACK, - ACTIONS(5606), 1, - anon_sym_LBRACE, - STATE(2675), 1, - sym_token_tree, + ACTIONS(4872), 1, + anon_sym_LT, + STATE(2196), 1, + sym_parameters, + STATE(3163), 1, + sym_type_parameters, STATE(2517), 2, sym_line_comment, sym_block_comment, - [77502] = 7, + [77496] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(454), 1, + STATE(393), 1, sym_block, - STATE(3596), 1, + STATE(3510), 1, sym_label, STATE(2518), 2, sym_line_comment, sym_block_comment, - [77525] = 7, + [77519] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5608), 1, - anon_sym_LPAREN, - ACTIONS(5610), 1, - anon_sym_LBRACK, - ACTIONS(5612), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - STATE(1958), 1, - sym_delim_token_tree, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1287), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2519), 2, sym_line_comment, sym_block_comment, - [77548] = 7, + [77542] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(446), 1, - sym_block, - STATE(3596), 1, - sym_label, + ACTIONS(5621), 1, + anon_sym_DQUOTE, + STATE(2510), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2520), 2, sym_line_comment, sym_block_comment, - [77571] = 7, + [77563] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5614), 1, - anon_sym_SEMI, - STATE(3427), 1, - sym_where_clause, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + anon_sym_LBRACK, + ACTIONS(5627), 1, + anon_sym_LBRACE, + STATE(372), 1, + sym_delim_token_tree, STATE(2521), 2, sym_line_comment, sym_block_comment, - [77594] = 7, + [77586] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(479), 1, - sym_declaration_list, - STATE(3183), 1, - sym_where_clause, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5629), 1, + sym_identifier, + STATE(1419), 1, + sym_type_arguments, STATE(2522), 2, sym_line_comment, sym_block_comment, - [77617] = 7, + [77609] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(462), 1, - sym_block, - STATE(3596), 1, - sym_label, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5631), 1, + anon_sym_SEMI, + STATE(3400), 1, + sym_where_clause, STATE(2523), 2, sym_line_comment, sym_block_comment, - [77640] = 7, + [77632] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1444), 1, - sym_declaration_list, - STATE(3037), 1, - sym_where_clause, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5633), 1, + anon_sym_RPAREN, + ACTIONS(5635), 1, + anon_sym_COMMA, + STATE(2857), 1, + aux_sym_slice_pattern_repeat1, STATE(2524), 2, sym_line_comment, sym_block_comment, - [77663] = 6, + [77655] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5616), 1, - anon_sym_DQUOTE, - STATE(2546), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5637), 1, + anon_sym_RPAREN, + ACTIONS(5639), 1, + anon_sym_COMMA, + STATE(2864), 1, + aux_sym_slice_pattern_repeat1, STATE(2525), 2, sym_line_comment, sym_block_comment, - [77684] = 5, - ACTIONS(3), 1, + [77678] = 7, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5618), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5438), 1, + anon_sym_RPAREN, + ACTIONS(5440), 1, + anon_sym_COMMA, + STATE(2872), 1, + aux_sym_parameters_repeat1, STATE(2526), 2, sym_line_comment, sym_block_comment, - ACTIONS(5620), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [77703] = 4, + [77701] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(3217), 1, + sym_type_arguments, + ACTIONS(5604), 2, + sym_identifier, + sym_super, STATE(2527), 2, sym_line_comment, sym_block_comment, - ACTIONS(803), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [77720] = 7, + [77722] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5622), 1, - anon_sym_SEMI, - STATE(3343), 1, - sym_where_clause, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(3195), 1, + sym_type_arguments, + ACTIONS(5641), 2, + sym_identifier, + sym_super, STATE(2528), 2, sym_line_comment, sym_block_comment, - [77743] = 7, + [77743] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3455), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(3217), 1, + sym_type_arguments, + ACTIONS(5641), 2, + sym_identifier, + sym_super, STATE(2529), 2, sym_line_comment, sym_block_comment, - [77766] = 7, + [77764] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5608), 1, - anon_sym_LPAREN, - ACTIONS(5610), 1, - anon_sym_LBRACK, - ACTIONS(5612), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, anon_sym_LBRACE, - STATE(1943), 1, - sym_delim_token_tree, + STATE(582), 1, + sym_declaration_list, + STATE(3230), 1, + sym_where_clause, STATE(2530), 2, sym_line_comment, sym_block_comment, - [77789] = 7, + [77787] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4473), 1, - anon_sym_BANG, - ACTIONS(4568), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4644), 1, + anon_sym_GT, + ACTIONS(5371), 1, + anon_sym_COMMA, + ACTIONS(5617), 1, + anon_sym_EQ, + STATE(2873), 1, + aux_sym_type_parameters_repeat1, STATE(2531), 2, sym_line_comment, sym_block_comment, - [77812] = 7, + [77810] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3965), 1, - anon_sym_LT2, - ACTIONS(5624), 1, - sym_identifier, - ACTIONS(5626), 1, - sym_super, - STATE(1562), 1, - sym_type_arguments, + ACTIONS(5432), 1, + anon_sym_COLON, + ACTIONS(5434), 1, + anon_sym_PIPE, + ACTIONS(5436), 1, + anon_sym_COMMA, + STATE(3001), 1, + aux_sym_closure_parameters_repeat1, STATE(2532), 2, sym_line_comment, sym_block_comment, - [77835] = 7, + [77833] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3965), 1, - anon_sym_LT2, - ACTIONS(5624), 1, - sym_identifier, - ACTIONS(5626), 1, - sym_super, - STATE(1571), 1, - sym_type_arguments, STATE(2533), 2, sym_line_comment, sym_block_comment, - [77858] = 7, + ACTIONS(5643), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [77850] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3475), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(4654), 1, + anon_sym_GT, + ACTIONS(5484), 1, + anon_sym_COMMA, + ACTIONS(5617), 1, + anon_sym_EQ, + STATE(2891), 1, + aux_sym_type_parameters_repeat1, STATE(2534), 2, sym_line_comment, sym_block_comment, - [77881] = 7, + [77873] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5628), 1, - sym_identifier, - STATE(3106), 1, + STATE(3195), 1, sym_type_arguments, + ACTIONS(5103), 2, + sym_identifier, + sym_super, STATE(2535), 2, sym_line_comment, sym_block_comment, - [77904] = 7, + [77894] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5630), 1, - anon_sym_RPAREN, - ACTIONS(5632), 1, - anon_sym_COMMA, - STATE(2932), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(5281), 1, + anon_sym_LBRACE, + STATE(745), 1, + sym_enum_variant_list, + STATE(3159), 1, + sym_where_clause, STATE(2536), 2, sym_line_comment, sym_block_comment, - [77927] = 7, + [77917] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5628), 1, - sym_identifier, - STATE(3154), 1, + STATE(3217), 1, sym_type_arguments, + ACTIONS(5103), 2, + sym_identifier, + sym_super, STATE(2537), 2, sym_line_comment, sym_block_comment, - [77950] = 5, + [77938] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5645), 1, + anon_sym_SEMI, + ACTIONS(5647), 1, + anon_sym_EQ, + ACTIONS(5649), 1, + anon_sym_else, STATE(2538), 2, sym_line_comment, sym_block_comment, - ACTIONS(5634), 3, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_COMMA, - [77969] = 5, + [77961] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5636), 1, - anon_sym_COMMA, - ACTIONS(5634), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - STATE(2539), 3, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5651), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, + STATE(2539), 2, sym_line_comment, sym_block_comment, - aux_sym_slice_pattern_repeat1, - [77988] = 4, + [77984] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1344), 1, + sym_declaration_list, + STATE(3215), 1, + sym_where_clause, STATE(2540), 2, sym_line_comment, sym_block_comment, - ACTIONS(3215), 4, - anon_sym_COLON, - anon_sym_PLUS, - anon_sym_GT, - anon_sym_COMMA, - [78005] = 7, + [78007] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5639), 1, - anon_sym_RPAREN, - ACTIONS(5641), 1, - anon_sym_COMMA, - STATE(2971), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(5653), 1, + anon_sym_SEMI, + STATE(3381), 1, + sym_where_clause, STATE(2541), 2, sym_line_comment, sym_block_comment, - [78028] = 5, + [78030] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1356), 1, + sym_declaration_list, + STATE(3219), 1, + sym_where_clause, STATE(2542), 2, sym_line_comment, sym_block_comment, - ACTIONS(5643), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [78047] = 7, + [78053] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(2228), 1, - sym_parameters, - STATE(3185), 1, - sym_type_parameters, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(5235), 1, + anon_sym_LBRACE, + STATE(1361), 1, + sym_enum_variant_list, + STATE(3229), 1, + sym_where_clause, STATE(2543), 2, sym_line_comment, sym_block_comment, - [78070] = 7, + [78076] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3512), 1, - sym_block, - STATE(3545), 1, - sym_label, + STATE(740), 1, + sym_declaration_list, + STATE(3099), 1, + sym_where_clause, STATE(2544), 2, sym_line_comment, sym_block_comment, - [78093] = 5, + [78099] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5645), 1, - anon_sym_in, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4891), 1, + anon_sym_LBRACE, + STATE(1371), 1, + sym_field_declaration_list, + STATE(3233), 1, + sym_where_clause, STATE(2545), 2, sym_line_comment, sym_block_comment, - ACTIONS(5647), 3, - sym_self, - sym_super, - sym_crate, - [78112] = 5, + [78122] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5649), 1, - anon_sym_DQUOTE, - ACTIONS(5651), 2, - sym_string_content, - sym_escape_sequence, - STATE(2546), 3, + STATE(2546), 2, sym_line_comment, sym_block_comment, - aux_sym_string_literal_repeat1, - [78131] = 5, + ACTIONS(5397), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [78139] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5654), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1376), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2547), 2, sym_line_comment, sym_block_comment, - [78150] = 7, + [78162] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(3537), 1, + STATE(244), 1, sym_block, - STATE(3545), 1, + STATE(3510), 1, sym_label, STATE(2548), 2, sym_line_comment, sym_block_comment, - [78173] = 7, + [78185] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1626), 1, - sym_parameters, - STATE(1935), 1, - sym_type_arguments, + ACTIONS(5655), 1, + anon_sym_COLON, STATE(2549), 2, sym_line_comment, sym_block_comment, - [78196] = 7, - ACTIONS(101), 1, + ACTIONS(4852), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [78204] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5656), 1, - anon_sym_SEMI, - ACTIONS(5658), 1, - anon_sym_EQ, - ACTIONS(5660), 1, - anon_sym_else, + ACTIONS(5657), 1, + aux_sym_token_repetition_pattern_token1, STATE(2550), 2, sym_line_comment, sym_block_comment, - [78219] = 7, + ACTIONS(5659), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [78223] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3447), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(5661), 1, + anon_sym_in, STATE(2551), 2, sym_line_comment, sym_block_comment, - [78242] = 7, + ACTIONS(5663), 3, + sym_self, + sym_super, + sym_crate, + [78242] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3415), 1, - sym_block, - STATE(3545), 1, - sym_label, STATE(2552), 2, sym_line_comment, sym_block_comment, - [78265] = 5, + ACTIONS(759), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [78259] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5270), 1, - anon_sym_PLUS, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_LT, + STATE(2191), 1, + sym_parameters, + STATE(3228), 1, + sym_type_parameters, STATE(2553), 2, sym_line_comment, sym_block_comment, - ACTIONS(5662), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [78284] = 4, + [78282] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1466), 1, + anon_sym_RPAREN, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5534), 1, + anon_sym_COMMA, + STATE(2961), 1, + aux_sym_parameters_repeat1, STATE(2554), 2, sym_line_comment, sym_block_comment, - ACTIONS(955), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [78301] = 7, + [78305] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, + ACTIONS(1470), 1, + anon_sym_RPAREN, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5524), 1, anon_sym_COMMA, - ACTIONS(5664), 1, - anon_sym_EQ, - STATE(2950), 1, - aux_sym_type_parameters_repeat1, + STATE(2846), 1, + aux_sym_parameters_repeat1, STATE(2555), 2, sym_line_comment, sym_block_comment, - [78324] = 7, + [78328] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5525), 1, - anon_sym_COLON, - ACTIONS(5527), 1, - anon_sym_PIPE, - ACTIONS(5529), 1, - anon_sym_COMMA, - STATE(2911), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, + ACTIONS(5665), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2556), 2, sym_line_comment, sym_block_comment, - [78347] = 7, + [78351] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(457), 1, - sym_block, - STATE(3596), 1, - sym_label, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5667), 1, + anon_sym_SEMI, + ACTIONS(5669), 1, + anon_sym_EQ, + ACTIONS(5671), 1, + anon_sym_else, STATE(2557), 2, sym_line_comment, sym_block_comment, - [78370] = 5, - ACTIONS(3), 1, + [78374] = 7, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5666), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5673), 1, + anon_sym_SEMI, + STATE(3479), 1, + sym_where_clause, STATE(2558), 2, sym_line_comment, sym_block_comment, - ACTIONS(5668), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [78389] = 7, + [78397] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5584), 1, - anon_sym_COLON_COLON, - ACTIONS(5670), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1426), 1, + sym_declaration_list, + STATE(3271), 1, + sym_where_clause, STATE(2559), 2, sym_line_comment, sym_block_comment, - [78412] = 5, + [78420] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5672), 1, - anon_sym_COLON, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5675), 1, + anon_sym_SEMI, + STATE(3500), 1, + sym_where_clause, STATE(2560), 2, sym_line_comment, sym_block_comment, - ACTIONS(4848), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [78431] = 7, + [78443] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5674), 1, - anon_sym_LPAREN, - ACTIONS(5676), 1, - anon_sym_LBRACK, - ACTIONS(5678), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, anon_sym_LBRACE, - STATE(1031), 1, - sym_delim_token_tree, + STATE(1441), 1, + sym_declaration_list, + STATE(3274), 1, + sym_where_clause, STATE(2561), 2, sym_line_comment, sym_block_comment, - [78454] = 7, + [78466] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5419), 1, - anon_sym_RPAREN, - ACTIONS(5421), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_parameters_repeat1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(679), 1, + sym_declaration_list, + STATE(3210), 1, + sym_where_clause, STATE(2562), 2, sym_line_comment, sym_block_comment, - [78477] = 7, + [78489] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(547), 1, - sym_declaration_list, - STATE(3177), 1, - sym_where_clause, + ACTIONS(5677), 1, + anon_sym_DQUOTE, + STATE(2520), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2563), 2, sym_line_comment, sym_block_comment, - [78500] = 7, + [78510] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(2888), 1, + sym_trait_bounds, + ACTIONS(5679), 2, anon_sym_GT, - ACTIONS(5413), 1, anon_sym_COMMA, - ACTIONS(5664), 1, - anon_sym_EQ, - STATE(2940), 1, - aux_sym_type_parameters_repeat1, STATE(2564), 2, sym_line_comment, sym_block_comment, - [78523] = 4, + [78531] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5241), 1, + anon_sym_PLUS, STATE(2565), 2, sym_line_comment, sym_block_comment, - ACTIONS(5680), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5681), 3, + anon_sym_COLON, + anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - [78540] = 7, + [78550] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(4870), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3334), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(4874), 1, + anon_sym_where, + STATE(751), 1, + sym_field_declaration_list, + STATE(3286), 1, + sym_where_clause, STATE(2566), 2, sym_line_comment, sym_block_comment, - [78563] = 7, + [78573] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1430), 1, - sym_declaration_list, - STATE(3064), 1, - sym_where_clause, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(382), 1, + sym_block, + STATE(3510), 1, + sym_label, STATE(2567), 2, sym_line_comment, sym_block_comment, - [78586] = 7, + [78596] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5682), 1, - anon_sym_SEMI, - STATE(3580), 1, - sym_where_clause, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_LT, + STATE(2217), 1, + sym_parameters, + STATE(3083), 1, + sym_type_parameters, STATE(2568), 2, sym_line_comment, sym_block_comment, - [78609] = 4, + [78619] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5241), 1, + anon_sym_PLUS, STATE(2569), 2, sym_line_comment, sym_block_comment, - ACTIONS(5684), 4, - anon_sym_SEMI, - anon_sym_LBRACE, + ACTIONS(5683), 3, + anon_sym_COLON, + anon_sym_GT, anon_sym_COMMA, - anon_sym_SQUOTE, - [78626] = 6, + [78638] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4225), 1, - anon_sym_LBRACE, - STATE(3011), 1, - sym_use_list, - ACTIONS(5686), 2, - sym_identifier, - sym_super, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5685), 1, + anon_sym_SEMI, + STATE(3598), 1, + sym_where_clause, STATE(2570), 2, sym_line_comment, sym_block_comment, - [78647] = 7, + [78661] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4676), 1, - anon_sym_for, - ACTIONS(5584), 1, - anon_sym_COLON_COLON, - STATE(1934), 1, - sym_type_arguments, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1121), 1, + sym_declaration_list, + STATE(3035), 1, + sym_where_clause, STATE(2571), 2, sym_line_comment, sym_block_comment, - [78670] = 7, + [78684] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5688), 1, - anon_sym_SEMI, - STATE(3425), 1, - sym_where_clause, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5651), 1, + sym_identifier, + STATE(3217), 1, + sym_type_arguments, STATE(2572), 2, sym_line_comment, sym_block_comment, - [78693] = 4, + [78707] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(383), 1, + sym_block, + STATE(3510), 1, + sym_label, STATE(2573), 2, sym_line_comment, sym_block_comment, - ACTIONS(4269), 4, - anon_sym_LBRACE, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_SQUOTE, - [78710] = 6, + [78730] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5687), 1, + anon_sym_SEMI, + STATE(3413), 1, + sym_where_clause, + STATE(2574), 2, + sym_line_comment, + sym_block_comment, + [78753] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4971), 1, anon_sym_COLON, - STATE(2951), 1, + STATE(3250), 1, sym_trait_bounds, - ACTIONS(5690), 2, + ACTIONS(5373), 2, anon_sym_GT, anon_sym_COMMA, - STATE(2574), 2, + STATE(2575), 2, sym_line_comment, sym_block_comment, - [78731] = 7, + [78774] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3492), 1, - sym_block, - STATE(3545), 1, - sym_label, - STATE(2575), 2, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5689), 1, + anon_sym_RPAREN, + ACTIONS(5691), 1, + anon_sym_COMMA, + STATE(2946), 1, + aux_sym_tuple_type_repeat1, + STATE(2576), 2, sym_line_comment, sym_block_comment, - [78754] = 7, + [78797] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, + ACTIONS(4874), 1, anon_sym_where, - ACTIONS(4907), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - STATE(1329), 1, + STATE(514), 1, sym_declaration_list, - STATE(3102), 1, + STATE(3221), 1, sym_where_clause, - STATE(2576), 2, + STATE(2577), 2, sym_line_comment, sym_block_comment, - [78777] = 7, + [78820] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4443), 1, + anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(1935), 1, + STATE(1933), 1, sym_type_arguments, - STATE(2565), 1, - sym_trait_bounds, - STATE(2577), 2, + STATE(1948), 1, + sym_parameters, + STATE(2578), 2, sym_line_comment, sym_block_comment, - [78800] = 7, + [78843] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5692), 1, - anon_sym_SEMI, - STATE(3540), 1, - sym_where_clause, - STATE(2578), 2, - sym_line_comment, - sym_block_comment, - [78823] = 5, - ACTIONS(3), 1, - anon_sym_SLASH_SLASH, - ACTIONS(5), 1, - anon_sym_SLASH_STAR, - ACTIONS(5694), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(5693), 1, + anon_sym_RPAREN, + ACTIONS(5695), 1, + anon_sym_COMMA, + STATE(2975), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2579), 2, sym_line_comment, sym_block_comment, - ACTIONS(5696), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [78842] = 7, + [78866] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, + ACTIONS(5697), 1, + anon_sym_LPAREN, + ACTIONS(5699), 1, + anon_sym_LBRACK, + ACTIONS(5701), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(461), 1, - sym_block, - STATE(3596), 1, - sym_label, + STATE(2533), 1, + sym_token_tree, STATE(2580), 2, sym_line_comment, sym_block_comment, - [78865] = 7, + [78889] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(5247), 1, - anon_sym_LBRACE, - STATE(737), 1, - sym_enum_variant_list, - STATE(3155), 1, - sym_where_clause, + ACTIONS(4453), 2, + anon_sym_COLON, + anon_sym_PIPE, + ACTIONS(5703), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2581), 2, sym_line_comment, sym_block_comment, - [78888] = 7, + [78908] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1454), 1, - anon_sym_RPAREN, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5365), 1, - anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, + ACTIONS(1210), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(473), 1, + sym_block, + STATE(3590), 1, + sym_label, STATE(2582), 2, sym_line_comment, sym_block_comment, - [78911] = 6, + [78931] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5151), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(1210), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(466), 1, + sym_block, + STATE(3590), 1, + sym_label, STATE(2583), 2, sym_line_comment, sym_block_comment, - [78932] = 7, + [78954] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5698), 1, - anon_sym_SEMI, - ACTIONS(5700), 1, - anon_sym_EQ, - ACTIONS(5702), 1, - anon_sym_else, + ACTIONS(5705), 1, + anon_sym_DQUOTE, + STATE(2595), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2584), 2, sym_line_comment, sym_block_comment, - [78955] = 7, + [78975] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(3333), 1, + ACTIONS(4997), 1, + anon_sym_LBRACE, + STATE(2841), 1, sym_block, - STATE(3545), 1, + STATE(3589), 1, sym_label, STATE(2585), 2, sym_line_comment, sym_block_comment, - [78978] = 7, + [78998] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5704), 1, - anon_sym_SEMI, - ACTIONS(5706), 1, - anon_sym_EQ, - ACTIONS(5708), 1, - anon_sym_else, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1744), 1, + sym_block, + STATE(3591), 1, + sym_label, STATE(2586), 2, sym_line_comment, sym_block_comment, - [79001] = 7, - ACTIONS(101), 1, + [79021] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3338), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(5707), 1, + aux_sym_token_repetition_pattern_token1, STATE(2587), 2, sym_line_comment, sym_block_comment, - [79024] = 7, + ACTIONS(5709), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [79040] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, ACTIONS(4449), 1, anon_sym_LT2, - STATE(1935), 1, + STATE(3195), 1, sym_type_arguments, - STATE(1959), 1, - sym_parameters, + ACTIONS(5604), 2, + sym_identifier, + sym_super, STATE(2588), 2, sym_line_comment, sym_block_comment, - [79047] = 7, + [79061] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5710), 1, - anon_sym_RPAREN, - ACTIONS(5712), 1, + ACTIONS(5711), 1, anon_sym_COMMA, - STATE(2855), 1, - aux_sym_ordered_field_declaration_list_repeat1, - STATE(2589), 2, + ACTIONS(4091), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + STATE(2589), 3, sym_line_comment, sym_block_comment, - [79070] = 7, + aux_sym_arguments_repeat1, + [79080] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1802), 1, - sym_block, - STATE(3597), 1, - sym_label, + ACTIONS(3945), 1, + anon_sym_LT2, + ACTIONS(4095), 1, + anon_sym_COLON_COLON, + ACTIONS(4846), 1, + anon_sym_BANG, + STATE(1581), 1, + sym_type_arguments, STATE(2590), 2, sym_line_comment, sym_block_comment, - [79093] = 7, + [79103] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(1210), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(1839), 1, + STATE(454), 1, sym_block, - STATE(3597), 1, + STATE(3590), 1, sym_label, STATE(2591), 2, sym_line_comment, sym_block_comment, - [79116] = 6, + [79126] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(5714), 1, - anon_sym_DQUOTE, - STATE(2611), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_LBRACK, + ACTIONS(5718), 1, + anon_sym_LBRACE, + STATE(1957), 1, + sym_delim_token_tree, STATE(2592), 2, sym_line_comment, sym_block_comment, - [79137] = 7, + [79149] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5716), 1, + ACTIONS(1210), 1, anon_sym_LBRACE, - ACTIONS(5718), 1, - anon_sym_for, - ACTIONS(5720), 1, - anon_sym_loop, - ACTIONS(5722), 1, - anon_sym_while, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(446), 1, + sym_block, + STATE(3590), 1, + sym_label, STATE(2593), 2, sym_line_comment, sym_block_comment, - [79160] = 5, + [79172] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, + ACTIONS(1210), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(467), 1, + sym_block, + STATE(3590), 1, + sym_label, STATE(2594), 2, sym_line_comment, sym_block_comment, - ACTIONS(5724), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [79179] = 6, + [79195] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3154), 1, - sym_type_arguments, - ACTIONS(5726), 2, - sym_identifier, - sym_super, + ACTIONS(5720), 1, + anon_sym_DQUOTE, + STATE(2510), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2595), 2, sym_line_comment, sym_block_comment, - [79200] = 7, + [79216] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, + ACTIONS(5714), 1, + anon_sym_LPAREN, + ACTIONS(5716), 1, + anon_sym_LBRACK, + ACTIONS(5718), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(469), 1, - sym_block, - STATE(3596), 1, - sym_label, + STATE(1959), 1, + sym_delim_token_tree, STATE(2596), 2, sym_line_comment, sym_block_comment, - [79223] = 5, - ACTIONS(3), 1, + [79239] = 7, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5728), 1, - aux_sym_token_repetition_pattern_token1, + ACTIONS(3945), 1, + anon_sym_LT2, + ACTIONS(5722), 1, + sym_identifier, + ACTIONS(5724), 1, + sym_super, + STATE(1568), 1, + sym_type_arguments, STATE(2597), 2, sym_line_comment, sym_block_comment, - ACTIONS(5730), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [79242] = 7, + [79262] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1372), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(3945), 1, + anon_sym_LT2, + ACTIONS(5722), 1, + sym_identifier, + ACTIONS(5724), 1, + sym_super, + STATE(1552), 1, + sym_type_arguments, STATE(2598), 2, sym_line_comment, sym_block_comment, - [79265] = 7, + [79285] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5433), 1, - anon_sym_COMMA, - STATE(2972), 1, - aux_sym_parameters_repeat1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5602), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, STATE(2599), 2, sym_line_comment, sym_block_comment, - [79288] = 7, + [79308] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1365), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5602), 1, + sym_identifier, + STATE(3217), 1, + sym_type_arguments, STATE(2600), 2, sym_line_comment, sym_block_comment, - [79311] = 6, + [79331] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5732), 1, - anon_sym_DQUOTE, - STATE(2654), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5726), 1, + anon_sym_RPAREN, + ACTIONS(5728), 1, + anon_sym_COMMA, + STATE(2795), 1, + aux_sym_tuple_type_repeat1, STATE(2601), 2, sym_line_comment, sym_block_comment, - [79332] = 7, + [79354] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(1660), 1, + STATE(3373), 1, sym_block, - STATE(3597), 1, + STATE(3539), 1, sym_label, STATE(2602), 2, sym_line_comment, sym_block_comment, - [79355] = 7, + [79377] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, + ACTIONS(3939), 1, anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(2186), 1, + ACTIONS(4449), 1, + anon_sym_LT2, + STATE(1626), 1, sym_parameters, - STATE(3244), 1, - sym_type_parameters, + STATE(1933), 1, + sym_type_arguments, STATE(2603), 2, sym_line_comment, sym_block_comment, - [79378] = 7, + [79400] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1572), 1, - sym_block, - STATE(3597), 1, - sym_label, STATE(2604), 2, sym_line_comment, sym_block_comment, - [79401] = 7, + ACTIONS(5730), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [79417] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3345), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(2888), 1, + sym_trait_bounds, + ACTIONS(5732), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2605), 2, sym_line_comment, sym_block_comment, - [79424] = 7, + [79438] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1669), 1, - sym_block, - STATE(3597), 1, - sym_label, STATE(2606), 2, sym_line_comment, sym_block_comment, - [79447] = 7, + ACTIONS(5735), 4, + anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SQUOTE, + [79455] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1564), 1, + ACTIONS(1210), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(2105), 1, + STATE(474), 1, sym_block, - STATE(3588), 1, + STATE(3590), 1, sym_label, STATE(2607), 2, sym_line_comment, sym_block_comment, - [79470] = 7, + [79478] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(3545), 1, - sym_label, - STATE(3600), 1, + STATE(3388), 1, sym_block, + STATE(3539), 1, + sym_label, STATE(2608), 2, sym_line_comment, sym_block_comment, - [79493] = 7, + [79501] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1212), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(465), 1, + STATE(392), 1, sym_block, - STATE(3596), 1, + STATE(3510), 1, sym_label, STATE(2609), 2, sym_line_comment, sym_block_comment, - [79516] = 7, + [79524] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5734), 1, - anon_sym_SEMI, - STATE(3361), 1, - sym_where_clause, + ACTIONS(5426), 1, + anon_sym_RPAREN, + ACTIONS(5428), 1, + anon_sym_COMMA, + STATE(2809), 1, + aux_sym_parameters_repeat1, STATE(2610), 2, sym_line_comment, sym_block_comment, - [79539] = 6, + [79547] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5736), 1, - anon_sym_DQUOTE, - STATE(2546), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(5737), 1, + anon_sym_LBRACE, + ACTIONS(5739), 1, + anon_sym_for, + ACTIONS(5741), 1, + anon_sym_loop, + ACTIONS(5743), 1, + anon_sym_while, STATE(2611), 2, sym_line_comment, sym_block_comment, - [79560] = 6, + [79570] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(5726), 2, - sym_identifier, - sym_super, + ACTIONS(1210), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(468), 1, + sym_block, + STATE(3590), 1, + sym_label, STATE(2612), 2, sym_line_comment, sym_block_comment, - [79581] = 7, + [79593] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(2196), 1, - sym_parameters, - STATE(3235), 1, - sym_type_parameters, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4523), 1, + anon_sym_BANG, + ACTIONS(4554), 1, + anon_sym_COLON_COLON, + STATE(1930), 1, + sym_type_arguments, STATE(2613), 2, sym_line_comment, sym_block_comment, - [79604] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79616] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(371), 1, - sym_block, - STATE(3414), 1, - sym_label, + ACTIONS(1464), 1, + anon_sym_RPAREN, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5446), 1, + anon_sym_COMMA, + STATE(2817), 1, + aux_sym_parameters_repeat1, STATE(2614), 2, sym_line_comment, sym_block_comment, - [79627] = 7, + [79639] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(1097), 1, + STATE(1743), 1, sym_block, - STATE(3545), 1, + STATE(3591), 1, sym_label, STATE(2615), 2, sym_line_comment, sym_block_comment, - [79650] = 7, + [79662] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, + ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(1370), 1, + STATE(1745), 1, sym_block, - STATE(3545), 1, + STATE(3591), 1, sym_label, STATE(2616), 2, sym_line_comment, sym_block_comment, - [79673] = 7, + [79685] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1379), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(5745), 1, + anon_sym_DQUOTE, + STATE(2623), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2617), 2, sym_line_comment, sym_block_comment, - [79696] = 7, + [79706] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(2184), 1, - sym_parameters, - STATE(3052), 1, - sym_type_parameters, + ACTIONS(1210), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(462), 1, + sym_block, + STATE(3590), 1, + sym_label, STATE(2618), 2, sym_line_comment, sym_block_comment, - [79719] = 7, + [79729] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5674), 1, - anon_sym_LPAREN, - ACTIONS(5676), 1, - anon_sym_LBRACK, - ACTIONS(5678), 1, + ACTIONS(400), 1, anon_sym_LBRACE, - STATE(1024), 1, - sym_delim_token_tree, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1841), 1, + sym_block, + STATE(3591), 1, + sym_label, STATE(2619), 2, sym_line_comment, sym_block_comment, - [79742] = 7, + [79752] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4919), 1, + ACTIONS(5747), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5751), 1, anon_sym_LBRACE, - STATE(1101), 1, - sym_field_declaration_list, - STATE(3148), 1, - sym_where_clause, + STATE(1025), 1, + sym_delim_token_tree, STATE(2620), 2, sym_line_comment, sym_block_comment, - [79765] = 6, + [79775] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4614), 1, - anon_sym_DOT_DOT, - ACTIONS(5738), 1, - anon_sym_COLON_COLON, - ACTIONS(4616), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1554), 1, + sym_block, + STATE(3591), 1, + sym_label, STATE(2621), 2, sym_line_comment, sym_block_comment, - [79786] = 7, + [79798] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5740), 1, - sym_identifier, - STATE(3106), 1, - sym_type_arguments, + ACTIONS(4989), 1, + anon_sym_PLUS, STATE(2622), 2, sym_line_comment, sym_block_comment, - [79809] = 7, + ACTIONS(5753), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [79817] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(5225), 1, - anon_sym_LBRACE, - STATE(1108), 1, - sym_enum_variant_list, - STATE(3152), 1, - sym_where_clause, + ACTIONS(5755), 1, + anon_sym_DQUOTE, + STATE(2510), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2623), 2, sym_line_comment, sym_block_comment, - [79832] = 6, + [79838] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(5747), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5751), 1, + anon_sym_LBRACE, + STATE(1026), 1, + sym_delim_token_tree, STATE(2624), 2, sym_line_comment, sym_block_comment, - [79853] = 7, + [79861] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3251), 1, anon_sym_LT2, - ACTIONS(5129), 1, + ACTIONS(5103), 1, sym_super, - ACTIONS(5740), 1, + ACTIONS(5629), 1, sym_identifier, - STATE(3154), 1, + STATE(1377), 1, sym_type_arguments, STATE(2625), 2, sym_line_comment, sym_block_comment, - [79876] = 7, + [79884] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5742), 1, - anon_sym_LBRACE, - ACTIONS(5744), 1, - anon_sym_for, - ACTIONS(5746), 1, - anon_sym_loop, - ACTIONS(5748), 1, - anon_sym_while, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5651), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, STATE(2626), 2, sym_line_comment, sym_block_comment, - [79899] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [79907] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(381), 1, - sym_block, - STATE(3414), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5651), 1, + sym_identifier, + STATE(3217), 1, + sym_type_arguments, STATE(2627), 2, sym_line_comment, sym_block_comment, - [79922] = 5, + [79930] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5750), 1, - anon_sym_COLON_COLON, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1769), 1, + sym_block, + STATE(3591), 1, + sym_label, STATE(2628), 2, sym_line_comment, sym_block_comment, - ACTIONS(4728), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [79941] = 7, + [79953] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(400), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(1636), 1, + STATE(1775), 1, sym_block, - STATE(3597), 1, + STATE(3591), 1, sym_label, STATE(2629), 2, sym_line_comment, sym_block_comment, - [79964] = 7, + [79976] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(3467), 1, - anon_sym_COLON_COLON, - ACTIONS(4852), 1, - anon_sym_BANG, - STATE(1068), 1, - sym_type_arguments, + ACTIONS(5757), 1, + anon_sym_DQUOTE, + STATE(2634), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2630), 2, sym_line_comment, sym_block_comment, - [79987] = 7, + [79997] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5463), 1, - anon_sym_RPAREN, - ACTIONS(5465), 1, - anon_sym_COMMA, - STATE(2977), 1, - aux_sym_parameters_repeat1, + ACTIONS(400), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1780), 1, + sym_block, + STATE(3591), 1, + sym_label, STATE(2631), 2, sym_line_comment, sym_block_comment, - [80010] = 7, + [80020] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1113), 1, - sym_declaration_list, - STATE(3160), 1, - sym_where_clause, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(2888), 1, + sym_trait_bounds, + ACTIONS(5759), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2632), 2, sym_line_comment, sym_block_comment, - [80033] = 7, + [80041] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, + ACTIONS(5761), 1, + anon_sym_LPAREN, + ACTIONS(5763), 1, + anon_sym_LBRACK, + ACTIONS(5765), 1, anon_sym_LBRACE, - STATE(591), 1, - sym_declaration_list, - STATE(3236), 1, - sym_where_clause, + STATE(1785), 1, + sym_delim_token_tree, STATE(2633), 2, sym_line_comment, sym_block_comment, - [80056] = 7, + [80064] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1312), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(5767), 1, + anon_sym_DQUOTE, + STATE(2510), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2634), 2, sym_line_comment, sym_block_comment, - [80079] = 5, + [80085] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5752), 1, - anon_sym_COLON_COLON, + ACTIONS(5761), 1, + anon_sym_LPAREN, + ACTIONS(5763), 1, + anon_sym_LBRACK, + ACTIONS(5765), 1, + anon_sym_LBRACE, + STATE(1789), 1, + sym_delim_token_tree, STATE(2635), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80098] = 7, + [80108] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5111), 1, - anon_sym_LPAREN, - ACTIONS(5113), 1, - anon_sym_LBRACK, - ACTIONS(5117), 1, - anon_sym_LBRACE, - STATE(1311), 1, - sym_delim_token_tree, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5769), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, STATE(2636), 2, sym_line_comment, sym_block_comment, - [80121] = 7, + [80131] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5754), 1, - anon_sym_RPAREN, - ACTIONS(5756), 1, - anon_sym_COMMA, - STATE(2812), 1, - aux_sym_tuple_type_repeat1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5769), 1, + sym_identifier, + STATE(3217), 1, + sym_type_arguments, STATE(2637), 2, sym_line_comment, sym_block_comment, - [80144] = 7, + [80154] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5758), 1, - anon_sym_SEMI, - STATE(3434), 1, - sym_where_clause, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3456), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2638), 2, sym_line_comment, sym_block_comment, - [80167] = 7, + [80177] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1124), 1, - sym_declaration_list, - STATE(3175), 1, - sym_where_clause, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5508), 1, + anon_sym_RPAREN, + ACTIONS(5512), 1, + anon_sym_COMMA, + STATE(2839), 1, + aux_sym_slice_pattern_repeat1, STATE(2639), 2, sym_line_comment, sym_block_comment, - [80190] = 7, + [80200] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1058), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5771), 1, + anon_sym_RPAREN, + ACTIONS(5773), 1, + anon_sym_COMMA, + STATE(2810), 1, + aux_sym_tuple_pattern_repeat1, STATE(2640), 2, sym_line_comment, sym_block_comment, - [80213] = 7, + [80223] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5760), 1, - anon_sym_RPAREN, - ACTIONS(5762), 1, - anon_sym_COMMA, - STATE(2833), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(5775), 1, + anon_sym_DQUOTE, + STATE(2642), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2641), 2, sym_line_comment, sym_block_comment, - [80236] = 7, + [80244] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(5777), 1, + anon_sym_DQUOTE, + STATE(2510), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, + STATE(2642), 2, + sym_line_comment, + sym_block_comment, + [80265] = 7, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5779), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, + STATE(2643), 2, + sym_line_comment, + sym_block_comment, + [80288] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(5726), 1, + ACTIONS(5604), 1, sym_super, - ACTIONS(5740), 1, + ACTIONS(5779), 1, sym_identifier, - STATE(3154), 1, + STATE(3217), 1, sym_type_arguments, - STATE(2642), 2, - sym_line_comment, - sym_block_comment, - [80259] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5764), 1, - anon_sym_COLON_COLON, - STATE(2643), 2, + STATE(2644), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80278] = 7, + [80311] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(1785), 1, + STATE(3365), 1, sym_block, - STATE(3597), 1, + STATE(3539), 1, sym_label, - STATE(2644), 2, - sym_line_comment, - sym_block_comment, - [80301] = 5, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(5766), 1, - anon_sym_COLON_COLON, STATE(2645), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80320] = 6, + [80334] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5133), 1, - anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5781), 1, + anon_sym_SEMI, + ACTIONS(5783), 1, + anon_sym_EQ, + ACTIONS(5785), 1, + anon_sym_else, STATE(2646), 2, sym_line_comment, sym_block_comment, - [80341] = 7, + [80357] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5768), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(5281), 1, anon_sym_LBRACE, - ACTIONS(5770), 1, - anon_sym_for, - ACTIONS(5772), 1, - anon_sym_loop, - ACTIONS(5774), 1, - anon_sym_while, + STATE(660), 1, + sym_enum_variant_list, + STATE(3046), 1, + sym_where_clause, STATE(2647), 2, sym_line_comment, sym_block_comment, - [80364] = 6, + [80380] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5776), 1, - anon_sym_DQUOTE, - STATE(2509), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5641), 1, + sym_super, + ACTIONS(5787), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, STATE(2648), 2, sym_line_comment, sym_block_comment, - [80385] = 5, + [80403] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5750), 1, - anon_sym_COLON_COLON, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5641), 1, + sym_super, + ACTIONS(5787), 1, + sym_identifier, + STATE(3217), 1, + sym_type_arguments, STATE(2649), 2, sym_line_comment, sym_block_comment, - ACTIONS(4746), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80404] = 5, + [80426] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5778), 1, - anon_sym_in, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5769), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, STATE(2650), 2, sym_line_comment, sym_block_comment, - ACTIONS(5780), 3, - sym_self, - sym_super, - sym_crate, - [80423] = 7, + [80449] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5782), 1, - anon_sym_SEMI, - ACTIONS(5784), 1, - anon_sym_EQ, - ACTIONS(5786), 1, - anon_sym_else, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5769), 1, + sym_identifier, + STATE(3217), 1, + sym_type_arguments, STATE(2651), 2, sym_line_comment, sym_block_comment, - [80446] = 7, + [80472] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1293), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5789), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, STATE(2652), 2, sym_line_comment, sym_block_comment, - [80469] = 6, + [80495] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5788), 1, - anon_sym_DQUOTE, - STATE(2664), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5789), 1, + sym_identifier, + STATE(3217), 1, + sym_type_arguments, STATE(2653), 2, sym_line_comment, sym_block_comment, - [80490] = 6, + [80518] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5790), 1, - anon_sym_DQUOTE, - STATE(2546), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5791), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, STATE(2654), 2, sym_line_comment, sym_block_comment, - [80511] = 6, + [80541] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(2951), 1, - sym_trait_bounds, - ACTIONS(5792), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5791), 1, + sym_identifier, + STATE(3217), 1, + sym_type_arguments, STATE(2655), 2, sym_line_comment, sym_block_comment, - [80532] = 7, + [80564] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5111), 1, - anon_sym_LPAREN, - ACTIONS(5113), 1, - anon_sym_LBRACK, - ACTIONS(5117), 1, - anon_sym_LBRACE, - STATE(1292), 1, - sym_delim_token_tree, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5793), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, STATE(2656), 2, sym_line_comment, sym_block_comment, - [80555] = 7, + [80587] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(5129), 1, + ACTIONS(5604), 1, sym_super, - ACTIONS(5795), 1, + ACTIONS(5793), 1, sym_identifier, - STATE(1549), 1, + STATE(3217), 1, sym_type_arguments, STATE(2657), 2, sym_line_comment, sym_block_comment, - [80578] = 7, + [80610] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(400), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(1801), 1, - sym_block, - STATE(3597), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5793), 1, + sym_identifier, + STATE(3195), 1, + sym_type_arguments, STATE(2658), 2, sym_line_comment, sym_block_comment, - [80601] = 7, + [80633] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(5726), 1, + ACTIONS(5103), 1, sym_super, - ACTIONS(5740), 1, + ACTIONS(5793), 1, sym_identifier, - STATE(3106), 1, + STATE(3217), 1, sym_type_arguments, STATE(2659), 2, sym_line_comment, sym_block_comment, - [80624] = 5, + [80656] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5752), 1, - anon_sym_COLON_COLON, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(528), 1, + sym_declaration_list, + STATE(3080), 1, + sym_where_clause, STATE(2660), 2, sym_line_comment, sym_block_comment, - ACTIONS(4686), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80643] = 7, - ACTIONS(101), 1, + [80679] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_GT, - ACTIONS(5461), 1, - anon_sym_COMMA, - ACTIONS(5664), 1, - anon_sym_EQ, - STATE(2915), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5795), 1, + aux_sym_token_repetition_pattern_token1, STATE(2661), 2, sym_line_comment, sym_block_comment, - [80666] = 7, + ACTIONS(5797), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [80698] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5797), 1, - anon_sym_LPAREN, - ACTIONS(5799), 1, - anon_sym_LBRACK, - ACTIONS(5801), 1, - anon_sym_LBRACE, - STATE(1638), 1, - sym_delim_token_tree, STATE(2662), 2, sym_line_comment, sym_block_comment, - [80689] = 5, + ACTIONS(4129), 4, + anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_SQUOTE, + [80715] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5211), 1, anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2663), 2, sym_line_comment, sym_block_comment, - ACTIONS(4686), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80708] = 6, + [80736] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5803), 1, - anon_sym_DQUOTE, - STATE(2546), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(4989), 1, + anon_sym_PLUS, STATE(2664), 2, sym_line_comment, sym_block_comment, - [80729] = 5, + ACTIONS(5799), 3, + anon_sym_RPAREN, + anon_sym_PIPE, + anon_sym_COMMA, + [80755] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5766), 1, - anon_sym_COLON_COLON, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_LT, + STATE(2197), 1, + sym_parameters, + STATE(3214), 1, + sym_type_parameters, STATE(2665), 2, sym_line_comment, sym_block_comment, - ACTIONS(4686), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [80748] = 7, + [80778] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5795), 1, - sym_identifier, - STATE(1547), 1, - sym_type_arguments, + ACTIONS(5801), 1, + anon_sym_COLON_COLON, STATE(2666), 2, sym_line_comment, sym_block_comment, - [80771] = 7, + ACTIONS(4734), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80797] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5797), 1, - anon_sym_LPAREN, - ACTIONS(5799), 1, - anon_sym_LBRACK, - ACTIONS(5801), 1, - anon_sym_LBRACE, - STATE(1672), 1, - sym_delim_token_tree, + ACTIONS(5803), 1, + anon_sym_in, STATE(2667), 2, sym_line_comment, sym_block_comment, - [80794] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + ACTIONS(5805), 3, + sym_self, + sym_super, + sym_crate, + [80816] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(377), 1, - sym_block, - STATE(3414), 1, - sym_label, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5807), 1, + anon_sym_SEMI, + ACTIONS(5809), 1, + anon_sym_EQ, + ACTIONS(5811), 1, + anon_sym_else, STATE(2668), 2, sym_line_comment, sym_block_comment, - [80817] = 7, + [80839] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5805), 1, - anon_sym_SEMI, - STATE(3371), 1, - sym_where_clause, + ACTIONS(5813), 1, + anon_sym_LBRACE, + ACTIONS(5815), 1, + anon_sym_for, + ACTIONS(5817), 1, + anon_sym_loop, + ACTIONS(5819), 1, + anon_sym_while, STATE(2669), 2, sym_line_comment, sym_block_comment, - [80840] = 7, + [80862] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3106), 1, - sym_type_arguments, + ACTIONS(5821), 1, + anon_sym_COLON_COLON, STATE(2670), 2, sym_line_comment, sym_block_comment, - [80863] = 7, + ACTIONS(4664), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [80881] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3154), 1, - sym_type_arguments, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5823), 1, + anon_sym_RPAREN, + ACTIONS(5825), 1, + anon_sym_COMMA, + STATE(2893), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2671), 2, sym_line_comment, sym_block_comment, - [80886] = 7, + [80904] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(557), 1, - sym_declaration_list, - STATE(3245), 1, - sym_where_clause, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5827), 1, + anon_sym_RBRACK, + ACTIONS(5829), 1, + anon_sym_COMMA, + STATE(2818), 1, + aux_sym_slice_pattern_repeat1, STATE(2672), 2, sym_line_comment, sym_block_comment, - [80909] = 5, + [80927] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5809), 1, - anon_sym_COLON, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3488), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2673), 2, sym_line_comment, sym_block_comment, - ACTIONS(4848), 3, - anon_sym_RPAREN, - anon_sym_PIPE, - anon_sym_COMMA, - [80928] = 7, + [80950] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4722), 1, - anon_sym_for, - ACTIONS(5584), 1, - anon_sym_COLON_COLON, - STATE(1934), 1, - sym_type_arguments, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5831), 1, + anon_sym_RPAREN, + ACTIONS(5833), 1, + anon_sym_COMMA, + STATE(2752), 1, + aux_sym_slice_pattern_repeat1, STATE(2674), 2, sym_line_comment, sym_block_comment, - [80951] = 4, + [80973] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3539), 1, + sym_label, + STATE(3567), 1, + sym_block, STATE(2675), 2, sym_line_comment, sym_block_comment, - ACTIONS(5811), 4, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACK, - anon_sym_RBRACE, - [80968] = 6, + [80996] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3154), 1, - sym_type_arguments, - ACTIONS(5813), 2, - sym_identifier, - sym_super, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3503), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2676), 2, sym_line_comment, sym_block_comment, - [80989] = 6, + [81019] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - STATE(3106), 1, + ACTIONS(4670), 1, + anon_sym_for, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, + STATE(1931), 1, sym_type_arguments, - ACTIONS(5813), 2, - sym_identifier, - sym_super, STATE(2677), 2, sym_line_comment, sym_block_comment, - [81010] = 7, + [81042] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5815), 1, - anon_sym_RBRACK, - ACTIONS(5817), 1, - anon_sym_COMMA, - STATE(2769), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_LT, + STATE(2228), 1, + sym_parameters, + STATE(3237), 1, + sym_type_parameters, STATE(2678), 2, sym_line_comment, sym_block_comment, - [81033] = 7, + [81065] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, + ACTIONS(5452), 1, anon_sym_PIPE, - ACTIONS(5819), 1, - anon_sym_RPAREN, - ACTIONS(5821), 1, - anon_sym_COMMA, - STATE(2771), 1, - aux_sym_tuple_pattern_repeat1, STATE(2679), 2, sym_line_comment, sym_block_comment, - [81056] = 5, + ACTIONS(5835), 3, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_COMMA, + [81084] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5823), 1, + ACTIONS(5837), 1, anon_sym_COMMA, - ACTIONS(4099), 2, + ACTIONS(5835), 2, anon_sym_RPAREN, anon_sym_RBRACK, STATE(2680), 3, sym_line_comment, sym_block_comment, - aux_sym_arguments_repeat1, - [81075] = 7, + aux_sym_slice_pattern_repeat1, + [81103] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5826), 1, - anon_sym_RBRACK, - ACTIONS(5828), 1, - anon_sym_COMMA, - STATE(2773), 1, - aux_sym_slice_pattern_repeat1, STATE(2681), 2, sym_line_comment, sym_block_comment, - [81098] = 7, + ACTIONS(3215), 4, + anon_sym_COLON, + anon_sym_PLUS, + anon_sym_GT, + anon_sym_COMMA, + [81120] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5515), 1, - anon_sym_RPAREN, - ACTIONS(5517), 1, - anon_sym_COMMA, - STATE(2899), 1, - aux_sym_parameters_repeat1, + ACTIONS(5840), 1, + anon_sym_COLON_COLON, STATE(2682), 2, sym_line_comment, sym_block_comment, - [81121] = 7, + ACTIONS(4664), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81139] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5830), 1, - anon_sym_RPAREN, - ACTIONS(5832), 1, - anon_sym_COMMA, - STATE(2986), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(729), 1, + sym_declaration_list, + STATE(3282), 1, + sym_where_clause, STATE(2683), 2, sym_line_comment, sym_block_comment, - [81144] = 7, + [81162] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5834), 1, - anon_sym_RPAREN, - ACTIONS(5836), 1, - anon_sym_COMMA, - STATE(2772), 1, - aux_sym_tuple_pattern_repeat1, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1269), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2684), 2, sym_line_comment, sym_block_comment, - [81167] = 7, + [81185] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5628), 1, - sym_identifier, - ACTIONS(5726), 1, - sym_super, - STATE(3106), 1, - sym_type_arguments, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5842), 1, + anon_sym_SEMI, + STATE(3542), 1, + sym_where_clause, STATE(2685), 2, sym_line_comment, sym_block_comment, - [81190] = 6, + [81208] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5838), 1, - anon_sym_DQUOTE, - STATE(2695), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3362), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2686), 2, sym_line_comment, sym_block_comment, - [81211] = 5, + [81231] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5270), 1, - anon_sym_PLUS, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1218), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2687), 2, sym_line_comment, sym_block_comment, - ACTIONS(5840), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [81230] = 6, + [81254] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3106), 1, - sym_type_arguments, - ACTIONS(5129), 2, - sym_identifier, - sym_super, + ACTIONS(5844), 1, + anon_sym_DQUOTE, + STATE(2496), 1, + aux_sym_string_literal_repeat1, + ACTIONS(5586), 2, + sym_string_content, + sym_escape_sequence, STATE(2688), 2, sym_line_comment, sym_block_comment, - [81251] = 7, + [81275] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5842), 1, - anon_sym_RPAREN, - ACTIONS(5844), 1, - anon_sym_COMMA, - STATE(2892), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4443), 1, + anon_sym_LPAREN, + ACTIONS(4872), 1, + anon_sym_LT, + STATE(2204), 1, + sym_parameters, + STATE(3253), 1, + sym_type_parameters, STATE(2689), 2, sym_line_comment, sym_block_comment, - [81274] = 7, + [81298] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5628), 1, - sym_identifier, - ACTIONS(5726), 1, - sym_super, - STATE(3154), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1091), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2690), 2, sym_line_comment, sym_block_comment, - [81297] = 6, - ACTIONS(101), 1, + [81321] = 5, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(3154), 1, - sym_type_arguments, - ACTIONS(5129), 2, - sym_identifier, - sym_super, + ACTIONS(5846), 1, + aux_sym_token_repetition_pattern_token1, STATE(2691), 2, sym_line_comment, sym_block_comment, - [81318] = 7, + ACTIONS(5848), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [81340] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5846), 1, - anon_sym_RPAREN, - ACTIONS(5848), 1, - anon_sym_COMMA, - STATE(2786), 1, - aux_sym_tuple_type_repeat1, STATE(2692), 2, sym_line_comment, sym_block_comment, - [81341] = 7, + ACTIONS(777), 4, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACK, + anon_sym_RBRACE, + [81357] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5850), 1, - anon_sym_RPAREN, - ACTIONS(5852), 1, + ACTIONS(5347), 1, + anon_sym_GT, + ACTIONS(5349), 1, anon_sym_COMMA, - STATE(2888), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(5617), 1, + anon_sym_EQ, + STATE(2786), 1, + aux_sym_type_parameters_repeat1, STATE(2693), 2, sym_line_comment, sym_block_comment, - [81364] = 6, + [81380] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(3241), 1, - sym_trait_bounds, - ACTIONS(5519), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3463), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2694), 2, sym_line_comment, sym_block_comment, - [81385] = 6, + [81403] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5854), 1, - anon_sym_DQUOTE, - STATE(2546), 1, - aux_sym_string_literal_repeat1, - ACTIONS(5590), 2, - sym_string_content, - sym_escape_sequence, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3466), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2695), 2, sym_line_comment, sym_block_comment, - [81406] = 7, + [81426] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5856), 1, - sym_identifier, - STATE(3106), 1, - sym_type_arguments, + ACTIONS(5850), 1, + anon_sym_COLON_COLON, STATE(2696), 2, sym_line_comment, sym_block_comment, - [81429] = 7, + ACTIONS(4664), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81445] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5856), 1, - sym_identifier, - STATE(3154), 1, - sym_type_arguments, + ACTIONS(1564), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(2100), 1, + sym_block, + STATE(3582), 1, + sym_label, STATE(2697), 2, sym_line_comment, sym_block_comment, - [81452] = 5, + [81468] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4453), 2, - anon_sym_COLON, - anon_sym_PIPE, - ACTIONS(5858), 2, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5852), 1, anon_sym_RPAREN, + ACTIONS(5854), 1, anon_sym_COMMA, + STATE(2906), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2698), 2, sym_line_comment, sym_block_comment, - [81471] = 7, + [81491] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5813), 1, - sym_super, - ACTIONS(5860), 1, - sym_identifier, - STATE(3106), 1, - sym_type_arguments, + ACTIONS(1210), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(465), 1, + sym_block, + STATE(3590), 1, + sym_label, STATE(2699), 2, sym_line_comment, sym_block_comment, - [81494] = 7, + [81514] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5584), 1, - anon_sym_COLON_COLON, - ACTIONS(5862), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3539), 1, + sym_label, + STATE(3570), 1, + sym_block, STATE(2700), 2, sym_line_comment, sym_block_comment, - [81517] = 7, + [81537] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5584), 1, - anon_sym_COLON_COLON, - ACTIONS(5864), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3539), 1, + sym_label, + STATE(3571), 1, + sym_block, STATE(2701), 2, sym_line_comment, sym_block_comment, - [81540] = 7, + [81560] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5813), 1, - sym_super, - ACTIONS(5860), 1, - sym_identifier, - STATE(3154), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3471), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2702), 2, sym_line_comment, sym_block_comment, - [81563] = 7, + [81583] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, + ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(5868), 1, - anon_sym_for, - ACTIONS(5870), 1, - anon_sym_loop, - ACTIONS(5872), 1, - anon_sym_while, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1206), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2703), 2, sym_line_comment, sym_block_comment, - [81586] = 7, + [81606] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5874), 1, - sym_identifier, - STATE(1414), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3539), 1, + sym_label, + STATE(3548), 1, + sym_block, STATE(2704), 2, sym_line_comment, sym_block_comment, - [81609] = 7, + [81629] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3106), 1, - sym_type_arguments, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5528), 1, + anon_sym_RPAREN, + ACTIONS(5530), 1, + anon_sym_COMMA, + STATE(2822), 1, + aux_sym_parameters_repeat1, STATE(2705), 2, sym_line_comment, sym_block_comment, - [81632] = 7, + [81652] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - ACTIONS(4449), 1, - anon_sym_LT2, - STATE(1053), 1, - sym_parameters, - STATE(1935), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3506), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2706), 2, sym_line_comment, sym_block_comment, - [81655] = 7, + [81675] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, - STATE(3154), 1, - sym_type_arguments, + ACTIONS(4611), 1, + anon_sym_DOT_DOT, + ACTIONS(5856), 1, + anon_sym_COLON_COLON, + ACTIONS(4613), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2707), 2, sym_line_comment, sym_block_comment, - [81678] = 7, + [81696] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5876), 1, - sym_identifier, - STATE(3106), 1, - sym_type_arguments, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5207), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2708), 2, sym_line_comment, sym_block_comment, - [81701] = 7, + [81717] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5876), 1, - sym_identifier, - STATE(3154), 1, - sym_type_arguments, + ACTIONS(5858), 1, + anon_sym_LBRACE, + ACTIONS(5860), 1, + anon_sym_for, + ACTIONS(5862), 1, + anon_sym_loop, + ACTIONS(5864), 1, + anon_sym_while, STATE(2709), 2, sym_line_comment, sym_block_comment, - [81724] = 7, + [81740] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, + ACTIONS(3251), 1, anon_sym_LT2, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5878), 1, - sym_identifier, - STATE(3106), 1, + ACTIONS(3541), 1, + anon_sym_COLON_COLON, + ACTIONS(4848), 1, + anon_sym_BANG, + STATE(1048), 1, sym_type_arguments, STATE(2710), 2, sym_line_comment, sym_block_comment, - [81747] = 7, + [81763] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5878), 1, + ACTIONS(4243), 1, + anon_sym_LBRACE, + STATE(2889), 1, + sym_use_list, + ACTIONS(5866), 2, sym_identifier, - STATE(3154), 1, - sym_type_arguments, + sym_super, STATE(2711), 2, sym_line_comment, sym_block_comment, - [81770] = 7, + [81784] = 7, + ACTIONS(19), 1, + anon_sym_LBRACE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(1183), 1, + STATE(381), 1, sym_block, - STATE(3545), 1, + STATE(3510), 1, sym_label, STATE(2712), 2, sym_line_comment, sym_block_comment, - [81793] = 7, + [81807] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5541), 1, - anon_sym_RPAREN, - ACTIONS(5545), 1, - anon_sym_COMMA, - STATE(2993), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4463), 1, + anon_sym_DOT_DOT, + ACTIONS(5101), 1, + anon_sym_COLON_COLON, + ACTIONS(4465), 2, + anon_sym_DOT_DOT_DOT, + anon_sym_DOT_DOT_EQ, STATE(2713), 2, sym_line_comment, sym_block_comment, - [81816] = 7, + [81828] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(5225), 1, + ACTIONS(5868), 1, anon_sym_LBRACE, - STATE(1232), 1, - sym_enum_variant_list, - STATE(3157), 1, - sym_where_clause, + ACTIONS(5870), 1, + anon_sym_for, + ACTIONS(5872), 1, + anon_sym_loop, + ACTIONS(5874), 1, + anon_sym_while, STATE(2714), 2, sym_line_comment, sym_block_comment, - [81839] = 7, + [81851] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5880), 1, - sym_identifier, - STATE(3106), 1, - sym_type_arguments, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1381), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2715), 2, sym_line_comment, sym_block_comment, - [81862] = 4, + [81874] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5801), 1, + anon_sym_COLON_COLON, STATE(2716), 2, sym_line_comment, sym_block_comment, - ACTIONS(5561), 4, - anon_sym_SEMI, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SQUOTE, - [81879] = 7, + ACTIONS(4674), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81893] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5880), 1, - sym_identifier, - STATE(3154), 1, - sym_type_arguments, + ACTIONS(5175), 1, + anon_sym_LPAREN, + ACTIONS(5177), 1, + anon_sym_LBRACK, + ACTIONS(5181), 1, + anon_sym_LBRACE, + STATE(1387), 1, + sym_delim_token_tree, STATE(2717), 2, sym_line_comment, sym_block_comment, - [81902] = 7, + [81916] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5487), 1, - anon_sym_GT, - ACTIONS(5489), 1, - anon_sym_COMMA, - ACTIONS(5664), 1, - anon_sym_EQ, - STATE(2816), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(5821), 1, + anon_sym_COLON_COLON, STATE(2718), 2, sym_line_comment, sym_block_comment, - [81925] = 7, + ACTIONS(4690), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [81935] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5880), 1, - sym_identifier, - STATE(3106), 1, - sym_type_arguments, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5876), 1, + anon_sym_SEMI, + STATE(3441), 1, + sym_where_clause, STATE(2719), 2, sym_line_comment, sym_block_comment, - [81948] = 7, + [81958] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5880), 1, - sym_identifier, - STATE(3154), 1, + ACTIONS(4744), 1, + anon_sym_for, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, + STATE(1931), 1, sym_type_arguments, STATE(2720), 2, sym_line_comment, sym_block_comment, - [81971] = 6, + [81981] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(2951), 1, - sym_trait_bounds, - ACTIONS(5882), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(338), 1, + anon_sym_LBRACE, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(3384), 1, + sym_block, + STATE(3539), 1, + sym_label, STATE(2721), 2, sym_line_comment, sym_block_comment, - [81992] = 7, + [82004] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(338), 1, anon_sym_LBRACE, - ACTIONS(3376), 1, + ACTIONS(3344), 1, anon_sym_SQUOTE, - STATE(3401), 1, + STATE(1050), 1, sym_block, - STATE(3545), 1, + STATE(3539), 1, sym_label, STATE(2722), 2, sym_line_comment, sym_block_comment, - [82015] = 7, + [82027] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5584), 1, + ACTIONS(5840), 1, anon_sym_COLON_COLON, - ACTIONS(5884), 1, - anon_sym_for, - STATE(1934), 1, - sym_type_arguments, STATE(2723), 2, sym_line_comment, sym_block_comment, - [82038] = 7, + ACTIONS(4690), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82046] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1207), 1, - sym_declaration_list, - STATE(3217), 1, - sym_where_clause, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, + ACTIONS(5878), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2724), 2, sym_line_comment, sym_block_comment, - [82061] = 7, + [82069] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(338), 1, - anon_sym_LBRACE, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(3402), 1, - sym_block, - STATE(3545), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, + ACTIONS(5880), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2725), 2, sym_line_comment, sym_block_comment, - [82084] = 6, + [82092] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4463), 1, - anon_sym_DOT_DOT, - ACTIONS(5155), 1, + ACTIONS(5850), 1, anon_sym_COLON_COLON, - ACTIONS(4465), 2, - anon_sym_DOT_DOT_DOT, - anon_sym_DOT_DOT_EQ, STATE(2726), 2, sym_line_comment, sym_block_comment, - [82105] = 7, + ACTIONS(4690), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82111] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(4919), 1, + ACTIONS(5623), 1, + anon_sym_LPAREN, + ACTIONS(5625), 1, + anon_sym_LBRACK, + ACTIONS(5627), 1, anon_sym_LBRACE, - STATE(1201), 1, - sym_field_declaration_list, - STATE(3250), 1, - sym_where_clause, + STATE(397), 1, + sym_delim_token_tree, STATE(2727), 2, sym_line_comment, sym_block_comment, - [82128] = 7, + [82134] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, + ACTIONS(4449), 1, anon_sym_LT2, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5874), 1, - sym_identifier, - STATE(1437), 1, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, + ACTIONS(5882), 1, + anon_sym_for, + STATE(1931), 1, sym_type_arguments, STATE(2728), 2, sym_line_comment, sym_block_comment, - [82151] = 7, - ACTIONS(19), 1, - anon_sym_LBRACE, + [82157] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3376), 1, - anon_sym_SQUOTE, - STATE(385), 1, - sym_block, - STATE(3414), 1, - sym_label, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5598), 1, + anon_sym_COLON_COLON, + ACTIONS(5884), 1, + anon_sym_for, + STATE(1931), 1, + sym_type_arguments, STATE(2729), 2, sym_line_comment, sym_block_comment, - [82174] = 7, + [82180] = 7, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5592), 1, - anon_sym_LPAREN, - ACTIONS(5594), 1, - anon_sym_LBRACK, - ACTIONS(5596), 1, + ACTIONS(400), 1, anon_sym_LBRACE, - STATE(374), 1, - sym_delim_token_tree, + ACTIONS(3344), 1, + anon_sym_SQUOTE, + STATE(1752), 1, + sym_block, + STATE(3591), 1, + sym_label, STATE(2730), 2, sym_line_comment, sym_block_comment, - [82197] = 6, + [82203] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(5886), 1, - anon_sym_SEMI, - STATE(1115), 1, - sym_declaration_list, STATE(2731), 2, sym_line_comment, sym_block_comment, - [82217] = 6, + ACTIONS(5886), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82219] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_RBRACE, + ACTIONS(4915), 1, + anon_sym_LBRACE, ACTIONS(5888), 1, - anon_sym_COMMA, - STATE(2849), 1, - aux_sym_field_declaration_list_repeat1, + anon_sym_SEMI, + STATE(1144), 1, + sym_declaration_list, STATE(2732), 2, sym_line_comment, sym_block_comment, - [82237] = 4, + [82239] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(5890), 1, + anon_sym_SEMI, + STATE(1146), 1, + sym_declaration_list, STATE(2733), 2, sym_line_comment, sym_block_comment, - ACTIONS(4818), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82253] = 5, + [82259] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5890), 1, - sym_identifier, - ACTIONS(5892), 2, - anon_sym_default, - anon_sym_union, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5892), 1, + anon_sym_SEMI, + ACTIONS(5894), 1, + anon_sym_RBRACK, STATE(2734), 2, sym_line_comment, sym_block_comment, - [82271] = 6, + [82279] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - sym_identifier, + ACTIONS(4878), 1, + anon_sym_LBRACE, ACTIONS(5896), 1, - anon_sym_ref, - ACTIONS(5898), 1, - sym_mutable_specifier, + anon_sym_SEMI, + STATE(715), 1, + sym_declaration_list, STATE(2735), 2, sym_line_comment, sym_block_comment, - [82291] = 4, + [82299] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(5898), 1, + anon_sym_SEMI, + STATE(1152), 1, + sym_declaration_list, STATE(2736), 2, sym_line_comment, sym_block_comment, - ACTIONS(4764), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82307] = 4, + [82319] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(5900), 1, + anon_sym_SEMI, + STATE(1154), 1, + sym_declaration_list, STATE(2737), 2, sym_line_comment, sym_block_comment, - ACTIONS(4766), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82323] = 6, + [82339] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5900), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, + ACTIONS(5902), 1, + anon_sym_RBRACE, + ACTIONS(5904), 1, + anon_sym_COMMA, + STATE(2866), 1, + aux_sym_struct_pattern_repeat1, STATE(2738), 2, sym_line_comment, sym_block_comment, - [82343] = 4, + [82359] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5906), 1, + anon_sym_SEMI, + ACTIONS(5908), 1, + anon_sym_EQ, STATE(2739), 2, sym_line_comment, sym_block_comment, - ACTIONS(4804), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82359] = 4, + [82379] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -176036,250 +176068,255 @@ static const uint16_t ts_small_parse_table[] = { STATE(2740), 2, sym_line_comment, sym_block_comment, - ACTIONS(4832), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82375] = 6, + ACTIONS(5910), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [82395] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_RBRACE, - ACTIONS(5904), 1, - anon_sym_COMMA, - STATE(2853), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(5912), 1, + anon_sym_LPAREN, + ACTIONS(5914), 1, + anon_sym_LBRACK, + ACTIONS(5916), 1, + anon_sym_LBRACE, STATE(2741), 2, sym_line_comment, sym_block_comment, - [82395] = 4, + [82415] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3169), 1, + anon_sym_RPAREN, + ACTIONS(5918), 1, + anon_sym_COMMA, + STATE(2880), 1, + aux_sym_tuple_type_repeat1, STATE(2742), 2, sym_line_comment, sym_block_comment, - ACTIONS(4820), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82411] = 6, + [82435] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(5906), 1, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(5920), 1, anon_sym_SEMI, - STATE(3400), 1, - sym_where_clause, + STATE(1170), 1, + sym_declaration_list, STATE(2743), 2, sym_line_comment, sym_block_comment, - [82431] = 6, + [82455] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(5908), 1, + ACTIONS(5922), 1, anon_sym_SEMI, - STATE(1189), 1, + STATE(1172), 1, sym_declaration_list, STATE(2744), 2, sym_line_comment, sym_block_comment, - [82451] = 6, + [82475] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5910), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(5924), 1, + anon_sym_SEMI, + STATE(556), 1, + sym_declaration_list, STATE(2745), 2, sym_line_comment, sym_block_comment, - [82471] = 6, + [82495] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(5912), 1, - anon_sym_SEMI, - STATE(1218), 1, - sym_declaration_list, STATE(2746), 2, sym_line_comment, sym_block_comment, - [82491] = 4, + ACTIONS(5926), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [82511] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1592), 1, + anon_sym_GT, + ACTIONS(5928), 1, + anon_sym_COMMA, + STATE(2749), 1, + aux_sym_type_arguments_repeat1, STATE(2747), 2, sym_line_comment, sym_block_comment, - ACTIONS(4806), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82507] = 6, + [82531] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5914), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, + ACTIONS(5932), 1, + anon_sym_COLON, + ACTIONS(5930), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2748), 2, sym_line_comment, sym_block_comment, - [82527] = 4, + [82549] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2749), 2, + ACTIONS(5373), 1, + anon_sym_GT, + ACTIONS(5934), 1, + anon_sym_COMMA, + STATE(2749), 3, sym_line_comment, sym_block_comment, - ACTIONS(4796), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82543] = 6, + aux_sym_type_arguments_repeat1, + [82567] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5463), 1, + ACTIONS(4535), 1, + anon_sym_COLON_COLON, + ACTIONS(5937), 2, anon_sym_RPAREN, - ACTIONS(5465), 1, anon_sym_COMMA, - STATE(2977), 1, - aux_sym_parameters_repeat1, STATE(2750), 2, sym_line_comment, sym_block_comment, - [82563] = 6, + [82585] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5487), 1, - anon_sym_GT, - ACTIONS(5489), 1, + ACTIONS(5438), 1, + anon_sym_RPAREN, + ACTIONS(5440), 1, anon_sym_COMMA, - STATE(2816), 1, - aux_sym_type_parameters_repeat1, + STATE(2872), 1, + aux_sym_parameters_repeat1, STATE(2751), 2, sym_line_comment, sym_block_comment, - [82583] = 6, + [82605] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(5916), 1, - anon_sym_EQ, - STATE(3578), 1, - sym_type_parameters, + ACTIONS(3039), 1, + anon_sym_RPAREN, + ACTIONS(5939), 1, + anon_sym_COMMA, + STATE(2680), 1, + aux_sym_slice_pattern_repeat1, STATE(2752), 2, sym_line_comment, sym_block_comment, - [82603] = 4, + [82625] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(5941), 1, + anon_sym_COLON_COLON, + STATE(1930), 1, + sym_type_arguments, STATE(2753), 2, sym_line_comment, sym_block_comment, - ACTIONS(4792), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82619] = 4, + [82645] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4535), 1, + anon_sym_COLON_COLON, + ACTIONS(5309), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2754), 2, sym_line_comment, sym_block_comment, - ACTIONS(4788), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82635] = 6, + [82663] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4941), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(5943), 1, + anon_sym_SEMI, + STATE(695), 1, + sym_declaration_list, STATE(2755), 2, sym_line_comment, sym_block_comment, - [82655] = 5, + [82683] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5920), 1, - anon_sym_COLON, - ACTIONS(5918), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2756), 2, sym_line_comment, sym_block_comment, - [82673] = 6, + ACTIONS(4806), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [82699] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5922), 1, - anon_sym_RBRACE, - ACTIONS(5924), 1, - anon_sym_COMMA, - STATE(2987), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(5945), 1, + anon_sym_move, + STATE(217), 1, + sym_closure_parameters, STATE(2757), 2, sym_line_comment, sym_block_comment, - [82693] = 4, + [82719] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5947), 1, + anon_sym_SEMI, + ACTIONS(5949), 1, + anon_sym_EQ, STATE(2758), 2, sym_line_comment, sym_block_comment, - ACTIONS(4822), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82709] = 4, + [82739] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -176287,23 +176324,24 @@ static const uint16_t ts_small_parse_table[] = { STATE(2759), 2, sym_line_comment, sym_block_comment, - ACTIONS(4808), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82725] = 4, + ACTIONS(5951), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [82755] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5703), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2760), 2, sym_line_comment, sym_block_comment, - ACTIONS(4798), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82741] = 4, + [82773] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -176311,60 +176349,65 @@ static const uint16_t ts_small_parse_table[] = { STATE(2761), 2, sym_line_comment, sym_block_comment, - ACTIONS(4686), 3, + ACTIONS(4808), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82757] = 4, + [82789] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5953), 1, + anon_sym_RBRACE, + ACTIONS(5955), 1, + anon_sym_COMMA, + STATE(2884), 1, + aux_sym_enum_variant_list_repeat2, STATE(2762), 2, sym_line_comment, sym_block_comment, - ACTIONS(4784), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82773] = 4, + [82809] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5610), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2763), 2, sym_line_comment, sym_block_comment, - ACTIONS(4778), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82789] = 5, + [82827] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5926), 1, - sym_identifier, - ACTIONS(5928), 2, - anon_sym_default, - anon_sym_union, + ACTIONS(5139), 1, + anon_sym_RBRACE, + ACTIONS(5957), 1, + anon_sym_COMMA, + STATE(2844), 1, + aux_sym_struct_pattern_repeat1, STATE(2764), 2, sym_line_comment, sym_block_comment, - [82807] = 4, + [82847] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(5961), 1, + anon_sym_COLON, + ACTIONS(5959), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2765), 2, sym_line_comment, sym_block_comment, - ACTIONS(4782), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82823] = 4, + [82865] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -176372,171 +176415,175 @@ static const uint16_t ts_small_parse_table[] = { STATE(2766), 2, sym_line_comment, sym_block_comment, - ACTIONS(4790), 3, + ACTIONS(4766), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [82839] = 6, + [82881] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(5930), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(5963), 1, + anon_sym_SEMI, + STATE(738), 1, + sym_declaration_list, STATE(2767), 2, sym_line_comment, sym_block_comment, - [82859] = 6, + [82901] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(983), 1, - anon_sym_RBRACK, - ACTIONS(4075), 1, + ACTIONS(5967), 1, + anon_sym_COLON, + ACTIONS(5965), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_arguments_repeat1, STATE(2768), 2, sym_line_comment, sym_block_comment, - [82879] = 6, + [82919] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3017), 1, - anon_sym_RBRACK, - ACTIONS(5932), 1, + ACTIONS(5971), 1, + anon_sym_EQ, + ACTIONS(5969), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2539), 1, - aux_sym_slice_pattern_repeat1, STATE(2769), 2, sym_line_comment, sym_block_comment, - [82899] = 6, + [82937] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3315), 1, - anon_sym_LBRACE, - ACTIONS(5934), 1, - anon_sym_COLON_COLON, - STATE(1469), 1, - sym_field_initializer_list, + ACTIONS(5973), 1, + anon_sym_RBRACE, + ACTIONS(5975), 1, + anon_sym_COMMA, + STATE(2936), 1, + aux_sym_field_initializer_list_repeat1, STATE(2770), 2, sym_line_comment, sym_block_comment, - [82919] = 6, + [82957] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2949), 1, - anon_sym_RPAREN, - ACTIONS(5936), 1, + ACTIONS(4935), 1, + anon_sym_RBRACE, + ACTIONS(5977), 1, anon_sym_COMMA, - STATE(2996), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2804), 1, + aux_sym_enum_variant_list_repeat2, STATE(2771), 2, sym_line_comment, sym_block_comment, - [82939] = 6, + [82977] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2945), 1, - anon_sym_RPAREN, - ACTIONS(5938), 1, + ACTIONS(4652), 1, + anon_sym_GT, + ACTIONS(5979), 1, anon_sym_COMMA, - STATE(2996), 1, - aux_sym_tuple_pattern_repeat1, + STATE(2860), 1, + aux_sym_type_parameters_repeat1, STATE(2772), 2, sym_line_comment, sym_block_comment, - [82959] = 6, + [82997] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3025), 1, - anon_sym_RBRACK, - ACTIONS(5940), 1, + ACTIONS(4654), 1, + anon_sym_GT, + ACTIONS(5484), 1, anon_sym_COMMA, - STATE(2539), 1, - aux_sym_slice_pattern_repeat1, + STATE(2860), 1, + aux_sym_type_parameters_repeat1, STATE(2773), 2, sym_line_comment, sym_block_comment, - [82979] = 4, + [83017] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1003), 1, + anon_sym_RBRACK, + ACTIONS(4009), 1, + anon_sym_COMMA, + STATE(2589), 1, + aux_sym_arguments_repeat1, STATE(2774), 2, sym_line_comment, sym_block_comment, - ACTIONS(4734), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [82995] = 4, + [83037] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4654), 1, + anon_sym_GT, + ACTIONS(5484), 1, + anon_sym_COMMA, + STATE(2891), 1, + aux_sym_type_parameters_repeat1, STATE(2775), 2, sym_line_comment, sym_block_comment, - ACTIONS(4794), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83011] = 5, + [83057] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5525), 1, - anon_sym_COLON, - ACTIONS(5942), 2, - anon_sym_PIPE, - anon_sym_COMMA, STATE(2776), 2, sym_line_comment, sym_block_comment, - [83029] = 4, + ACTIONS(5981), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [83073] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1035), 1, + anon_sym_RBRACK, + ACTIONS(4061), 1, + anon_sym_COMMA, + STATE(2589), 1, + aux_sym_arguments_repeat1, STATE(2777), 2, sym_line_comment, sym_block_comment, - ACTIONS(4802), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83045] = 5, + [83093] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 1, - anon_sym_PIPE, - ACTIONS(5944), 1, + ACTIONS(5460), 1, + anon_sym_GT, + ACTIONS(5462), 1, anon_sym_COMMA, - STATE(2778), 3, + STATE(2773), 1, + aux_sym_type_parameters_repeat1, + STATE(2778), 2, sym_line_comment, sym_block_comment, - aux_sym_closure_parameters_repeat1, - [83063] = 4, + [83113] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -176544,77 +176591,81 @@ static const uint16_t ts_small_parse_table[] = { STATE(2779), 2, sym_line_comment, sym_block_comment, - ACTIONS(4848), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83079] = 6, + ACTIONS(5983), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [83129] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5947), 1, - anon_sym_RBRACE, - ACTIONS(5949), 1, - anon_sym_COMMA, - STATE(2890), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5985), 1, + anon_sym_SEMI, + ACTIONS(5987), 1, + anon_sym_RBRACK, STATE(2780), 2, sym_line_comment, sym_block_comment, - [83099] = 4, + [83149] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(5989), 1, + anon_sym_SEMI, + STATE(1330), 1, + sym_declaration_list, STATE(2781), 2, sym_line_comment, sym_block_comment, - ACTIONS(5951), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83115] = 6, + [83169] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5953), 1, - anon_sym_SEMI, - ACTIONS(5955), 1, - anon_sym_RBRACK, + ACTIONS(5991), 1, + sym_identifier, + ACTIONS(5993), 1, + anon_sym_ref, + ACTIONS(5995), 1, + sym_mutable_specifier, STATE(2782), 2, sym_line_comment, sym_block_comment, - [83135] = 4, + [83189] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4935), 1, + anon_sym_RBRACE, + ACTIONS(5977), 1, + anon_sym_COMMA, + STATE(2832), 1, + aux_sym_enum_variant_list_repeat2, STATE(2783), 2, sym_line_comment, sym_block_comment, - ACTIONS(4812), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83151] = 6, + [83209] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5957), 1, - anon_sym_RBRACE, - ACTIONS(5959), 1, - anon_sym_COMMA, - STATE(2894), 1, - aux_sym_struct_pattern_repeat1, + ACTIONS(3251), 1, + anon_sym_LT2, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, + STATE(1048), 1, + sym_type_arguments, STATE(2784), 2, sym_line_comment, sym_block_comment, - [83171] = 4, + [83229] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -176622,838 +176673,849 @@ static const uint16_t ts_small_parse_table[] = { STATE(2785), 2, sym_line_comment, sym_block_comment, - ACTIONS(4814), 3, + ACTIONS(4796), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83187] = 6, + [83245] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3141), 1, - anon_sym_RPAREN, - ACTIONS(5961), 1, + ACTIONS(4644), 1, + anon_sym_GT, + ACTIONS(5371), 1, anon_sym_COMMA, - STATE(2981), 1, - aux_sym_tuple_type_repeat1, + STATE(2860), 1, + aux_sym_type_parameters_repeat1, STATE(2786), 2, sym_line_comment, sym_block_comment, - [83207] = 6, + [83265] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5963), 1, - anon_sym_LPAREN, - ACTIONS(5965), 1, - anon_sym_LBRACK, - ACTIONS(5967), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, + ACTIONS(5997), 1, + anon_sym_SEMI, + STATE(1246), 1, + sym_declaration_list, STATE(2787), 2, sym_line_comment, sym_block_comment, - [83227] = 6, + [83285] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(973), 1, + ACTIONS(983), 1, anon_sym_RBRACK, - ACTIONS(4097), 1, + ACTIONS(4071), 1, anon_sym_COMMA, - STATE(2680), 1, + STATE(2589), 1, aux_sym_arguments_repeat1, STATE(2788), 2, sym_line_comment, sym_block_comment, - [83247] = 4, + [83305] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(5999), 1, + anon_sym_SEMI, + ACTIONS(6001), 1, + anon_sym_EQ, STATE(2789), 2, sym_line_comment, sym_block_comment, - ACTIONS(4786), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83263] = 6, + [83325] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5969), 1, - anon_sym_LPAREN, - ACTIONS(5971), 1, - anon_sym_LBRACK, - ACTIONS(5973), 1, - anon_sym_LBRACE, + ACTIONS(1029), 1, + anon_sym_RPAREN, + ACTIONS(6003), 1, + anon_sym_COMMA, + STATE(2589), 1, + aux_sym_arguments_repeat1, STATE(2790), 2, sym_line_comment, sym_block_comment, - [83283] = 6, + [83345] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5515), 1, - anon_sym_RPAREN, - ACTIONS(5517), 1, + ACTIONS(6005), 1, + anon_sym_RBRACE, + ACTIONS(6007), 1, anon_sym_COMMA, - STATE(2899), 1, - aux_sym_parameters_repeat1, + STATE(2914), 1, + aux_sym_field_declaration_list_repeat1, STATE(2791), 2, sym_line_comment, sym_block_comment, - [83303] = 4, + [83365] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(6009), 1, + anon_sym_EQ, + STATE(3472), 1, + sym_type_parameters, STATE(2792), 2, sym_line_comment, sym_block_comment, - ACTIONS(4780), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83319] = 4, + [83385] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6011), 1, + anon_sym_SEMI, + STATE(3377), 1, + sym_where_clause, STATE(2793), 2, sym_line_comment, sym_block_comment, - ACTIONS(4800), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83335] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [83405] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5975), 1, - anon_sym_move, - STATE(220), 1, - sym_closure_parameters, STATE(2794), 2, sym_line_comment, sym_block_comment, - [83355] = 4, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - STATE(2795), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(4834), 3, + ACTIONS(4810), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83371] = 4, + [83421] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2796), 2, + ACTIONS(3181), 1, + anon_sym_RPAREN, + ACTIONS(6013), 1, + anon_sym_COMMA, + STATE(2880), 1, + aux_sym_tuple_type_repeat1, + STATE(2795), 2, sym_line_comment, sym_block_comment, - ACTIONS(4453), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83387] = 6, + [83441] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5819), 1, + ACTIONS(5610), 1, anon_sym_RPAREN, - ACTIONS(5821), 1, + ACTIONS(6015), 1, anon_sym_COMMA, - STATE(2771), 1, - aux_sym_tuple_pattern_repeat1, - STATE(2797), 2, + STATE(2796), 3, sym_line_comment, sym_block_comment, - [83407] = 4, + aux_sym_parameters_repeat1, + [83459] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2798), 2, + STATE(2797), 2, sym_line_comment, sym_block_comment, - ACTIONS(959), 3, - anon_sym_COLON, - anon_sym_GT, - anon_sym_COMMA, - [83423] = 4, + ACTIONS(4816), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83475] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2799), 2, + ACTIONS(5426), 1, + anon_sym_RPAREN, + ACTIONS(5428), 1, + anon_sym_COMMA, + STATE(2809), 1, + aux_sym_parameters_repeat1, + STATE(2798), 2, sym_line_comment, sym_block_comment, - ACTIONS(5977), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83439] = 6, + [83495] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5979), 1, - anon_sym_SEMI, - ACTIONS(5981), 1, - anon_sym_EQ, - STATE(2800), 2, + ACTIONS(6018), 2, + anon_sym_RPAREN, + anon_sym_COMMA, + STATE(2799), 2, sym_line_comment, sym_block_comment, - [83459] = 5, + [83513] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5983), 2, - anon_sym_RBRACE, - anon_sym_COMMA, - STATE(2801), 2, + STATE(2800), 2, sym_line_comment, sym_block_comment, - [83477] = 4, + ACTIONS(4856), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83529] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2802), 2, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6020), 1, + anon_sym_SEMI, + STATE(3383), 1, + sym_where_clause, + STATE(2801), 2, sym_line_comment, sym_block_comment, - ACTIONS(5985), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83493] = 6, + [83549] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5529), 1, - anon_sym_COMMA, - ACTIONS(5987), 1, - anon_sym_PIPE, - STATE(2911), 1, - aux_sym_closure_parameters_repeat1, - STATE(2803), 2, + STATE(2802), 2, sym_line_comment, sym_block_comment, - [83513] = 4, + ACTIONS(4792), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [83565] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2804), 2, + STATE(2803), 2, sym_line_comment, sym_block_comment, - ACTIONS(4846), 3, + ACTIONS(4850), 3, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_if, - [83529] = 6, + [83581] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5989), 1, + ACTIONS(6022), 1, anon_sym_RBRACE, - ACTIONS(5991), 1, + ACTIONS(6024), 1, anon_sym_COMMA, - STATE(2905), 1, + STATE(2804), 3, + sym_line_comment, + sym_block_comment, aux_sym_enum_variant_list_repeat2, + [83599] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(1588), 1, + anon_sym_GT, + ACTIONS(6027), 1, + anon_sym_COMMA, + STATE(2815), 1, + aux_sym_type_arguments_repeat1, STATE(2805), 2, sym_line_comment, sym_block_comment, - [83549] = 4, + [83619] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1588), 1, + anon_sym_GT, + ACTIONS(6027), 1, + anon_sym_COMMA, + STATE(2749), 1, + aux_sym_type_arguments_repeat1, STATE(2806), 2, sym_line_comment, sym_block_comment, - ACTIONS(4836), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83565] = 6, + [83639] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, - anon_sym_RBRACK, - ACTIONS(4043), 1, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6029), 2, + anon_sym_RBRACE, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_arguments_repeat1, STATE(2807), 2, sym_line_comment, sym_block_comment, - [83585] = 4, + [83657] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(6031), 1, + anon_sym_COLON_COLON, + STATE(1208), 1, + sym_field_initializer_list, STATE(2808), 2, sym_line_comment, sym_block_comment, - ACTIONS(4828), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83601] = 6, + [83677] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4860), 1, - anon_sym_LBRACE, - STATE(1935), 1, - sym_type_arguments, + ACTIONS(1464), 1, + anon_sym_RPAREN, + ACTIONS(5446), 1, + anon_sym_COMMA, + STATE(2796), 1, + aux_sym_parameters_repeat1, STATE(2809), 2, sym_line_comment, sym_block_comment, - [83621] = 6, + [83697] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5993), 1, - anon_sym_RBRACE, - ACTIONS(5995), 1, + ACTIONS(2947), 1, + anon_sym_RPAREN, + ACTIONS(6033), 1, anon_sym_COMMA, - STATE(2983), 1, - aux_sym_struct_pattern_repeat1, + STATE(2938), 1, + aux_sym_tuple_pattern_repeat1, STATE(2810), 2, sym_line_comment, sym_block_comment, - [83641] = 4, + [83717] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(6035), 1, + anon_sym_SEMI, + STATE(1354), 1, + sym_declaration_list, STATE(2811), 2, sym_line_comment, sym_block_comment, - ACTIONS(4826), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [83657] = 6, + [83737] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3139), 1, + ACTIONS(1464), 1, anon_sym_RPAREN, - ACTIONS(5997), 1, + ACTIONS(5446), 1, anon_sym_COMMA, - STATE(2981), 1, - aux_sym_tuple_type_repeat1, + STATE(2817), 1, + aux_sym_parameters_repeat1, STATE(2812), 2, sym_line_comment, sym_block_comment, - [83677] = 6, + [83757] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(5999), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6037), 1, anon_sym_SEMI, - STATE(717), 1, - sym_declaration_list, + STATE(3320), 1, + sym_where_clause, STATE(2813), 2, sym_line_comment, sym_block_comment, - [83697] = 6, + [83777] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4644), 1, - anon_sym_GT, - ACTIONS(6001), 1, + ACTIONS(6039), 1, + anon_sym_RBRACE, + ACTIONS(6041), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_type_parameters_repeat1, + STATE(2992), 1, + aux_sym_field_declaration_list_repeat1, STATE(2814), 2, sym_line_comment, sym_block_comment, - [83717] = 6, + [83797] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6003), 1, - anon_sym_SEMI, - STATE(715), 1, - sym_declaration_list, + ACTIONS(1594), 1, + anon_sym_GT, + ACTIONS(6043), 1, + anon_sym_COMMA, + STATE(2749), 1, + aux_sym_type_arguments_repeat1, STATE(2815), 2, sym_line_comment, sym_block_comment, - [83737] = 6, + [83817] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_GT, - ACTIONS(5461), 1, - anon_sym_COMMA, - STATE(2949), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4582), 1, + anon_sym_COLON, + ACTIONS(4909), 1, + anon_sym_COLON_COLON, + STATE(2604), 1, + sym_trait_bounds, STATE(2816), 2, sym_line_comment, sym_block_comment, - [83757] = 6, + [83837] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6005), 1, - sym_identifier, - ACTIONS(6007), 1, - anon_sym_await, - ACTIONS(6009), 1, - sym_integer_literal, + ACTIONS(1468), 1, + anon_sym_RPAREN, + ACTIONS(6045), 1, + anon_sym_COMMA, + STATE(2796), 1, + aux_sym_parameters_repeat1, STATE(2817), 2, sym_line_comment, sym_block_comment, - [83777] = 6, + [83857] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4634), 1, - anon_sym_GT, - ACTIONS(5461), 1, + ACTIONS(3015), 1, + anon_sym_RBRACK, + ACTIONS(6047), 1, anon_sym_COMMA, - STATE(2915), 1, - aux_sym_type_parameters_repeat1, + STATE(2680), 1, + aux_sym_slice_pattern_repeat1, STATE(2818), 2, sym_line_comment, sym_block_comment, - [83797] = 5, + [83877] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(5241), 1, anon_sym_PLUS, - ACTIONS(6011), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6049), 1, + anon_sym_GT, + ACTIONS(6051), 1, + anon_sym_as, STATE(2819), 2, sym_line_comment, sym_block_comment, - [83815] = 5, + [83897] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6013), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2820), 2, sym_line_comment, sym_block_comment, - [83833] = 4, + ACTIONS(6053), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [83913] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4854), 1, + anon_sym_RBRACE, + ACTIONS(6055), 1, + anon_sym_COMMA, + STATE(3026), 1, + aux_sym_field_initializer_list_repeat1, STATE(2821), 2, sym_line_comment, sym_block_comment, - ACTIONS(6015), 3, - anon_sym_PLUS, - anon_sym_STAR, - anon_sym_QMARK, - [83849] = 6, + [83933] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6017), 1, - anon_sym_SEMI, - STATE(1145), 1, - sym_declaration_list, + ACTIONS(1470), 1, + anon_sym_RPAREN, + ACTIONS(5524), 1, + anon_sym_COMMA, + STATE(2796), 1, + aux_sym_parameters_repeat1, STATE(2822), 2, sym_line_comment, sym_block_comment, - [83869] = 6, + [83953] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5270), 1, - anon_sym_PLUS, - ACTIONS(6019), 1, - anon_sym_GT, - ACTIONS(6021), 1, - anon_sym_as, + ACTIONS(6057), 1, + anon_sym_AMP_AMP, + ACTIONS(4181), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(2823), 2, sym_line_comment, sym_block_comment, - [83889] = 6, + [83971] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6023), 1, - anon_sym_SEMI, - ACTIONS(6025), 1, - anon_sym_EQ, + ACTIONS(6059), 1, + anon_sym_move, + STATE(231), 1, + sym_closure_parameters, STATE(2824), 2, sym_line_comment, sym_block_comment, - [83909] = 6, + [83991] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(6027), 1, + ACTIONS(6061), 1, anon_sym_SEMI, - STATE(660), 1, + STATE(511), 1, sym_declaration_list, STATE(2825), 2, sym_line_comment, sym_block_comment, - [83929] = 6, + [84011] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6029), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6063), 1, anon_sym_SEMI, - STATE(657), 1, - sym_declaration_list, + STATE(3404), 1, + sym_where_clause, STATE(2826), 2, sym_line_comment, sym_block_comment, - [83949] = 6, + [84031] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6031), 1, - anon_sym_SEMI, - STATE(636), 1, - sym_declaration_list, + ACTIONS(6067), 1, + anon_sym_COLON, + ACTIONS(6065), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2827), 2, sym_line_comment, sym_block_comment, - [83969] = 6, + [84049] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6033), 1, - anon_sym_SEMI, - STATE(633), 1, - sym_declaration_list, + ACTIONS(5590), 1, + anon_sym_RPAREN, + ACTIONS(5592), 1, + anon_sym_COMMA, + STATE(2989), 1, + aux_sym_tuple_pattern_repeat1, STATE(2828), 2, sym_line_comment, sym_block_comment, - [83989] = 5, + [84069] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(5654), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6069), 1, + anon_sym_SEMI, + ACTIONS(6071), 1, + anon_sym_EQ, STATE(2829), 2, sym_line_comment, sym_block_comment, - [84007] = 5, + [84089] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6035), 1, - anon_sym_AMP_AMP, - ACTIONS(4245), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(1009), 1, + anon_sym_RPAREN, + ACTIONS(4073), 1, + anon_sym_COMMA, + STATE(2589), 1, + aux_sym_arguments_repeat1, STATE(2830), 2, sym_line_comment, sym_block_comment, - [84025] = 5, + [84109] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6035), 1, - anon_sym_AMP_AMP, - ACTIONS(6037), 2, - anon_sym_LBRACE, - anon_sym_SQUOTE, + ACTIONS(6075), 1, + anon_sym_EQ, + ACTIONS(6073), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2831), 2, sym_line_comment, sym_block_comment, - [84043] = 6, + [84127] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6039), 1, - anon_sym_SEMI, - ACTIONS(6041), 1, - anon_sym_EQ, + ACTIONS(4895), 1, + anon_sym_RBRACE, + ACTIONS(6077), 1, + anon_sym_COMMA, + STATE(2804), 1, + aux_sym_enum_variant_list_repeat2, STATE(2832), 2, sym_line_comment, sym_block_comment, - [84063] = 6, + [84147] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6043), 1, - anon_sym_RPAREN, - ACTIONS(6045), 1, - anon_sym_COMMA, - STATE(2851), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6079), 1, + anon_sym_SEMI, + STATE(3357), 1, + sym_where_clause, STATE(2833), 2, sym_line_comment, sym_block_comment, - [84083] = 5, + [84167] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6047), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6081), 1, + sym_identifier, + ACTIONS(6083), 1, + anon_sym_await, + ACTIONS(6085), 1, + sym_integer_literal, STATE(2834), 2, sym_line_comment, sym_block_comment, - [84101] = 6, + [84187] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6049), 1, - anon_sym_RBRACE, - ACTIONS(6051), 1, - anon_sym_COMMA, - STATE(2927), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(6087), 1, + anon_sym_LPAREN, + ACTIONS(6089), 1, + anon_sym_LBRACK, + ACTIONS(6091), 1, + anon_sym_LBRACE, STATE(2835), 2, sym_line_comment, sym_block_comment, - [84121] = 6, + [84207] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6053), 1, - anon_sym_SEMI, - STATE(599), 1, - sym_declaration_list, + ACTIONS(3945), 1, + anon_sym_LT2, + ACTIONS(4943), 1, + anon_sym_COLON_COLON, + STATE(1581), 1, + sym_type_arguments, STATE(2836), 2, sym_line_comment, sym_block_comment, - [84141] = 6, + [84227] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(6055), 1, - anon_sym_SEMI, - STATE(3312), 1, - sym_where_clause, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6093), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2837), 2, sym_line_comment, sym_block_comment, - [84161] = 6, + [84245] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(6057), 1, + ACTIONS(6095), 1, anon_sym_SEMI, - STATE(586), 1, + STATE(593), 1, sym_declaration_list, STATE(2838), 2, sym_line_comment, sym_block_comment, - [84181] = 4, + [84265] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(3037), 1, + anon_sym_RPAREN, + ACTIONS(6097), 1, + anon_sym_COMMA, + STATE(2680), 1, + aux_sym_slice_pattern_repeat1, STATE(2839), 2, sym_line_comment, sym_block_comment, - ACTIONS(4824), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84197] = 6, + [84285] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(6059), 1, + ACTIONS(6099), 1, anon_sym_SEMI, - STATE(517), 1, + STATE(595), 1, sym_declaration_list, STATE(2840), 2, sym_line_comment, sym_block_comment, - [84217] = 6, + [84305] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6061), 1, - anon_sym_SEMI, - STATE(1301), 1, - sym_declaration_list, STATE(2841), 2, sym_line_comment, sym_block_comment, - [84237] = 5, + ACTIONS(1366), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84321] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - ACTIONS(6063), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2842), 2, sym_line_comment, sym_block_comment, - [84255] = 5, + ACTIONS(6101), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84337] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6065), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2843), 2, sym_line_comment, sym_block_comment, - [84273] = 4, + ACTIONS(6103), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84353] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(2844), 2, - sym_line_comment, - sym_block_comment, - ACTIONS(6067), 3, - anon_sym_SEMI, + ACTIONS(6105), 1, anon_sym_RBRACE, + ACTIONS(6107), 1, anon_sym_COMMA, - [84289] = 6, + STATE(2844), 3, + sym_line_comment, + sym_block_comment, + aux_sym_struct_pattern_repeat1, + [84371] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(6069), 1, - anon_sym_SEMI, - STATE(3438), 1, - sym_where_clause, STATE(2845), 2, sym_line_comment, sym_block_comment, - [84309] = 4, + ACTIONS(4858), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84387] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1458), 1, + anon_sym_RPAREN, + ACTIONS(6110), 1, + anon_sym_COMMA, + STATE(2796), 1, + aux_sym_parameters_repeat1, STATE(2846), 2, sym_line_comment, sym_block_comment, - ACTIONS(6071), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84325] = 6, + [84407] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4909), 1, - anon_sym_RBRACE, - ACTIONS(6073), 1, + ACTIONS(5617), 1, + anon_sym_EQ, + ACTIONS(5759), 2, + anon_sym_GT, anon_sym_COMMA, - STATE(2849), 1, - aux_sym_field_declaration_list_repeat1, STATE(2847), 2, sym_line_comment, sym_block_comment, - [84345] = 4, + [84425] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -177461,392 +177523,393 @@ static const uint16_t ts_small_parse_table[] = { STATE(2848), 2, sym_line_comment, sym_block_comment, - ACTIONS(4810), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [84361] = 5, + ACTIONS(6112), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [84441] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6075), 1, - anon_sym_RBRACE, - ACTIONS(6077), 1, + ACTIONS(1011), 1, + anon_sym_RBRACK, + ACTIONS(6114), 1, anon_sym_COMMA, - STATE(2849), 3, + STATE(2589), 1, + aux_sym_arguments_repeat1, + STATE(2849), 2, sym_line_comment, sym_block_comment, - aux_sym_field_declaration_list_repeat1, - [84379] = 5, + [84461] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6080), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6116), 1, + anon_sym_move, + STATE(239), 1, + sym_closure_parameters, STATE(2850), 2, sym_line_comment, sym_block_comment, - [84397] = 5, + [84481] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6082), 1, - anon_sym_RPAREN, - ACTIONS(6084), 1, + ACTIONS(6118), 1, + anon_sym_RBRACE, + ACTIONS(6120), 1, anon_sym_COMMA, - STATE(2851), 3, + STATE(2821), 1, + aux_sym_field_initializer_list_repeat1, + STATE(2851), 2, sym_line_comment, sym_block_comment, - aux_sym_ordered_field_declaration_list_repeat1, - [84415] = 6, + [84501] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3087), 1, - anon_sym_PLUS, - ACTIONS(6087), 1, - sym_mutable_specifier, - ACTIONS(6089), 1, - sym_self, + ACTIONS(6122), 1, + anon_sym_RBRACE, + ACTIONS(6124), 1, + anon_sym_COMMA, + STATE(2900), 1, + aux_sym_use_list_repeat1, STATE(2852), 2, sym_line_comment, sym_block_comment, - [84435] = 6, + [84521] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4850), 1, - anon_sym_RBRACE, - ACTIONS(6091), 1, + ACTIONS(1600), 1, + anon_sym_GT, + ACTIONS(6126), 1, anon_sym_COMMA, - STATE(2910), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2951), 1, + aux_sym_type_arguments_repeat1, STATE(2853), 2, sym_line_comment, sym_block_comment, - [84455] = 5, + [84541] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6093), 2, - anon_sym_RPAREN, + ACTIONS(1600), 1, + anon_sym_GT, + ACTIONS(6126), 1, anon_sym_COMMA, + STATE(2749), 1, + aux_sym_type_arguments_repeat1, STATE(2854), 2, sym_line_comment, sym_block_comment, - [84473] = 6, + [84561] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6095), 1, + ACTIONS(5771), 1, anon_sym_RPAREN, - ACTIONS(6097), 1, + ACTIONS(5773), 1, anon_sym_COMMA, - STATE(2851), 1, - aux_sym_ordered_field_declaration_list_repeat1, + STATE(2810), 1, + aux_sym_tuple_pattern_repeat1, STATE(2855), 2, sym_line_comment, sym_block_comment, - [84493] = 4, + [84581] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6128), 1, + anon_sym_SEMI, + STATE(540), 1, + sym_declaration_list, STATE(2856), 2, sym_line_comment, sym_block_comment, - ACTIONS(6099), 3, - sym_string_content, - anon_sym_DQUOTE, - sym_escape_sequence, - [84509] = 6, + [84601] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(6101), 1, - anon_sym_SEMI, - STATE(3459), 1, - sym_where_clause, + ACTIONS(3027), 1, + anon_sym_RPAREN, + ACTIONS(6130), 1, + anon_sym_COMMA, + STATE(2680), 1, + aux_sym_slice_pattern_repeat1, STATE(2857), 2, sym_line_comment, sym_block_comment, - [84529] = 6, + [84621] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6103), 1, - anon_sym_SEMI, - ACTIONS(6105), 1, - anon_sym_EQ, STATE(2858), 2, sym_line_comment, sym_block_comment, - [84549] = 6, + ACTIONS(6132), 3, + sym_string_content, + anon_sym_DQUOTE, + sym_escape_sequence, + [84637] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6107), 1, - anon_sym_LBRACE, - STATE(1935), 1, - sym_type_arguments, + ACTIONS(5163), 1, + anon_sym_RBRACE, + ACTIONS(6134), 1, + anon_sym_COMMA, + STATE(2844), 1, + aux_sym_struct_pattern_repeat1, STATE(2859), 2, sym_line_comment, sym_block_comment, - [84569] = 6, + [84657] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6109), 1, - anon_sym_SEMI, - STATE(632), 1, - sym_declaration_list, - STATE(2860), 2, + ACTIONS(5759), 1, + anon_sym_GT, + ACTIONS(6136), 1, + anon_sym_COMMA, + STATE(2860), 3, sym_line_comment, sym_block_comment, - [84589] = 6, + aux_sym_type_parameters_repeat1, + [84675] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6111), 1, - anon_sym_SEMI, - STATE(488), 1, - sym_declaration_list, STATE(2861), 2, sym_line_comment, sym_block_comment, - [84609] = 6, + ACTIONS(937), 3, + anon_sym_COLON, + anon_sym_GT, + anon_sym_COMMA, + [84691] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6113), 1, - anon_sym_LPAREN, - ACTIONS(6115), 1, - anon_sym_LBRACK, - ACTIONS(6117), 1, - anon_sym_LBRACE, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6139), 1, + anon_sym_SEMI, + STATE(3491), 1, + sym_where_clause, STATE(2862), 2, sym_line_comment, sym_block_comment, - [84629] = 6, + [84711] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6119), 1, - anon_sym_LPAREN, - ACTIONS(6121), 1, - anon_sym_LBRACK, - ACTIONS(6123), 1, - anon_sym_LBRACE, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6141), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2863), 2, sym_line_comment, sym_block_comment, - [84649] = 5, + [84729] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_EQ, - ACTIONS(5882), 2, - anon_sym_GT, + ACTIONS(3029), 1, + anon_sym_RPAREN, + ACTIONS(6143), 1, anon_sym_COMMA, + STATE(2680), 1, + aux_sym_slice_pattern_repeat1, STATE(2864), 2, sym_line_comment, sym_block_comment, - [84667] = 6, + [84749] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1003), 1, - anon_sym_RPAREN, - ACTIONS(4109), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_arguments_repeat1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6145), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, STATE(2865), 2, sym_line_comment, sym_block_comment, - [84687] = 6, + [84769] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6125), 1, - anon_sym_GT, - ACTIONS(6127), 1, + ACTIONS(5165), 1, + anon_sym_RBRACE, + ACTIONS(6147), 1, anon_sym_COMMA, - STATE(2968), 1, - aux_sym_for_lifetimes_repeat1, + STATE(2844), 1, + aux_sym_struct_pattern_repeat1, STATE(2866), 2, sym_line_comment, sym_block_comment, - [84707] = 6, + [84789] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3315), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(6129), 1, - anon_sym_COLON_COLON, - STATE(1469), 1, - sym_field_initializer_list, + ACTIONS(6149), 1, + anon_sym_SEMI, + STATE(1281), 1, + sym_declaration_list, STATE(2867), 2, sym_line_comment, sym_block_comment, - [84727] = 6, + [84809] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6131), 1, - sym_identifier, - ACTIONS(6133), 1, - anon_sym_ref, - ACTIONS(6135), 1, - sym_mutable_specifier, + ACTIONS(6153), 1, + anon_sym_COLON, + ACTIONS(6151), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2868), 2, sym_line_comment, sym_block_comment, - [84747] = 5, + [84827] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6137), 2, + ACTIONS(4656), 1, anon_sym_GT, + ACTIONS(6155), 1, anon_sym_COMMA, + STATE(2860), 1, + aux_sym_type_parameters_repeat1, STATE(2869), 2, sym_line_comment, sym_block_comment, - [84765] = 6, + [84847] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6139), 1, - anon_sym_SEMI, - STATE(494), 1, - sym_declaration_list, + ACTIONS(6157), 1, + anon_sym_RBRACE, + ACTIONS(6159), 1, + anon_sym_COMMA, + STATE(2950), 1, + aux_sym_struct_pattern_repeat1, STATE(2870), 2, sym_line_comment, sym_block_comment, - [84785] = 6, + [84867] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6141), 1, - anon_sym_SEMI, - STATE(500), 1, - sym_declaration_list, STATE(2871), 2, sym_line_comment, sym_block_comment, - [84805] = 6, + ACTIONS(4754), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84883] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4953), 1, - anon_sym_RBRACE, - ACTIONS(6143), 1, + ACTIONS(1466), 1, + anon_sym_RPAREN, + ACTIONS(5534), 1, anon_sym_COMMA, - STATE(2874), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2796), 1, + aux_sym_parameters_repeat1, STATE(2872), 2, sym_line_comment, sym_block_comment, - [84825] = 5, + [84903] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6147), 1, - anon_sym_EQ, - ACTIONS(6145), 2, - anon_sym_RBRACE, + ACTIONS(4650), 1, + anon_sym_GT, + ACTIONS(6161), 1, anon_sym_COMMA, + STATE(2860), 1, + aux_sym_type_parameters_repeat1, STATE(2873), 2, sym_line_comment, sym_block_comment, - [84843] = 5, + [84923] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6149), 1, - anon_sym_RBRACE, - ACTIONS(6151), 1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6163), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2874), 3, + STATE(2874), 2, sym_line_comment, sym_block_comment, - aux_sym_enum_variant_list_repeat2, - [84861] = 5, + [84941] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 1, - anon_sym_GT, - ACTIONS(6156), 1, - anon_sym_COMMA, - STATE(2875), 3, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6165), 1, + anon_sym_SEMI, + STATE(3329), 1, + sym_where_clause, + STATE(2875), 2, sym_line_comment, sym_block_comment, - aux_sym_for_lifetimes_repeat1, - [84879] = 6, + [84961] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - ACTIONS(6159), 1, - anon_sym_GT, - STATE(3285), 1, - sym_lifetime, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6167), 1, + anon_sym_SEMI, + STATE(492), 1, + sym_declaration_list, STATE(2876), 2, sym_line_comment, sym_block_comment, - [84899] = 4, + [84981] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -177854,1412 +177917,1371 @@ static const uint16_t ts_small_parse_table[] = { STATE(2877), 2, sym_line_comment, sym_block_comment, - ACTIONS(5367), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [84915] = 6, + ACTIONS(4453), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [84997] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1464), 1, - anon_sym_RPAREN, - ACTIONS(6161), 1, - anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, STATE(2878), 2, sym_line_comment, sym_block_comment, - [84935] = 5, + ACTIONS(4852), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85013] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 1, + ACTIONS(1466), 1, anon_sym_RPAREN, - ACTIONS(6163), 1, + ACTIONS(5534), 1, anon_sym_COMMA, - STATE(2879), 3, + STATE(2961), 1, + aux_sym_parameters_repeat1, + STATE(2879), 2, sym_line_comment, sym_block_comment, - aux_sym_parameters_repeat1, - [84953] = 5, + [85033] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(5858), 2, + ACTIONS(6018), 1, anon_sym_RPAREN, + ACTIONS(6169), 1, anon_sym_COMMA, - STATE(2880), 2, + STATE(2880), 3, sym_line_comment, sym_block_comment, - [84971] = 6, + aux_sym_tuple_type_repeat1, + [85051] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1035), 1, - anon_sym_RBRACK, - ACTIONS(6166), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_arguments_repeat1, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4909), 1, + anon_sym_COLON_COLON, + STATE(1930), 1, + sym_type_arguments, STATE(2881), 2, sym_line_comment, sym_block_comment, - [84991] = 5, + [85071] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, - ACTIONS(5278), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2882), 2, sym_line_comment, sym_block_comment, - [85009] = 5, + ACTIONS(4800), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85087] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6168), 1, - anon_sym_RBRACE, - ACTIONS(6170), 1, + ACTIONS(1470), 1, + anon_sym_RPAREN, + ACTIONS(5524), 1, anon_sym_COMMA, - STATE(2883), 3, + STATE(2846), 1, + aux_sym_parameters_repeat1, + STATE(2883), 2, sym_line_comment, sym_block_comment, - aux_sym_struct_pattern_repeat1, - [85027] = 5, + [85107] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6173), 2, + ACTIONS(4953), 1, anon_sym_RBRACE, + ACTIONS(6172), 1, anon_sym_COMMA, + STATE(2804), 1, + aux_sym_enum_variant_list_repeat2, STATE(2884), 2, sym_line_comment, sym_block_comment, - [85045] = 6, + [85127] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, - anon_sym_GT, - ACTIONS(6175), 1, + ACTIONS(4953), 1, + anon_sym_RBRACE, + ACTIONS(6172), 1, anon_sym_COMMA, - STATE(2964), 1, - aux_sym_type_arguments_repeat1, + STATE(2963), 1, + aux_sym_enum_variant_list_repeat2, STATE(2885), 2, sym_line_comment, sym_block_comment, - [85065] = 6, + [85147] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1598), 1, - anon_sym_GT, - ACTIONS(6175), 1, - anon_sym_COMMA, - STATE(2891), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6174), 1, + anon_sym_SEMI, + STATE(546), 1, + sym_declaration_list, STATE(2886), 2, sym_line_comment, sym_block_comment, - [85085] = 5, + [85167] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6179), 1, - anon_sym_COLON, - ACTIONS(6177), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6057), 1, + anon_sym_AMP_AMP, + ACTIONS(6176), 2, + anon_sym_LBRACE, + anon_sym_SQUOTE, STATE(2887), 2, sym_line_comment, sym_block_comment, - [85103] = 6, + [85185] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3019), 1, - anon_sym_RPAREN, - ACTIONS(6181), 1, - anon_sym_COMMA, - STATE(2539), 1, - aux_sym_slice_pattern_repeat1, STATE(2888), 2, sym_line_comment, sym_block_comment, - [85123] = 6, + ACTIONS(6178), 3, + anon_sym_EQ, + anon_sym_GT, + anon_sym_COMMA, + [85201] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RBRACK, - ACTIONS(4057), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_arguments_repeat1, STATE(2889), 2, sym_line_comment, sym_block_comment, - [85143] = 6, + ACTIONS(6180), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [85217] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5145), 1, - anon_sym_RBRACE, - ACTIONS(6183), 1, + ACTIONS(4660), 1, + anon_sym_GT, + ACTIONS(6182), 1, anon_sym_COMMA, - STATE(2883), 1, - aux_sym_struct_pattern_repeat1, + STATE(2860), 1, + aux_sym_type_parameters_repeat1, STATE(2890), 2, sym_line_comment, sym_block_comment, - [85163] = 5, + [85237] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5519), 1, + ACTIONS(4632), 1, anon_sym_GT, - ACTIONS(6185), 1, + ACTIONS(6184), 1, anon_sym_COMMA, - STATE(2891), 3, + STATE(2860), 1, + aux_sym_type_parameters_repeat1, + STATE(2891), 2, sym_line_comment, sym_block_comment, - aux_sym_type_arguments_repeat1, - [85181] = 6, + [85257] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3021), 1, - anon_sym_RPAREN, - ACTIONS(6188), 1, - anon_sym_COMMA, - STATE(2539), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(6186), 1, + anon_sym_SEMI, + STATE(1403), 1, + sym_declaration_list, STATE(2892), 2, sym_line_comment, sym_block_comment, - [85201] = 6, + [85277] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1586), 1, - anon_sym_GT, + ACTIONS(6188), 1, + anon_sym_RPAREN, ACTIONS(6190), 1, anon_sym_COMMA, - STATE(2891), 1, - aux_sym_type_arguments_repeat1, + STATE(2922), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2893), 2, sym_line_comment, sym_block_comment, - [85221] = 6, + [85297] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5161), 1, - anon_sym_RBRACE, - ACTIONS(6192), 1, - anon_sym_COMMA, - STATE(2883), 1, - aux_sym_struct_pattern_repeat1, STATE(2894), 2, sym_line_comment, sym_block_comment, - [85241] = 6, + ACTIONS(4814), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85313] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - ACTIONS(6194), 1, - anon_sym_EQ, - STATE(3582), 1, - sym_type_parameters, STATE(2895), 2, sym_line_comment, sym_block_comment, - [85261] = 6, - ACTIONS(27), 1, + ACTIONS(4690), 3, + anon_sym_EQ_GT, anon_sym_PIPE, + anon_sym_if, + [85329] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6196), 1, - anon_sym_move, - STATE(216), 1, - sym_closure_parameters, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6192), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(2896), 2, sym_line_comment, sym_block_comment, - [85281] = 6, + [85347] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5834), 1, - anon_sym_RPAREN, - ACTIONS(5836), 1, - anon_sym_COMMA, - STATE(2772), 1, - aux_sym_tuple_pattern_repeat1, STATE(2897), 2, sym_line_comment, sym_block_comment, - [85301] = 6, + ACTIONS(4832), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85363] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6198), 1, - anon_sym_SEMI, - STATE(691), 1, - sym_declaration_list, + ACTIONS(1015), 1, + anon_sym_RBRACK, + ACTIONS(6194), 1, + anon_sym_COMMA, + STATE(2589), 1, + aux_sym_arguments_repeat1, STATE(2898), 2, sym_line_comment, sym_block_comment, - [85321] = 6, + [85383] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5433), 1, - anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, STATE(2899), 2, sym_line_comment, sym_block_comment, - [85341] = 6, + ACTIONS(4772), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85399] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(995), 1, - anon_sym_RPAREN, - ACTIONS(6200), 1, + ACTIONS(4375), 1, + anon_sym_RBRACE, + ACTIONS(6196), 1, anon_sym_COMMA, - STATE(2680), 1, - aux_sym_arguments_repeat1, + STATE(2920), 1, + aux_sym_use_list_repeat1, STATE(2900), 2, sym_line_comment, sym_block_comment, - [85361] = 6, + [85419] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6202), 1, - sym_identifier, - ACTIONS(6204), 1, - anon_sym_await, - ACTIONS(6206), 1, - sym_integer_literal, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(6198), 1, + anon_sym_SEMI, + STATE(1409), 1, + sym_declaration_list, STATE(2901), 2, sym_line_comment, sym_block_comment, - [85381] = 6, + [85439] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1470), 1, - anon_sym_RPAREN, - ACTIONS(5433), 1, - anon_sym_COMMA, - STATE(2972), 1, - aux_sym_parameters_repeat1, + ACTIONS(3325), 1, + anon_sym_LBRACE, + ACTIONS(6200), 1, + anon_sym_COLON_COLON, + STATE(1208), 1, + sym_field_initializer_list, STATE(2902), 2, sym_line_comment, sym_block_comment, - [85401] = 6, + [85459] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 1, + ACTIONS(6202), 1, + anon_sym_LPAREN, + ACTIONS(6204), 1, + anon_sym_LBRACK, + ACTIONS(6206), 1, anon_sym_LBRACE, - ACTIONS(6208), 1, - anon_sym_COLON_COLON, - STATE(1749), 1, - sym_field_initializer_list, STATE(2903), 2, sym_line_comment, sym_block_comment, - [85421] = 6, + [85479] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, + ACTIONS(6208), 1, + anon_sym_LPAREN, ACTIONS(6210), 1, - anon_sym_SEMI, - STATE(3391), 1, - sym_where_clause, + anon_sym_LBRACK, + ACTIONS(6212), 1, + anon_sym_LBRACE, STATE(2904), 2, sym_line_comment, sym_block_comment, - [85441] = 6, + [85499] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4911), 1, - anon_sym_RBRACE, - ACTIONS(6212), 1, - anon_sym_COMMA, - STATE(2874), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6214), 1, + anon_sym_SEMI, + STATE(602), 1, + sym_declaration_list, STATE(2905), 2, sym_line_comment, sym_block_comment, - [85461] = 6, + [85519] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4911), 1, - anon_sym_RBRACE, - ACTIONS(6212), 1, + ACTIONS(6216), 1, + anon_sym_RPAREN, + ACTIONS(6218), 1, anon_sym_COMMA, - STATE(2975), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2922), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2906), 2, sym_line_comment, sym_block_comment, - [85481] = 6, + [85539] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6214), 1, - anon_sym_SEMI, - ACTIONS(6216), 1, - anon_sym_EQ, + ACTIONS(4634), 1, + anon_sym_GT, + ACTIONS(6220), 1, + anon_sym_COMMA, + STATE(2860), 1, + aux_sym_type_parameters_repeat1, STATE(2907), 2, sym_line_comment, sym_block_comment, - [85501] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [85559] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6218), 1, - anon_sym_move, - STATE(218), 1, - sym_closure_parameters, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6222), 1, + anon_sym_LBRACE, + STATE(1933), 1, + sym_type_arguments, STATE(2908), 2, sym_line_comment, sym_block_comment, - [85521] = 6, + [85579] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, + ACTIONS(4989), 1, anon_sym_PLUS, - ACTIONS(6220), 1, + ACTIONS(6224), 1, anon_sym_SEMI, - ACTIONS(6222), 1, + ACTIONS(6226), 1, anon_sym_EQ, STATE(2909), 2, sym_line_comment, sym_block_comment, - [85541] = 5, + [85599] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6224), 1, - anon_sym_RBRACE, - ACTIONS(6226), 1, - anon_sym_COMMA, - STATE(2910), 3, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6228), 1, + anon_sym_SEMI, + STATE(548), 1, + sym_declaration_list, + STATE(2910), 2, sym_line_comment, sym_block_comment, - aux_sym_field_initializer_list_repeat1, - [85559] = 6, + [85619] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5529), 1, - anon_sym_COMMA, - ACTIONS(6229), 1, - anon_sym_PIPE, - STATE(2778), 1, - aux_sym_closure_parameters_repeat1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6230), 1, + anon_sym_SEMI, + STATE(604), 1, + sym_declaration_list, STATE(2911), 2, sym_line_comment, sym_block_comment, - [85579] = 5, + [85639] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6231), 1, - anon_sym_RBRACE, - ACTIONS(6233), 1, - anon_sym_COMMA, - STATE(2912), 3, + STATE(2912), 2, sym_line_comment, sym_block_comment, - aux_sym_use_list_repeat1, - [85597] = 4, + ACTIONS(4790), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85655] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6232), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(2913), 2, sym_line_comment, sym_block_comment, - ACTIONS(6236), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [85613] = 6, + [85673] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4640), 1, - anon_sym_GT, - ACTIONS(6238), 1, + ACTIONS(4907), 1, + anon_sym_RBRACE, + ACTIONS(6234), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_type_parameters_repeat1, + STATE(2931), 1, + aux_sym_field_declaration_list_repeat1, STATE(2914), 2, sym_line_comment, sym_block_comment, - [85633] = 6, + [85693] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4638), 1, - anon_sym_GT, - ACTIONS(6240), 1, + ACTIONS(5432), 1, + anon_sym_COLON, + ACTIONS(6236), 2, + anon_sym_PIPE, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_type_parameters_repeat1, STATE(2915), 2, sym_line_comment, sym_block_comment, - [85653] = 6, + [85711] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - ACTIONS(6242), 1, + ACTIONS(6238), 1, anon_sym_SEMI, - STATE(1248), 1, + STATE(498), 1, sym_declaration_list, STATE(2916), 2, sym_line_comment, sym_block_comment, - [85673] = 5, + [85731] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6246), 1, - anon_sym_EQ, - ACTIONS(6244), 2, + ACTIONS(4907), 1, anon_sym_RBRACE, + ACTIONS(6234), 1, anon_sym_COMMA, + STATE(2993), 1, + aux_sym_field_declaration_list_repeat1, STATE(2917), 2, sym_line_comment, sym_block_comment, - [85691] = 6, + [85751] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6248), 1, - anon_sym_RBRACE, - ACTIONS(6250), 1, - anon_sym_COMMA, - STATE(2967), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6240), 1, + anon_sym_SEMI, + STATE(610), 1, + sym_declaration_list, STATE(2918), 2, sym_line_comment, sym_block_comment, - [85711] = 6, + [85771] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6252), 1, - anon_sym_SEMI, - STATE(1262), 1, - sym_declaration_list, + ACTIONS(6242), 1, + anon_sym_EQ_GT, + ACTIONS(6244), 1, + anon_sym_PIPE, + ACTIONS(6246), 1, + anon_sym_if, STATE(2919), 2, sym_line_comment, sym_block_comment, - [85731] = 6, + [85791] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6254), 1, - anon_sym_SEMI, - ACTIONS(6256), 1, - anon_sym_RBRACK, - STATE(2920), 2, + ACTIONS(6248), 1, + anon_sym_RBRACE, + ACTIONS(6250), 1, + anon_sym_COMMA, + STATE(2920), 3, sym_line_comment, sym_block_comment, - [85751] = 6, + aux_sym_use_list_repeat1, + [85809] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(6258), 1, + ACTIONS(6253), 1, anon_sym_SEMI, - STATE(596), 1, + STATE(1423), 1, sym_declaration_list, STATE(2921), 2, sym_line_comment, sym_block_comment, - [85771] = 6, + [85829] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4921), 1, - anon_sym_COLON_COLON, - STATE(1933), 1, - sym_type_arguments, - STATE(2922), 2, + ACTIONS(6255), 1, + anon_sym_RPAREN, + ACTIONS(6257), 1, + anon_sym_COMMA, + STATE(2922), 3, sym_line_comment, sym_block_comment, - [85791] = 6, + aux_sym_ordered_field_declaration_list_repeat1, + [85847] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3965), 1, - anon_sym_LT2, - ACTIONS(4931), 1, - anon_sym_COLON_COLON, - STATE(1611), 1, - sym_type_arguments, STATE(2923), 2, sym_line_comment, sym_block_comment, - [85811] = 6, + ACTIONS(4798), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85863] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, + ACTIONS(6236), 1, + anon_sym_PIPE, ACTIONS(6260), 1, - anon_sym_SEMI, - ACTIONS(6262), 1, - anon_sym_EQ, - STATE(2924), 2, + anon_sym_COMMA, + STATE(2924), 3, sym_line_comment, sym_block_comment, - [85831] = 6, + aux_sym_closure_parameters_repeat1, + [85881] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4578), 1, - anon_sym_COLON, - ACTIONS(4921), 1, - anon_sym_COLON_COLON, - STATE(2565), 1, - sym_trait_bounds, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6263), 1, + anon_sym_SEMI, + STATE(612), 1, + sym_declaration_list, STATE(2925), 2, sym_line_comment, sym_block_comment, - [85851] = 6, + [85901] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6264), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, STATE(2926), 2, sym_line_comment, sym_block_comment, - [85871] = 6, + ACTIONS(4826), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [85917] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4927), 1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6265), 2, anon_sym_RBRACE, - ACTIONS(6266), 1, anon_sym_COMMA, - STATE(2849), 1, - aux_sym_field_declaration_list_repeat1, STATE(2927), 2, sym_line_comment, sym_block_comment, - [85891] = 6, + [85935] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4927), 1, - anon_sym_RBRACE, - ACTIONS(6266), 1, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6267), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2992), 1, - aux_sym_field_declaration_list_repeat1, STATE(2928), 2, sym_line_comment, sym_block_comment, - [85911] = 6, + [85953] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4865), 1, - anon_sym_RBRACE, - ACTIONS(5888), 1, - anon_sym_COMMA, - STATE(2847), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(2969), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_GT, + STATE(3196), 1, + sym_lifetime, STATE(2929), 2, sym_line_comment, sym_block_comment, - [85931] = 6, + [85973] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(6268), 1, - anon_sym_SEMI, - STATE(3382), 1, - sym_where_clause, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6271), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2930), 2, sym_line_comment, sym_block_comment, - [85951] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [85991] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6270), 1, - anon_sym_move, - STATE(239), 1, - sym_closure_parameters, - STATE(2931), 2, + ACTIONS(6273), 1, + anon_sym_RBRACE, + ACTIONS(6275), 1, + anon_sym_COMMA, + STATE(2931), 3, sym_line_comment, sym_block_comment, - [85971] = 6, + aux_sym_field_declaration_list_repeat1, + [86009] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6272), 1, - anon_sym_RPAREN, - ACTIONS(6274), 1, - anon_sym_COMMA, - STATE(2851), 1, - aux_sym_ordered_field_declaration_list_repeat1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6278), 1, + anon_sym_SEMI, + ACTIONS(6280), 1, + anon_sym_EQ, STATE(2932), 2, sym_line_comment, sym_block_comment, - [85991] = 6, + [86029] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6276), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6282), 1, anon_sym_SEMI, - ACTIONS(6278), 1, - anon_sym_EQ, + STATE(3499), 1, + sym_where_clause, STATE(2933), 2, sym_line_comment, sym_block_comment, - [86011] = 6, + [86049] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6280), 1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6284), 1, anon_sym_SEMI, - STATE(1278), 1, - sym_declaration_list, + ACTIONS(6286), 1, + anon_sym_EQ, STATE(2934), 2, sym_line_comment, sym_block_comment, - [86031] = 6, + [86069] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1458), 1, - anon_sym_RPAREN, - ACTIONS(6282), 1, - anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, + ACTIONS(6288), 1, + sym_identifier, + ACTIONS(6290), 1, + anon_sym_await, + ACTIONS(6292), 1, + sym_integer_literal, STATE(2935), 2, sym_line_comment, - sym_block_comment, - [86051] = 6, - ACTIONS(101), 1, - anon_sym_SLASH_SLASH, - ACTIONS(103), 1, - anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6284), 1, - anon_sym_SEMI, - STATE(662), 1, - sym_declaration_list, + sym_block_comment, + [86089] = 6, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(4812), 1, + anon_sym_RBRACE, + ACTIONS(6294), 1, + anon_sym_COMMA, + STATE(3026), 1, + aux_sym_field_initializer_list_repeat1, STATE(2936), 2, sym_line_comment, sym_block_comment, - [86071] = 6, + [86109] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(4578), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_trait_bounds, + ACTIONS(6296), 1, + anon_sym_RBRACE, + ACTIONS(6298), 1, + anon_sym_COMMA, + STATE(2764), 1, + aux_sym_struct_pattern_repeat1, STATE(2937), 2, sym_line_comment, sym_block_comment, - [86091] = 6, + [86129] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1592), 1, - anon_sym_GT, - ACTIONS(6286), 1, + ACTIONS(6267), 1, + anon_sym_RPAREN, + ACTIONS(6300), 1, anon_sym_COMMA, - STATE(2891), 1, - aux_sym_type_arguments_repeat1, - STATE(2938), 2, + STATE(2938), 3, sym_line_comment, sym_block_comment, - [86111] = 6, + aux_sym_tuple_pattern_repeat1, + [86147] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6288), 1, - anon_sym_SEMI, - STATE(677), 1, - sym_declaration_list, + ACTIONS(2969), 1, + anon_sym_SQUOTE, + ACTIONS(6303), 1, + anon_sym_GT, + STATE(3196), 1, + sym_lifetime, STATE(2939), 2, sym_line_comment, sym_block_comment, - [86131] = 6, + [86167] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4626), 1, - anon_sym_GT, - ACTIONS(6290), 1, - anon_sym_COMMA, - STATE(2949), 1, - aux_sym_type_parameters_repeat1, STATE(2940), 2, sym_line_comment, sym_block_comment, - [86151] = 4, + ACTIONS(6305), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86183] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(6269), 1, + anon_sym_GT, + ACTIONS(6307), 1, + anon_sym_COMMA, + STATE(2948), 1, + aux_sym_for_lifetimes_repeat1, STATE(2941), 2, sym_line_comment, sym_block_comment, - ACTIONS(6292), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [86167] = 6, + [86203] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6294), 1, - anon_sym_SEMI, - ACTIONS(6296), 1, - anon_sym_EQ, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4887), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, STATE(2942), 2, sym_line_comment, sym_block_comment, - [86187] = 6, + [86223] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1454), 1, - anon_sym_RPAREN, - ACTIONS(5365), 1, + ACTIONS(4955), 1, + anon_sym_RBRACE, + ACTIONS(6309), 1, anon_sym_COMMA, - STATE(2935), 1, - aux_sym_parameters_repeat1, + STATE(2931), 1, + aux_sym_field_declaration_list_repeat1, STATE(2943), 2, sym_line_comment, sym_block_comment, - [86207] = 6, + [86243] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4636), 1, - anon_sym_GT, - ACTIONS(6298), 1, + ACTIONS(1013), 1, + anon_sym_RPAREN, + ACTIONS(6311), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_type_parameters_repeat1, + STATE(2589), 1, + aux_sym_arguments_repeat1, STATE(2944), 2, sym_line_comment, sym_block_comment, - [86227] = 6, + [86263] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(6300), 1, - anon_sym_SEMI, - STATE(3569), 1, - sym_where_clause, + ACTIONS(5617), 1, + anon_sym_EQ, + ACTIONS(5679), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(2945), 2, sym_line_comment, sym_block_comment, - [86247] = 6, + [86281] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1454), 1, + ACTIONS(3137), 1, anon_sym_RPAREN, - ACTIONS(5365), 1, + ACTIONS(6313), 1, anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, + STATE(2880), 1, + aux_sym_tuple_type_repeat1, STATE(2946), 2, sym_line_comment, sym_block_comment, - [86267] = 6, + [86301] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4660), 1, - anon_sym_GT, - ACTIONS(6302), 1, - anon_sym_COMMA, - STATE(2949), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6315), 1, + anon_sym_SEMI, + ACTIONS(6317), 1, + anon_sym_EQ, STATE(2947), 2, sym_line_comment, sym_block_comment, - [86287] = 5, + [86321] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6304), 2, + ACTIONS(6319), 1, anon_sym_GT, + ACTIONS(6321), 1, anon_sym_COMMA, - STATE(2948), 2, + STATE(2948), 3, sym_line_comment, sym_block_comment, - [86305] = 5, + aux_sym_for_lifetimes_repeat1, + [86339] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5690), 1, - anon_sym_GT, - ACTIONS(6306), 1, - anon_sym_COMMA, - STATE(2949), 3, + STATE(2949), 2, sym_line_comment, sym_block_comment, - aux_sym_type_parameters_repeat1, - [86323] = 6, + ACTIONS(4804), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86355] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_GT, - ACTIONS(5413), 1, + ACTIONS(5137), 1, + anon_sym_RBRACE, + ACTIONS(6324), 1, anon_sym_COMMA, - STATE(2949), 1, - aux_sym_type_parameters_repeat1, + STATE(2844), 1, + aux_sym_struct_pattern_repeat1, STATE(2950), 2, sym_line_comment, sym_block_comment, - [86343] = 4, + [86375] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(1586), 1, + anon_sym_GT, + ACTIONS(6326), 1, + anon_sym_COMMA, + STATE(2749), 1, + aux_sym_type_arguments_repeat1, STATE(2951), 2, sym_line_comment, sym_block_comment, - ACTIONS(6309), 3, - anon_sym_EQ, - anon_sym_GT, - anon_sym_COMMA, - [86359] = 6, + [86395] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4632), 1, - anon_sym_GT, - ACTIONS(5413), 1, - anon_sym_COMMA, - STATE(2940), 1, - aux_sym_type_parameters_repeat1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6328), 1, + anon_sym_SEMI, + ACTIONS(6330), 1, + anon_sym_EQ, STATE(2952), 2, sym_line_comment, sym_block_comment, - [86379] = 6, + [86415] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4732), 1, - anon_sym_COLON_COLON, - ACTIONS(4838), 1, - anon_sym_BANG, - ACTIONS(6311), 1, - sym_identifier, STATE(2953), 2, sym_line_comment, sym_block_comment, - [86399] = 6, + ACTIONS(4756), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86431] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1027), 1, - anon_sym_RPAREN, - ACTIONS(6313), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_arguments_repeat1, STATE(2954), 2, sym_line_comment, sym_block_comment, - [86419] = 6, + ACTIONS(6332), 3, + anon_sym_PLUS, + anon_sym_STAR, + anon_sym_QMARK, + [86447] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6315), 1, + ACTIONS(6334), 1, sym_identifier, - ACTIONS(6317), 1, + ACTIONS(6336), 1, anon_sym_ref, - ACTIONS(6319), 1, + ACTIONS(6338), 1, sym_mutable_specifier, STATE(2955), 2, sym_line_comment, sym_block_comment, - [86439] = 6, + [86467] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1594), 1, - anon_sym_GT, - ACTIONS(6321), 1, - anon_sym_COMMA, - STATE(2891), 1, - aux_sym_type_arguments_repeat1, + ACTIONS(3969), 1, + anon_sym_LBRACE, + ACTIONS(6340), 1, + anon_sym_COLON_COLON, + STATE(1651), 1, + sym_field_initializer_list, STATE(2956), 2, sym_line_comment, sym_block_comment, - [86459] = 4, + [86487] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4678), 1, + anon_sym_COLON_COLON, + ACTIONS(4838), 1, + anon_sym_BANG, + ACTIONS(6342), 1, + sym_identifier, STATE(2957), 2, sym_line_comment, sym_block_comment, - ACTIONS(1450), 3, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_if, - [86475] = 6, + [86507] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1594), 1, - anon_sym_GT, - ACTIONS(6321), 1, - anon_sym_COMMA, - STATE(2938), 1, - aux_sym_type_arguments_repeat1, STATE(2958), 2, sym_line_comment, sym_block_comment, - [86495] = 5, + ACTIONS(4762), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86523] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5664), 1, - anon_sym_EQ, - ACTIONS(5690), 2, + ACTIONS(5347), 1, anon_sym_GT, + ACTIONS(5349), 1, anon_sym_COMMA, + STATE(2786), 1, + aux_sym_type_parameters_repeat1, STATE(2959), 2, sym_line_comment, sym_block_comment, - [86513] = 5, + [86543] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6323), 2, - anon_sym_GT, + ACTIONS(1007), 1, + anon_sym_RBRACK, + ACTIONS(4069), 1, anon_sym_COMMA, + STATE(2589), 1, + aux_sym_arguments_repeat1, STATE(2960), 2, sym_line_comment, sym_block_comment, - [86531] = 6, + [86563] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_RBRACE, - ACTIONS(6325), 1, + ACTIONS(1454), 1, + anon_sym_RPAREN, + ACTIONS(6344), 1, anon_sym_COMMA, - STATE(2872), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2796), 1, + aux_sym_parameters_repeat1, STATE(2961), 2, sym_line_comment, sym_block_comment, - [86551] = 6, + [86583] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6327), 1, - anon_sym_SEMI, - STATE(515), 1, - sym_declaration_list, STATE(2962), 2, sym_line_comment, sym_block_comment, - [86571] = 6, + ACTIONS(4764), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86599] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6329), 1, + ACTIONS(4885), 1, anon_sym_RBRACE, - ACTIONS(6331), 1, + ACTIONS(6346), 1, anon_sym_COMMA, - STATE(3009), 1, - aux_sym_field_initializer_list_repeat1, + STATE(2804), 1, + aux_sym_enum_variant_list_repeat2, STATE(2963), 2, sym_line_comment, sym_block_comment, - [86591] = 6, + [86619] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1596), 1, - anon_sym_GT, - ACTIONS(6333), 1, - anon_sym_COMMA, - STATE(2891), 1, - aux_sym_type_arguments_repeat1, STATE(2964), 2, sym_line_comment, sym_block_comment, - [86611] = 5, + ACTIONS(4788), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86635] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6337), 1, - anon_sym_COLON, - ACTIONS(6335), 2, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6348), 2, anon_sym_RBRACE, anon_sym_COMMA, STATE(2965), 2, sym_line_comment, sym_block_comment, - [86629] = 6, + [86653] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(4965), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, STATE(2966), 2, sym_line_comment, sym_block_comment, - [86649] = 6, + ACTIONS(5502), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86669] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4872), 1, - anon_sym_RBRACE, - ACTIONS(6325), 1, - anon_sym_COMMA, - STATE(2874), 1, - aux_sym_enum_variant_list_repeat2, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(6350), 1, + anon_sym_SEMI, + STATE(1461), 1, + sym_declaration_list, STATE(2967), 2, sym_line_comment, sym_block_comment, - [86669] = 6, + [86689] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6339), 1, - anon_sym_GT, - ACTIONS(6341), 1, - anon_sym_COMMA, - STATE(2875), 1, - aux_sym_for_lifetimes_repeat1, + ACTIONS(6352), 1, + anon_sym_move, + STATE(224), 1, + sym_closure_parameters, STATE(2968), 2, sym_line_comment, sym_block_comment, - [86689] = 6, + [86709] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5419), 1, - anon_sym_RPAREN, - ACTIONS(5421), 1, - anon_sym_COMMA, - STATE(2946), 1, - aux_sym_parameters_repeat1, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(6354), 1, + anon_sym_SEMI, + STATE(1465), 1, + sym_declaration_list, STATE(2969), 2, sym_line_comment, sym_block_comment, - [86709] = 6, + [86729] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - ACTIONS(6339), 1, - anon_sym_GT, - STATE(3285), 1, - sym_lifetime, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4830), 1, + anon_sym_LBRACE, + STATE(1933), 1, + sym_type_arguments, STATE(2970), 2, sym_line_comment, sym_block_comment, - [86729] = 6, + [86749] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3163), 1, - anon_sym_RPAREN, - ACTIONS(6343), 1, - anon_sym_COMMA, - STATE(2981), 1, - aux_sym_tuple_type_repeat1, STATE(2971), 2, sym_line_comment, sym_block_comment, - [86749] = 6, + ACTIONS(4664), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86765] = 6, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1472), 1, - anon_sym_RPAREN, - ACTIONS(6345), 1, - anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, + ACTIONS(6356), 1, + anon_sym_move, + STATE(228), 1, + sym_closure_parameters, STATE(2972), 2, sym_line_comment, sym_block_comment, - [86769] = 6, + [86785] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5311), 1, - anon_sym_GT, - ACTIONS(5313), 1, - anon_sym_COMMA, - STATE(2950), 1, - aux_sym_type_parameters_repeat1, STATE(2973), 2, sym_line_comment, sym_block_comment, - [86789] = 6, + ACTIONS(4794), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86801] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6347), 1, - anon_sym_EQ_GT, - ACTIONS(6349), 1, - anon_sym_PIPE, - ACTIONS(6351), 1, - anon_sym_if, STATE(2974), 2, sym_line_comment, sym_block_comment, - [86809] = 6, + ACTIONS(4802), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [86817] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4947), 1, - anon_sym_RBRACE, - ACTIONS(6353), 1, + ACTIONS(6358), 1, + anon_sym_RPAREN, + ACTIONS(6360), 1, anon_sym_COMMA, - STATE(2874), 1, - aux_sym_enum_variant_list_repeat2, + STATE(2922), 1, + aux_sym_ordered_field_declaration_list_repeat1, STATE(2975), 2, sym_line_comment, sym_block_comment, - [86829] = 6, + [86837] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1460), 1, - anon_sym_RPAREN, - ACTIONS(5437), 1, - anon_sym_COMMA, - STATE(2878), 1, - aux_sym_parameters_repeat1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6362), 1, + anon_sym_SEMI, + STATE(3467), 1, + sym_where_clause, STATE(2976), 2, sym_line_comment, sym_block_comment, - [86849] = 6, + [86857] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1460), 1, - anon_sym_RPAREN, - ACTIONS(5437), 1, - anon_sym_COMMA, - STATE(2879), 1, - aux_sym_parameters_repeat1, STATE(2977), 2, sym_line_comment, sym_block_comment, - [86869] = 6, + ACTIONS(6364), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [86873] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6355), 1, - anon_sym_SEMI, - STATE(1327), 1, - sym_declaration_list, STATE(2978), 2, sym_line_comment, sym_block_comment, + ACTIONS(4758), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, [86889] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6357), 1, - anon_sym_SEMI, - STATE(1286), 1, - sym_declaration_list, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6366), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, STATE(2979), 2, sym_line_comment, sym_block_comment, @@ -179270,64 +179292,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(6359), 1, + ACTIONS(6368), 1, anon_sym_SEMI, - STATE(575), 1, + STATE(1093), 1, sym_declaration_list, STATE(2980), 2, sym_line_comment, sym_block_comment, - [86929] = 5, + [86929] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6361), 1, + ACTIONS(5528), 1, anon_sym_RPAREN, - ACTIONS(6363), 1, + ACTIONS(5530), 1, anon_sym_COMMA, - STATE(2981), 3, + STATE(2822), 1, + aux_sym_parameters_repeat1, + STATE(2981), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_type_repeat1, - [86947] = 5, + [86949] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6361), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(6370), 1, + anon_sym_SEMI, + STATE(1095), 1, + sym_declaration_list, STATE(2982), 2, sym_line_comment, sym_block_comment, - [86965] = 6, + [86969] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5153), 1, - anon_sym_RBRACE, - ACTIONS(6366), 1, - anon_sym_COMMA, - STATE(2883), 1, - aux_sym_struct_pattern_repeat1, STATE(2983), 2, sym_line_comment, sym_block_comment, + ACTIONS(4860), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, [86985] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6368), 1, - anon_sym_SEMI, - STATE(1240), 1, - sym_declaration_list, + ACTIONS(1598), 1, + anon_sym_GT, + ACTIONS(6372), 1, + anon_sym_COMMA, + STATE(2747), 1, + aux_sym_type_arguments_repeat1, STATE(2984), 2, sym_line_comment, sym_block_comment, @@ -179336,12 +179358,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6370), 1, - anon_sym_SEMI, - STATE(1135), 1, - sym_declaration_list, + ACTIONS(3051), 1, + anon_sym_PLUS, + ACTIONS(6374), 1, + sym_mutable_specifier, + ACTIONS(6376), 1, + sym_self, STATE(2985), 2, sym_line_comment, sym_block_comment, @@ -179350,412 +179372,408 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3009), 1, - anon_sym_RPAREN, - ACTIONS(6372), 1, - anon_sym_COMMA, - STATE(2539), 1, - aux_sym_slice_pattern_repeat1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6378), 1, + anon_sym_SEMI, + ACTIONS(6380), 1, + anon_sym_EQ, STATE(2986), 2, sym_line_comment, sym_block_comment, - [87045] = 6, + [87045] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5169), 1, - anon_sym_RBRACE, - ACTIONS(6374), 1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6382), 2, + anon_sym_RPAREN, anon_sym_COMMA, - STATE(2883), 1, - aux_sym_struct_pattern_repeat1, STATE(2987), 2, sym_line_comment, sym_block_comment, - [87065] = 5, + [87063] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6378), 1, - anon_sym_COLON, - ACTIONS(6376), 2, - anon_sym_RBRACE, - anon_sym_COMMA, STATE(2988), 2, sym_line_comment, sym_block_comment, - [87083] = 6, + ACTIONS(6384), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87079] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6380), 1, - anon_sym_SEMI, - ACTIONS(6382), 1, - anon_sym_EQ, + ACTIONS(2945), 1, + anon_sym_RPAREN, + ACTIONS(6386), 1, + anon_sym_COMMA, + STATE(2938), 1, + aux_sym_tuple_pattern_repeat1, STATE(2989), 2, sym_line_comment, sym_block_comment, - [87103] = 6, + [87099] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - ACTIONS(4943), 1, - anon_sym_COLON_COLON, - STATE(1068), 1, - sym_type_arguments, STATE(2990), 2, sym_line_comment, sym_block_comment, - [87123] = 6, + ACTIONS(4760), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87115] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6384), 1, - anon_sym_SEMI, - ACTIONS(6386), 1, - anon_sym_EQ, + ACTIONS(1598), 1, + anon_sym_GT, + ACTIONS(6372), 1, + anon_sym_COMMA, + STATE(2749), 1, + aux_sym_type_arguments_repeat1, STATE(2991), 2, sym_line_comment, sym_block_comment, - [87143] = 6, + [87135] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4951), 1, + ACTIONS(4959), 1, anon_sym_RBRACE, ACTIONS(6388), 1, anon_sym_COMMA, - STATE(2849), 1, + STATE(2931), 1, aux_sym_field_declaration_list_repeat1, STATE(2992), 2, sym_line_comment, sym_block_comment, - [87163] = 6, + [87155] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3027), 1, - anon_sym_RPAREN, + ACTIONS(4949), 1, + anon_sym_RBRACE, ACTIONS(6390), 1, anon_sym_COMMA, - STATE(2539), 1, - aux_sym_slice_pattern_repeat1, + STATE(2931), 1, + aux_sym_field_declaration_list_repeat1, STATE(2993), 2, sym_line_comment, sym_block_comment, - [87183] = 6, + [87175] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1600), 1, - anon_sym_GT, - ACTIONS(6392), 1, + ACTIONS(4959), 1, + anon_sym_RBRACE, + ACTIONS(6388), 1, anon_sym_COMMA, - STATE(2893), 1, - aux_sym_type_arguments_repeat1, + STATE(2943), 1, + aux_sym_field_declaration_list_repeat1, STATE(2994), 2, sym_line_comment, sym_block_comment, - [87203] = 6, + [87195] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6394), 1, - anon_sym_SEMI, - ACTIONS(6396), 1, - anon_sym_RBRACK, STATE(2995), 2, sym_line_comment, sym_block_comment, - [87223] = 5, + ACTIONS(4752), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87211] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6398), 1, - anon_sym_RPAREN, - ACTIONS(6400), 1, + ACTIONS(6392), 1, + anon_sym_GT, + ACTIONS(6394), 1, anon_sym_COMMA, - STATE(2996), 3, + STATE(2941), 1, + aux_sym_for_lifetimes_repeat1, + STATE(2996), 2, sym_line_comment, sym_block_comment, - aux_sym_tuple_pattern_repeat1, - [87241] = 6, + [87231] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6403), 1, - anon_sym_RBRACE, - ACTIONS(6405), 1, - anon_sym_COMMA, - STATE(2732), 1, - aux_sym_field_declaration_list_repeat1, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6396), 1, + anon_sym_SEMI, + ACTIONS(6398), 1, + anon_sym_RBRACK, STATE(2997), 2, sym_line_comment, sym_block_comment, - [87261] = 5, + [87251] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6398), 2, - anon_sym_RPAREN, - anon_sym_COMMA, STATE(2998), 2, sym_line_comment, sym_block_comment, - [87279] = 6, + ACTIONS(4768), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87267] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1001), 1, - anon_sym_RBRACK, - ACTIONS(6407), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_arguments_repeat1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6400), 1, + anon_sym_SEMI, + STATE(629), 1, + sym_declaration_list, STATE(2999), 2, sym_line_comment, sym_block_comment, - [87299] = 6, + [87287] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1600), 1, - anon_sym_GT, - ACTIONS(6392), 1, - anon_sym_COMMA, - STATE(2891), 1, - aux_sym_type_arguments_repeat1, STATE(3000), 2, sym_line_comment, sym_block_comment, - [87319] = 6, + ACTIONS(6402), 3, + anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_COMMA, + [87303] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(6409), 1, - anon_sym_SEMI, - STATE(3556), 1, - sym_where_clause, + ACTIONS(5436), 1, + anon_sym_COMMA, + ACTIONS(6404), 1, + anon_sym_PIPE, + STATE(2924), 1, + aux_sym_closure_parameters_repeat1, STATE(3001), 2, sym_line_comment, sym_block_comment, - [87339] = 6, + [87323] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(1005), 1, - anon_sym_RPAREN, - ACTIONS(4111), 1, - anon_sym_COMMA, - STATE(2680), 1, - aux_sym_arguments_repeat1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6406), 1, + anon_sym_SEMI, + STATE(3371), 1, + sym_where_clause, STATE(3002), 2, sym_line_comment, sym_block_comment, - [87359] = 6, + [87343] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(6411), 1, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6408), 1, anon_sym_SEMI, - STATE(3429), 1, - sym_where_clause, + STATE(667), 1, + sym_declaration_list, STATE(3003), 2, sym_line_comment, sym_block_comment, - [87379] = 6, + [87363] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6413), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, + ACTIONS(1005), 1, + anon_sym_RPAREN, + ACTIONS(4067), 1, + anon_sym_COMMA, + STATE(2589), 1, + aux_sym_arguments_repeat1, STATE(3004), 2, sym_line_comment, sym_block_comment, - [87399] = 6, - ACTIONS(27), 1, - anon_sym_PIPE, + [87383] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6415), 1, - anon_sym_move, - STATE(222), 1, - sym_closure_parameters, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6410), 1, + anon_sym_SEMI, + STATE(753), 1, + sym_declaration_list, STATE(3005), 2, sym_line_comment, sym_block_comment, - [87419] = 6, + [87403] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(6417), 1, - anon_sym_SEMI, - STATE(3392), 1, - sym_where_clause, + ACTIONS(6412), 1, + sym_identifier, + ACTIONS(6414), 2, + anon_sym_default, + anon_sym_union, STATE(3006), 2, sym_line_comment, sym_block_comment, - [87439] = 6, + [87421] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(6419), 1, - anon_sym_SEMI, - STATE(3603), 1, - sym_where_clause, + ACTIONS(3021), 1, + anon_sym_RBRACK, + ACTIONS(6416), 1, + anon_sym_COMMA, + STATE(2680), 1, + aux_sym_slice_pattern_repeat1, STATE(3007), 2, sym_line_comment, sym_block_comment, - [87459] = 5, + [87441] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6423), 1, - anon_sym_COLON, - ACTIONS(6421), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6418), 1, + sym_identifier, + ACTIONS(6420), 2, + anon_sym_default, + anon_sym_union, STATE(3008), 2, sym_line_comment, sym_block_comment, - [87477] = 6, + [87459] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4816), 1, - anon_sym_RBRACE, - ACTIONS(6425), 1, - anon_sym_COMMA, - STATE(2910), 1, - aux_sym_field_initializer_list_repeat1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6422), 1, + anon_sym_SEMI, + STATE(3327), 1, + sym_where_clause, STATE(3009), 2, sym_line_comment, sym_block_comment, - [87497] = 4, + [87479] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4878), 1, + anon_sym_LBRACE, + ACTIONS(6424), 1, + anon_sym_SEMI, + STATE(554), 1, + sym_declaration_list, STATE(3010), 2, sym_line_comment, sym_block_comment, - ACTIONS(6427), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87513] = 4, + [87499] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4644), 1, + anon_sym_GT, + ACTIONS(5371), 1, + anon_sym_COMMA, + STATE(2873), 1, + aux_sym_type_parameters_repeat1, STATE(3011), 2, sym_line_comment, sym_block_comment, - ACTIONS(6429), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87529] = 6, + [87519] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6431), 1, - anon_sym_SEMI, - STATE(1358), 1, - sym_declaration_list, + ACTIONS(6426), 1, + anon_sym_RBRACE, + ACTIONS(6428), 1, + anon_sym_COMMA, + STATE(2771), 1, + aux_sym_enum_variant_list_repeat2, STATE(3012), 2, sym_line_comment, sym_block_comment, - [87549] = 6, + [87539] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6433), 1, - anon_sym_SEMI, - STATE(1362), 1, - sym_declaration_list, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(4961), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, STATE(3013), 2, sym_line_comment, sym_block_comment, - [87569] = 6, + [87559] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6435), 1, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6430), 2, anon_sym_RBRACE, - ACTIONS(6437), 1, anon_sym_COMMA, - STATE(3032), 1, - aux_sym_use_list_repeat1, STATE(3014), 2, sym_line_comment, sym_block_comment, - [87589] = 4, + [87577] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6432), 1, + anon_sym_SEMI, + ACTIONS(6434), 1, + anon_sym_EQ, STATE(3015), 2, sym_line_comment, sym_block_comment, - ACTIONS(6439), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87605] = 4, + [87597] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -179763,305 +179781,309 @@ static const uint16_t ts_small_parse_table[] = { STATE(3016), 2, sym_line_comment, sym_block_comment, - ACTIONS(6441), 3, + ACTIONS(6436), 3, anon_sym_SEMI, anon_sym_RBRACE, anon_sym_COMMA, - [87621] = 6, + [87613] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4897), 1, - anon_sym_where, - ACTIONS(6443), 1, - anon_sym_SEMI, - STATE(3426), 1, - sym_where_clause, + ACTIONS(4872), 1, + anon_sym_LT, + ACTIONS(6438), 1, + anon_sym_EQ, + STATE(3572), 1, + sym_type_parameters, STATE(3017), 2, sym_line_comment, sym_block_comment, - [87641] = 4, + [87633] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6440), 1, + anon_sym_SEMI, + ACTIONS(6442), 1, + anon_sym_EQ, STATE(3018), 2, sym_line_comment, sym_block_comment, - ACTIONS(6445), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87657] = 6, + [87653] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6447), 1, - anon_sym_SEMI, - STATE(1443), 1, - sym_declaration_list, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6444), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, STATE(3019), 2, sym_line_comment, sym_block_comment, - [87677] = 6, + [87673] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6449), 1, - anon_sym_SEMI, - STATE(1438), 1, - sym_declaration_list, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(4582), 1, + anon_sym_COLON, + STATE(2604), 1, + sym_trait_bounds, STATE(3020), 2, sym_line_comment, sym_block_comment, - [87697] = 4, + [87693] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6446), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, STATE(3021), 2, sym_line_comment, sym_block_comment, - ACTIONS(6451), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, [87713] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6453), 1, - anon_sym_SEMI, - ACTIONS(6455), 1, - anon_sym_EQ, + ACTIONS(6448), 1, + anon_sym_RBRACE, + ACTIONS(6450), 1, + anon_sym_COMMA, + STATE(2859), 1, + aux_sym_struct_pattern_repeat1, STATE(3022), 2, sym_line_comment, sym_block_comment, - [87733] = 4, + [87733] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(6452), 1, + anon_sym_SEMI, + STATE(1135), 1, + sym_declaration_list, STATE(3023), 2, sym_line_comment, sym_block_comment, - ACTIONS(6457), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87749] = 6, + [87753] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4449), 1, - anon_sym_LT2, - ACTIONS(6459), 1, - anon_sym_for, - STATE(1935), 1, - sym_type_arguments, + ACTIONS(4915), 1, + anon_sym_LBRACE, + ACTIONS(6454), 1, + anon_sym_SEMI, + STATE(1137), 1, + sym_declaration_list, STATE(3024), 2, sym_line_comment, sym_block_comment, - [87769] = 6, + [87773] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - ACTIONS(6461), 1, - anon_sym_SEMI, - STATE(683), 1, - sym_declaration_list, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6456), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, STATE(3025), 2, sym_line_comment, sym_block_comment, - [87789] = 6, + [87793] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6463), 1, - anon_sym_SEMI, - STATE(1420), 1, - sym_declaration_list, - STATE(3026), 2, + ACTIONS(6458), 1, + anon_sym_RBRACE, + ACTIONS(6460), 1, + anon_sym_COMMA, + STATE(3026), 3, sym_line_comment, sym_block_comment, - [87809] = 6, + aux_sym_field_initializer_list_repeat1, + [87811] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6465), 1, - anon_sym_SEMI, - STATE(1416), 1, - sym_declaration_list, + ACTIONS(5436), 1, + anon_sym_COMMA, + ACTIONS(6463), 1, + anon_sym_PIPE, + STATE(3001), 1, + aux_sym_closure_parameters_repeat1, STATE(3027), 2, sym_line_comment, sym_block_comment, - [87829] = 4, + [87831] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(6465), 1, + sym_identifier, + ACTIONS(6467), 1, + anon_sym_ref, + ACTIONS(6469), 1, + sym_mutable_specifier, STATE(3028), 2, sym_line_comment, sym_block_comment, - ACTIONS(6467), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87845] = 4, + [87851] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, + ACTIONS(4449), 1, + anon_sym_LT2, + ACTIONS(6471), 1, + anon_sym_for, + STATE(1933), 1, + sym_type_arguments, STATE(3029), 2, sym_line_comment, sym_block_comment, - ACTIONS(6469), 3, - anon_sym_SEMI, - anon_sym_RBRACE, - anon_sym_COMMA, - [87861] = 6, + [87871] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - ACTIONS(6471), 1, + ACTIONS(6473), 1, anon_sym_SEMI, - STATE(1391), 1, + STATE(1184), 1, sym_declaration_list, STATE(3030), 2, sym_line_comment, sym_block_comment, - [87881] = 6, + [87891] = 6, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - ACTIONS(6473), 1, + ACTIONS(4874), 1, + anon_sym_where, + ACTIONS(6475), 1, anon_sym_SEMI, - STATE(1385), 1, - sym_declaration_list, + STATE(3556), 1, + sym_where_clause, STATE(3031), 2, sym_line_comment, sym_block_comment, - [87901] = 6, + [87911] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4345), 1, - anon_sym_RBRACE, - ACTIONS(6475), 1, - anon_sym_COMMA, - STATE(2912), 1, - aux_sym_use_list_repeat1, STATE(3032), 2, sym_line_comment, sym_block_comment, - [87921] = 5, + ACTIONS(4822), 3, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_if, + [87927] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4919), 1, - anon_sym_LBRACE, - STATE(1102), 1, - sym_field_declaration_list, + ACTIONS(6477), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3033), 2, sym_line_comment, sym_block_comment, - [87938] = 5, + [87942] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4919), 1, - anon_sym_LBRACE, - STATE(1212), 1, - sym_field_declaration_list, + ACTIONS(6479), 1, + anon_sym_SEMI, + ACTIONS(6481), 1, + anon_sym_as, STATE(3034), 2, sym_line_comment, sym_block_comment, - [87955] = 5, + [87959] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4919), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - STATE(1202), 1, - sym_field_declaration_list, + STATE(1162), 1, + sym_declaration_list, STATE(3035), 2, sym_line_comment, sym_block_comment, - [87972] = 5, + [87976] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5686), 1, - sym_super, - ACTIONS(6477), 1, + ACTIONS(6483), 2, sym_identifier, + sym_metavariable, STATE(3036), 2, sym_line_comment, sym_block_comment, - [87989] = 5, + [87991] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1373), 1, - sym_declaration_list, + ACTIONS(5546), 1, + sym_super, + ACTIONS(6485), 1, + sym_identifier, STATE(3037), 2, sym_line_comment, sym_block_comment, - [88006] = 5, + [88008] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(6459), 1, - anon_sym_for, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(527), 1, + sym_declaration_list, STATE(3038), 2, sym_line_comment, sym_block_comment, - [88023] = 5, + [88025] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - STATE(658), 1, - sym_field_declaration_list, + ACTIONS(6487), 2, + sym_identifier, + sym_super, STATE(3039), 2, sym_line_comment, sym_block_comment, @@ -180070,33 +180092,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6479), 1, - anon_sym_LBRACK, - ACTIONS(6481), 1, - anon_sym_BANG, + ACTIONS(5546), 1, + sym_super, + ACTIONS(6489), 1, + sym_identifier, STATE(3040), 2, sym_line_comment, sym_block_comment, - [88057] = 5, + [88057] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6483), 1, - sym_identifier, - ACTIONS(6485), 1, - sym_mutable_specifier, + ACTIONS(6491), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3041), 2, sym_line_comment, sym_block_comment, - [88074] = 4, + [88072] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6487), 2, + ACTIONS(6493), 1, sym_identifier, - sym_metavariable, + ACTIONS(6495), 1, + sym_super, STATE(3042), 2, sym_line_comment, sym_block_comment, @@ -180105,22 +180127,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1208), 1, - sym_declaration_list, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(6145), 1, + anon_sym_for, STATE(3043), 2, sym_line_comment, sym_block_comment, [88106] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5894), 1, - sym_identifier, - ACTIONS(5898), 1, - sym_mutable_specifier, + STATE(217), 1, + sym_closure_parameters, STATE(3044), 2, sym_line_comment, sym_block_comment, @@ -180129,10 +180151,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5163), 1, - anon_sym_RBRACE, - ACTIONS(6489), 1, + ACTIONS(6497), 1, anon_sym_SEMI, + ACTIONS(6499), 1, + anon_sym_as, STATE(3045), 2, sym_line_comment, sym_block_comment, @@ -180141,10 +180163,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(5281), 1, anon_sym_LBRACE, - STATE(617), 1, - sym_declaration_list, + STATE(707), 1, + sym_enum_variant_list, STATE(3046), 2, sym_line_comment, sym_block_comment, @@ -180153,10 +180175,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6491), 1, - anon_sym_in, + ACTIONS(5143), 1, + anon_sym_RBRACE, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3047), 2, sym_line_comment, sym_block_comment, @@ -180165,1983 +180187,1983 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6493), 1, - anon_sym_in, + ACTIONS(3579), 1, + anon_sym_COLON, + ACTIONS(5241), 1, + anon_sym_PLUS, STATE(3048), 2, sym_line_comment, sym_block_comment, - [88191] = 5, + [88191] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(611), 1, - sym_declaration_list, + ACTIONS(5703), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3049), 2, sym_line_comment, sym_block_comment, - [88208] = 5, + [88206] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5533), 1, - sym_super, - ACTIONS(6495), 1, + ACTIONS(6503), 1, sym_identifier, + ACTIONS(6505), 1, + sym_super, STATE(3050), 2, sym_line_comment, sym_block_comment, - [88225] = 5, + [88223] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - STATE(643), 1, - sym_field_declaration_list, + ACTIONS(5866), 1, + sym_super, + ACTIONS(6507), 1, + sym_identifier, STATE(3051), 2, sym_line_comment, sym_block_comment, - [88242] = 5, + [88240] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2207), 1, - sym_parameters, + STATE(228), 1, + sym_closure_parameters, STATE(3052), 2, sym_line_comment, sym_block_comment, - [88259] = 5, + [88257] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6497), 1, - anon_sym_in, + ACTIONS(5145), 1, + anon_sym_RBRACE, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3053), 2, sym_line_comment, sym_block_comment, - [88276] = 5, + [88274] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6499), 1, - sym_identifier, - ACTIONS(6501), 1, - sym_super, + ACTIONS(3939), 1, + anon_sym_LPAREN, + STATE(1594), 1, + sym_parameters, STATE(3054), 2, sym_line_comment, sym_block_comment, - [88293] = 5, + [88291] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6503), 1, - anon_sym_in, + ACTIONS(6509), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3055), 2, sym_line_comment, sym_block_comment, - [88310] = 5, + [88306] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5247), 1, - anon_sym_LBRACE, - STATE(729), 1, - sym_enum_variant_list, + ACTIONS(6511), 1, + anon_sym_LT, + STATE(1084), 1, + sym_type_parameters, STATE(3056), 2, sym_line_comment, sym_block_comment, - [88327] = 5, + [88323] = 5, ACTIONS(27), 1, anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(222), 1, + STATE(225), 1, sym_closure_parameters, STATE(3057), 2, sym_line_comment, sym_block_comment, - [88344] = 5, + [88340] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6505), 1, - anon_sym_LBRACK, - ACTIONS(6507), 1, - anon_sym_BANG, + ACTIONS(5991), 1, + sym_identifier, + ACTIONS(5995), 1, + sym_mutable_specifier, STATE(3058), 2, sym_line_comment, sym_block_comment, - [88361] = 5, + [88357] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - STATE(602), 1, - sym_field_declaration_list, + ACTIONS(3587), 1, + anon_sym_COLON, + ACTIONS(5241), 1, + anon_sym_PLUS, STATE(3059), 2, sym_line_comment, sym_block_comment, - [88378] = 4, + [88374] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 2, - sym_identifier, - sym_super, + ACTIONS(4870), 1, + anon_sym_LBRACE, + STATE(747), 1, + sym_field_declaration_list, STATE(3060), 2, sym_line_comment, sym_block_comment, - [88393] = 5, + [88391] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - STATE(741), 1, - sym_field_declaration_list, + ACTIONS(3591), 1, + anon_sym_COLON, + ACTIONS(5241), 1, + anon_sym_PLUS, STATE(3061), 2, sym_line_comment, sym_block_comment, - [88410] = 5, + [88408] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(5900), 1, - anon_sym_for, + ACTIONS(5722), 1, + sym_identifier, + ACTIONS(5724), 1, + sym_super, STATE(3062), 2, sym_line_comment, sym_block_comment, - [88427] = 5, + [88425] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1441), 1, - sym_declaration_list, + ACTIONS(5641), 2, + sym_identifier, + sym_super, STATE(3063), 2, sym_line_comment, sym_block_comment, - [88444] = 5, + [88440] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1435), 1, - sym_declaration_list, + ACTIONS(6513), 1, + sym_identifier, + ACTIONS(6515), 1, + sym_super, STATE(3064), 2, sym_line_comment, sym_block_comment, - [88461] = 5, + [88457] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6511), 1, - anon_sym_SEMI, - ACTIONS(6513), 1, - anon_sym_as, + ACTIONS(6267), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3065), 2, sym_line_comment, sym_block_comment, - [88478] = 5, + [88472] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6515), 1, - anon_sym_SEMI, + ACTIONS(6489), 1, + sym_identifier, ACTIONS(6517), 1, - anon_sym_as, + sym_super, STATE(3066), 2, sym_line_comment, sym_block_comment, - [88495] = 5, + [88489] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6519), 1, - sym_identifier, - ACTIONS(6521), 1, + ACTIONS(5103), 1, sym_super, + ACTIONS(5602), 1, + sym_identifier, STATE(3067), 2, sym_line_comment, sym_block_comment, - [88512] = 5, + [88506] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5686), 1, - sym_super, - ACTIONS(6523), 1, + ACTIONS(6519), 1, sym_identifier, + ACTIONS(6521), 1, + sym_super, STATE(3068), 2, sym_line_comment, sym_block_comment, - [88529] = 5, + [88523] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6525), 1, - anon_sym_in, + ACTIONS(3637), 1, + anon_sym_COLON, + ACTIONS(5241), 1, + anon_sym_PLUS, STATE(3069), 2, sym_line_comment, sym_block_comment, - [88546] = 4, + [88540] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6527), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(6511), 1, + anon_sym_LT, + STATE(865), 1, + sym_type_parameters, STATE(3070), 2, sym_line_comment, sym_block_comment, - [88561] = 5, + [88557] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(566), 1, - sym_declaration_list, + ACTIONS(3939), 1, + anon_sym_LPAREN, + STATE(1622), 1, + sym_parameters, STATE(3071), 2, sym_line_comment, sym_block_comment, - [88578] = 5, + [88574] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3591), 1, - anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_PLUS, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5651), 1, + sym_identifier, STATE(3072), 2, sym_line_comment, sym_block_comment, - [88595] = 5, + [88591] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6529), 1, - anon_sym_in, + ACTIONS(6248), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3073), 2, sym_line_comment, sym_block_comment, - [88612] = 5, + [88606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - STATE(1615), 1, - sym_parameters, + ACTIONS(5147), 1, + anon_sym_RPAREN, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3074), 2, sym_line_comment, sym_block_comment, - [88629] = 5, + [88623] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6531), 1, - sym_identifier, - ACTIONS(6533), 1, - sym_mutable_specifier, + ACTIONS(2969), 1, + anon_sym_SQUOTE, + STATE(3196), 1, + sym_lifetime, STATE(3075), 2, sym_line_comment, sym_block_comment, - [88646] = 5, + [88640] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(5910), 1, - anon_sym_for, + ACTIONS(6523), 2, + sym__block_comment_content, + anon_sym_STAR_SLASH, STATE(3076), 2, sym_line_comment, sym_block_comment, - [88663] = 5, + [88655] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - STATE(539), 1, - sym_field_declaration_list, + ACTIONS(6525), 2, + sym_identifier, + sym_super, STATE(3077), 2, sym_line_comment, sym_block_comment, - [88680] = 5, + [88670] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(5914), 1, - anon_sym_for, + ACTIONS(6273), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3078), 2, sym_line_comment, sym_block_comment, - [88697] = 4, + [88685] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6535), 2, + ACTIONS(5866), 1, + sym_super, + ACTIONS(6527), 1, sym_identifier, - sym_metavariable, STATE(3079), 2, sym_line_comment, sym_block_comment, - [88712] = 5, + [88702] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6537), 1, - anon_sym_EQ, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(580), 1, + sym_declaration_list, STATE(3080), 2, sym_line_comment, sym_block_comment, - [88729] = 5, + [88719] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6539), 1, - anon_sym_RPAREN, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1085), 1, + sym_parameters, STATE(3081), 2, sym_line_comment, sym_block_comment, - [88746] = 5, + [88736] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - STATE(753), 1, - sym_field_declaration_list, + ACTIONS(6529), 2, + sym_identifier, + sym_super, STATE(3082), 2, sym_line_comment, sym_block_comment, - [88763] = 5, + [88751] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6539), 1, - anon_sym_RBRACK, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2219), 1, + sym_parameters, STATE(3083), 2, sym_line_comment, sym_block_comment, - [88780] = 5, + [88768] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5225), 1, - anon_sym_LBRACE, - STATE(1233), 1, - sym_enum_variant_list, + ACTIONS(6531), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3084), 2, sym_line_comment, sym_block_comment, - [88797] = 4, + [88783] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5686), 2, - sym_identifier, - sym_super, + ACTIONS(3939), 1, + anon_sym_LPAREN, + STATE(1598), 1, + sym_parameters, STATE(3085), 2, sym_line_comment, sym_block_comment, - [88812] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [88800] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(221), 1, - sym_closure_parameters, + ACTIONS(6487), 1, + sym_super, + ACTIONS(6533), 1, + sym_identifier, STATE(3086), 2, sym_line_comment, sym_block_comment, - [88829] = 5, + [88817] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6541), 1, - anon_sym_RBRACE, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(581), 1, + sym_declaration_list, STATE(3087), 2, sym_line_comment, sym_block_comment, - [88846] = 4, + [88834] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5533), 2, - sym_identifier, - sym_super, + ACTIONS(5610), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3088), 2, sym_line_comment, sym_block_comment, - [88861] = 5, + [88849] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(4941), 1, - anon_sym_for, + ACTIONS(5679), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3089), 2, sym_line_comment, sym_block_comment, - [88878] = 5, + [88864] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5209), 1, - anon_sym_RBRACE, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(5235), 1, + anon_sym_LBRACE, + STATE(1314), 1, + sym_enum_variant_list, STATE(3090), 2, sym_line_comment, sym_block_comment, - [88895] = 5, + [88881] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6543), 1, - anon_sym_RBRACK, + ACTIONS(6535), 1, + anon_sym_RPAREN, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, STATE(3091), 2, sym_line_comment, sym_block_comment, - [88912] = 5, + [88898] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5624), 1, - sym_identifier, - ACTIONS(5626), 1, + ACTIONS(5866), 1, sym_super, + ACTIONS(6539), 1, + sym_identifier, STATE(3092), 2, sym_line_comment, sym_block_comment, - [88929] = 4, + [88915] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 2, - sym_identifier, - sym_super, + ACTIONS(6535), 1, + anon_sym_RPAREN, + ACTIONS(6541), 1, + anon_sym_COLON_COLON, STATE(3093), 2, sym_line_comment, sym_block_comment, - [88944] = 5, + [88932] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6545), 1, - sym_identifier, - ACTIONS(6547), 1, - sym_super, + STATE(224), 1, + sym_closure_parameters, STATE(3094), 2, sym_line_comment, sym_block_comment, - [88961] = 5, + [88949] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6549), 1, - anon_sym_RBRACE, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(6366), 1, + anon_sym_for, STATE(3095), 2, sym_line_comment, sym_block_comment, - [88978] = 4, + [88966] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6551), 2, + ACTIONS(5546), 1, + sym_super, + ACTIONS(6543), 1, sym_identifier, - sym_metavariable, STATE(3096), 2, sym_line_comment, sym_block_comment, - [88993] = 5, + [88983] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6495), 1, - sym_identifier, - ACTIONS(6553), 1, - sym_super, + ACTIONS(4870), 1, + anon_sym_LBRACE, + STATE(750), 1, + sym_field_declaration_list, STATE(3097), 2, sym_line_comment, sym_block_comment, - [89010] = 4, + [89000] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6398), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + STATE(231), 1, + sym_closure_parameters, STATE(3098), 2, sym_line_comment, sym_block_comment, - [89025] = 5, + [89017] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5628), 1, - sym_identifier, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(512), 1, + sym_declaration_list, STATE(3099), 2, sym_line_comment, sym_block_comment, - [89042] = 5, + [89034] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5203), 1, - anon_sym_RBRACE, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(3969), 1, + anon_sym_LBRACE, + STATE(1651), 1, + sym_field_initializer_list, STATE(3100), 2, sym_line_comment, sym_block_comment, - [89059] = 5, + [89051] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6555), 1, - sym_identifier, - ACTIONS(6557), 1, - sym_super, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(1960), 1, + sym_parameters, STATE(3101), 2, sym_line_comment, sym_block_comment, - [89076] = 5, + [89068] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1285), 1, - sym_declaration_list, + ACTIONS(5866), 1, + sym_super, + ACTIONS(6533), 1, + sym_identifier, STATE(3102), 2, sym_line_comment, sym_block_comment, - [89093] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [89085] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(220), 1, - sym_closure_parameters, + ACTIONS(6545), 1, + anon_sym_RPAREN, + ACTIONS(6547), 1, + anon_sym_COLON_COLON, STATE(3103), 2, sym_line_comment, sym_block_comment, - [89110] = 5, + [89102] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6559), 1, - anon_sym_in, + ACTIONS(6537), 1, + anon_sym_COLON_COLON, + ACTIONS(6549), 1, + anon_sym_RPAREN, STATE(3104), 2, sym_line_comment, sym_block_comment, - [89127] = 4, + [89119] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 2, - sym_identifier, - sym_super, + STATE(232), 1, + sym_closure_parameters, STATE(3105), 2, sym_line_comment, sym_block_comment, - [89142] = 4, + [89136] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3843), 2, - anon_sym_LPAREN, + ACTIONS(6541), 1, anon_sym_COLON_COLON, + ACTIONS(6549), 1, + anon_sym_RPAREN, STATE(3106), 2, sym_line_comment, sym_block_comment, - [89157] = 4, + [89153] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6563), 2, - sym_identifier, - sym_metavariable, + ACTIONS(6549), 1, + anon_sym_RPAREN, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, STATE(3107), 2, sym_line_comment, sym_block_comment, - [89172] = 5, + [89170] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6565), 1, - anon_sym_LBRACK, - ACTIONS(6567), 1, + ACTIONS(4607), 1, anon_sym_BANG, + ACTIONS(4694), 1, + anon_sym_COLON_COLON, STATE(3108), 2, sym_line_comment, sym_block_comment, - [89189] = 5, + [89187] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6569), 1, - anon_sym_LT, - STATE(995), 1, - sym_type_parameters, + ACTIONS(5724), 2, + sym_identifier, + sym_super, STATE(3109), 2, sym_line_comment, sym_block_comment, - [89206] = 5, + [89202] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - STATE(1632), 1, - sym_parameters, + ACTIONS(6517), 1, + sym_super, + ACTIONS(6553), 1, + sym_identifier, STATE(3110), 2, sym_line_comment, sym_block_comment, - [89223] = 5, + [89219] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1055), 1, - sym_parameters, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5651), 1, + sym_identifier, STATE(3111), 2, sym_line_comment, sym_block_comment, - [89240] = 5, + [89236] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_LPAREN, - ACTIONS(6573), 1, - anon_sym_COLON_COLON, + ACTIONS(6521), 1, + sym_super, + ACTIONS(6555), 1, + sym_identifier, STATE(3112), 2, sym_line_comment, sym_block_comment, - [89257] = 5, + [89253] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6569), 1, - anon_sym_LT, - STATE(964), 1, - sym_type_parameters, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6559), 1, + anon_sym_COLON_COLON, STATE(3113), 2, sym_line_comment, sym_block_comment, - [89274] = 5, + [89270] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_LPAREN, - ACTIONS(6575), 1, - anon_sym_COLON_COLON, + ACTIONS(4870), 1, + anon_sym_LBRACE, + STATE(684), 1, + sym_field_declaration_list, STATE(3114), 2, sym_line_comment, sym_block_comment, - [89291] = 4, + [89287] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5942), 2, - anon_sym_PIPE, - anon_sym_COMMA, + ACTIONS(4891), 1, + anon_sym_LBRACE, + STATE(1341), 1, + sym_field_declaration_list, STATE(3115), 2, sym_line_comment, sym_block_comment, - [89306] = 5, + [89304] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, - anon_sym_RPAREN, - ACTIONS(6579), 1, - anon_sym_COLON_COLON, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1342), 1, + sym_declaration_list, STATE(3116), 2, sym_line_comment, sym_block_comment, - [89323] = 5, + [89321] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6543), 1, - anon_sym_RPAREN, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1343), 1, + sym_declaration_list, STATE(3117), 2, sym_line_comment, sym_block_comment, - [89340] = 4, + [89338] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 2, - sym_identifier, - sym_super, + ACTIONS(6561), 1, + anon_sym_SEMI, + ACTIONS(6563), 1, + anon_sym_as, STATE(3118), 2, sym_line_comment, sym_block_comment, - [89355] = 4, + [89355] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 2, - sym_identifier, - sym_super, + ACTIONS(4891), 1, + anon_sym_LBRACE, + STATE(1349), 1, + sym_field_declaration_list, STATE(3119), 2, sym_line_comment, sym_block_comment, - [89370] = 5, + [89372] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, - anon_sym_RPAREN, - ACTIONS(6583), 1, - anon_sym_COLON_COLON, + ACTIONS(5759), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3120), 2, sym_line_comment, sym_block_comment, - [89387] = 4, + [89387] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6585), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6565), 1, + anon_sym_LBRACK, + ACTIONS(6567), 1, + anon_sym_BANG, STATE(3121), 2, sym_line_comment, sym_block_comment, - [89402] = 5, + [89404] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6587), 1, - anon_sym_RPAREN, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, + STATE(239), 1, + sym_closure_parameters, STATE(3122), 2, sym_line_comment, sym_block_comment, - [89419] = 5, + [89421] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3315), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - STATE(1469), 1, - sym_field_initializer_list, + STATE(1355), 1, + sym_declaration_list, STATE(3123), 2, sym_line_comment, sym_block_comment, - [89436] = 5, + [89438] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6591), 1, - anon_sym_SEMI, - ACTIONS(6593), 1, - anon_sym_as, + ACTIONS(5546), 1, + sym_super, + ACTIONS(6569), 1, + sym_identifier, STATE(3124), 2, sym_line_comment, sym_block_comment, - [89453] = 4, + [89455] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6595), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + ACTIONS(6487), 1, + sym_super, + ACTIONS(6571), 1, + sym_identifier, STATE(3125), 2, sym_line_comment, sym_block_comment, - [89468] = 4, + [89472] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5147), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(5546), 1, + sym_super, + ACTIONS(6573), 1, + sym_identifier, STATE(3126), 2, sym_line_comment, sym_block_comment, - [89483] = 4, + [89489] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6597), 2, - sym__block_comment_content, - anon_sym_STAR_SLASH, + STATE(241), 1, + sym_closure_parameters, STATE(3127), 2, sym_line_comment, sym_block_comment, - [89498] = 5, + [89506] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6569), 1, - anon_sym_LT, - STATE(1080), 1, - sym_type_parameters, + ACTIONS(4870), 1, + anon_sym_LBRACE, + STATE(675), 1, + sym_field_declaration_list, STATE(3128), 2, sym_line_comment, sym_block_comment, - [89515] = 5, + [89523] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 1, - sym_super, - ACTIONS(6555), 1, - sym_identifier, + ACTIONS(5235), 1, + anon_sym_LBRACE, + STATE(1360), 1, + sym_enum_variant_list, STATE(3129), 2, sym_line_comment, sym_block_comment, - [89532] = 5, + [89540] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6599), 1, - anon_sym_STAR_SLASH, - ACTIONS(6601), 1, - sym__block_comment_content, + ACTIONS(6529), 1, + sym_super, + ACTIONS(6575), 1, + sym_identifier, STATE(3130), 2, sym_line_comment, sym_block_comment, - [89549] = 5, + [89557] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6603), 1, - anon_sym_BANG, - ACTIONS(6605), 1, - anon_sym_COLON_COLON, + ACTIONS(6577), 2, + sym_float_literal, + sym_integer_literal, STATE(3131), 2, sym_line_comment, sym_block_comment, - [89566] = 5, + [89572] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3959), 1, - anon_sym_LPAREN, - STATE(1575), 1, - sym_parameters, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5769), 1, + sym_identifier, STATE(3132), 2, sym_line_comment, sym_block_comment, - [89583] = 5, + [89589] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6607), 1, - anon_sym_LPAREN, - ACTIONS(6609), 1, - anon_sym_COLON_COLON, + ACTIONS(6579), 1, + sym_identifier, + ACTIONS(6581), 1, + sym_super, STATE(3133), 2, sym_line_comment, sym_block_comment, - [89600] = 5, + [89606] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5533), 1, + ACTIONS(6487), 1, sym_super, - ACTIONS(6611), 1, + ACTIONS(6507), 1, sym_identifier, STATE(3134), 2, sym_line_comment, sym_block_comment, - [89617] = 5, + [89623] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(4965), 1, - anon_sym_for, + ACTIONS(5866), 2, + sym_identifier, + sym_super, STATE(3135), 2, sym_line_comment, sym_block_comment, - [89634] = 5, + [89638] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5628), 1, - sym_identifier, - ACTIONS(5726), 1, - sym_super, + ACTIONS(4891), 1, + anon_sym_LBRACE, + STATE(1363), 1, + sym_field_declaration_list, STATE(3136), 2, sym_line_comment, sym_block_comment, - [89651] = 5, + [89655] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6613), 1, - anon_sym_EQ, + ACTIONS(4891), 1, + anon_sym_LBRACE, + STATE(1370), 1, + sym_field_declaration_list, STATE(3137), 2, sym_line_comment, sym_block_comment, - [89668] = 5, + [89672] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - sym_super, - ACTIONS(6611), 1, - sym_identifier, + ACTIONS(6583), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3138), 2, sym_line_comment, sym_block_comment, - [89685] = 5, + [89687] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1047), 1, - sym_parameters, + ACTIONS(6585), 1, + anon_sym_SEMI, + ACTIONS(6587), 1, + anon_sym_as, STATE(3139), 2, sym_line_comment, sym_block_comment, - [89702] = 4, + [89704] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5690), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6589), 1, + sym_identifier, + ACTIONS(6591), 1, + sym_mutable_specifier, STATE(3140), 2, sym_line_comment, sym_block_comment, - [89717] = 5, + [89721] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3611), 1, - anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_PLUS, + ACTIONS(5147), 1, + anon_sym_RBRACK, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3141), 2, sym_line_comment, sym_block_comment, - [89734] = 4, + [89738] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6615), 2, - sym_identifier, + ACTIONS(6487), 1, sym_super, + ACTIONS(6593), 1, + sym_identifier, STATE(3142), 2, sym_line_comment, sym_block_comment, - [89749] = 5, + [89755] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2213), 1, - sym_parameters, + ACTIONS(6595), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3143), 2, sym_line_comment, sym_block_comment, - [89766] = 5, + [89770] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5533), 1, - sym_super, - ACTIONS(6617), 1, - sym_identifier, + ACTIONS(4870), 1, + anon_sym_LBRACE, + STATE(726), 1, + sym_field_declaration_list, STATE(3144), 2, sym_line_comment, sym_block_comment, - [89783] = 5, + [89787] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(6413), 1, - anon_sym_for, + ACTIONS(6517), 1, + sym_super, + ACTIONS(6597), 1, + sym_identifier, STATE(3145), 2, sym_line_comment, sym_block_comment, - [89800] = 5, + [89804] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1421), 1, - sym_declaration_list, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5779), 1, + sym_identifier, STATE(3146), 2, sym_line_comment, sym_block_comment, - [89817] = 5, + [89821] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5247), 1, - anon_sym_LBRACE, - STATE(736), 1, - sym_enum_variant_list, + ACTIONS(6581), 1, + sym_super, + ACTIONS(6599), 1, + sym_identifier, STATE(3147), 2, sym_line_comment, sym_block_comment, - [89834] = 5, + [89838] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4919), 1, - anon_sym_LBRACE, - STATE(1403), 1, - sym_field_declaration_list, + ACTIONS(5309), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3148), 2, sym_line_comment, sym_block_comment, - [89851] = 5, + [89853] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4919), 1, - anon_sym_LBRACE, - STATE(1401), 1, - sym_field_declaration_list, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1060), 1, + sym_parameters, STATE(3149), 2, sym_line_comment, sym_block_comment, - [89868] = 4, + [89870] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6619), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(5157), 1, + anon_sym_RBRACE, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3150), 2, sym_line_comment, sym_block_comment, - [89883] = 5, + [89887] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5191), 1, - anon_sym_RBRACE, - ACTIONS(6489), 1, + ACTIONS(6501), 1, anon_sym_SEMI, + ACTIONS(6601), 1, + anon_sym_RBRACE, STATE(3151), 2, sym_line_comment, sym_block_comment, - [89900] = 5, + [89904] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5225), 1, - anon_sym_LBRACE, - STATE(1393), 1, - sym_enum_variant_list, + ACTIONS(3251), 1, + anon_sym_LT2, + STATE(1183), 1, + sym_type_arguments, STATE(3152), 2, sym_line_comment, sym_block_comment, - [89917] = 5, + [89921] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6621), 1, - sym_identifier, - ACTIONS(6623), 1, - sym_super, + ACTIONS(4445), 1, + anon_sym_BANG, + ACTIONS(6603), 1, + anon_sym_COLON_COLON, STATE(3153), 2, sym_line_comment, sym_block_comment, - [89934] = 4, + [89938] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3813), 2, - anon_sym_LPAREN, - anon_sym_COLON_COLON, + ACTIONS(5281), 1, + anon_sym_LBRACE, + STATE(659), 1, + sym_enum_variant_list, STATE(3154), 2, sym_line_comment, sym_block_comment, - [89949] = 5, + [89955] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5247), 1, - anon_sym_LBRACE, - STATE(512), 1, - sym_enum_variant_list, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6605), 1, + anon_sym_RBRACE, STATE(3155), 2, sym_line_comment, sym_block_comment, - [89966] = 5, + [89972] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5177), 1, - anon_sym_RBRACK, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(4607), 1, + anon_sym_BANG, + ACTIONS(4668), 1, + anon_sym_COLON_COLON, STATE(3156), 2, sym_line_comment, sym_block_comment, - [89983] = 5, + [89989] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5225), 1, - anon_sym_LBRACE, - STATE(1158), 1, - sym_enum_variant_list, + ACTIONS(6607), 1, + sym_identifier, + ACTIONS(6609), 1, + sym_super, STATE(3157), 2, sym_line_comment, sym_block_comment, - [90000] = 5, + [90006] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1313), 1, - sym_declaration_list, + ACTIONS(6517), 1, + sym_super, + ACTIONS(6611), 1, + sym_identifier, STATE(3158), 2, sym_line_comment, sym_block_comment, - [90017] = 5, + [90023] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2191), 1, - sym_parameters, + ACTIONS(5281), 1, + anon_sym_LBRACE, + STATE(521), 1, + sym_enum_variant_list, STATE(3159), 2, sym_line_comment, sym_block_comment, - [90034] = 5, + [90040] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1308), 1, - sym_declaration_list, + ACTIONS(5641), 1, + sym_super, + ACTIONS(5787), 1, + sym_identifier, STATE(3160), 2, sym_line_comment, sym_block_comment, - [90051] = 5, + [90057] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3965), 1, - anon_sym_LT2, - STATE(1761), 1, - sym_type_arguments, + ACTIONS(6525), 1, + sym_super, + ACTIONS(6613), 1, + sym_identifier, STATE(3161), 2, sym_line_comment, sym_block_comment, - [90068] = 4, + [90074] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6623), 2, - sym_identifier, - sym_super, + ACTIONS(5159), 1, + anon_sym_RPAREN, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3162), 2, sym_line_comment, sym_block_comment, - [90083] = 4, + [90091] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6625), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2180), 1, + sym_parameters, STATE(3163), 2, sym_line_comment, sym_block_comment, - [90098] = 5, + [90108] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5533), 1, + ACTIONS(5866), 1, sym_super, - ACTIONS(6627), 1, + ACTIONS(6571), 1, sym_identifier, STATE(3164), 2, sym_line_comment, sym_block_comment, - [90115] = 5, + [90125] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5177), 1, - anon_sym_RPAREN, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(6517), 1, + sym_super, + ACTIONS(6543), 1, + sym_identifier, STATE(3165), 2, sym_line_comment, sym_block_comment, - [90132] = 5, + [90142] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1963), 1, - sym_parameters, + ACTIONS(3731), 1, + anon_sym_COLON, + ACTIONS(5241), 1, + anon_sym_PLUS, STATE(3166), 2, sym_line_comment, sym_block_comment, - [90149] = 5, + [90159] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, + ACTIONS(5103), 1, sym_super, - ACTIONS(6629), 1, + ACTIONS(5769), 1, sym_identifier, STATE(3167), 2, sym_line_comment, sym_block_comment, - [90166] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90176] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(239), 1, - sym_closure_parameters, + ACTIONS(6521), 1, + sym_super, + ACTIONS(6579), 1, + sym_identifier, STATE(3168), 2, sym_line_comment, sym_block_comment, - [90183] = 5, + [90193] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3663), 1, - anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_PLUS, + ACTIONS(5159), 1, + anon_sym_RBRACK, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3169), 2, sym_line_comment, sym_block_comment, - [90200] = 5, + [90210] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3667), 1, - anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_PLUS, + ACTIONS(6487), 1, + sym_super, + ACTIONS(6615), 1, + sym_identifier, STATE(3170), 2, sym_line_comment, sym_block_comment, - [90217] = 4, + [90227] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5726), 2, - sym_identifier, - sym_super, + STATE(236), 1, + sym_closure_parameters, STATE(3171), 2, sym_line_comment, sym_block_comment, - [90232] = 5, + [90244] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4977), 1, - anon_sym_COLON, - STATE(2565), 1, - sym_trait_bounds, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5789), 1, + sym_identifier, STATE(3172), 2, sym_line_comment, sym_block_comment, - [90249] = 5, + [90261] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5129), 1, + ACTIONS(6581), 1, sym_super, - ACTIONS(5795), 1, + ACTIONS(6617), 1, sym_identifier, STATE(3173), 2, sym_line_comment, sym_block_comment, - [90266] = 4, + [90278] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6631), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6555), 1, + sym_identifier, + ACTIONS(6581), 1, + sym_super, STATE(3174), 2, sym_line_comment, sym_block_comment, - [90281] = 5, + [90295] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1271), 1, - sym_declaration_list, + ACTIONS(6487), 1, + sym_super, + ACTIONS(6619), 1, + sym_identifier, STATE(3175), 2, sym_line_comment, sym_block_comment, - [90298] = 5, + [90312] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5686), 1, - sym_super, - ACTIONS(6621), 1, + ACTIONS(6521), 2, sym_identifier, + sym_super, STATE(3176), 2, sym_line_comment, sym_block_comment, - [90315] = 5, + [90327] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(689), 1, - sym_declaration_list, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5791), 1, + sym_identifier, STATE(3177), 2, sym_line_comment, sym_block_comment, - [90332] = 5, + [90344] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6633), 1, - anon_sym_RBRACK, + ACTIONS(6581), 1, + sym_super, + ACTIONS(6621), 1, + sym_identifier, STATE(3178), 2, sym_line_comment, sym_block_comment, - [90349] = 5, + [90361] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(684), 1, - sym_declaration_list, + ACTIONS(4181), 1, + anon_sym_EQ_GT, + ACTIONS(6623), 1, + anon_sym_AMP_AMP, STATE(3179), 2, sym_line_comment, sym_block_comment, - [90366] = 5, + [90378] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6633), 1, - anon_sym_RPAREN, + ACTIONS(6487), 1, + sym_super, + ACTIONS(6625), 1, + sym_identifier, STATE(3180), 2, sym_line_comment, sym_block_comment, - [90383] = 5, + [90395] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6635), 1, - anon_sym_RBRACK, + ACTIONS(6176), 1, + anon_sym_EQ_GT, + ACTIONS(6623), 1, + anon_sym_AMP_AMP, STATE(3181), 2, sym_line_comment, sym_block_comment, - [90400] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90412] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(231), 1, - sym_closure_parameters, + ACTIONS(5604), 1, + sym_super, + ACTIONS(5793), 1, + sym_identifier, STATE(3182), 2, sym_line_comment, sym_block_comment, - [90417] = 5, + [90429] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(615), 1, - sym_declaration_list, + ACTIONS(6581), 1, + sym_super, + ACTIONS(6627), 1, + sym_identifier, STATE(3183), 2, sym_line_comment, sym_block_comment, - [90434] = 5, + [90446] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6635), 1, + ACTIONS(6629), 2, anon_sym_RPAREN, + anon_sym_COMMA, STATE(3184), 2, sym_line_comment, sym_block_comment, - [90451] = 5, + [90461] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2212), 1, - sym_parameters, + ACTIONS(6581), 2, + sym_identifier, + sym_super, STATE(3185), 2, sym_line_comment, sym_block_comment, - [90468] = 4, + [90476] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5626), 2, - sym_identifier, + ACTIONS(5103), 1, sym_super, + ACTIONS(5793), 1, + sym_identifier, STATE(3186), 2, sym_line_comment, sym_block_comment, - [90483] = 5, + [90493] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1953), 1, - sym_parameters, + ACTIONS(6521), 1, + sym_super, + ACTIONS(6627), 1, + sym_identifier, STATE(3187), 2, sym_line_comment, sym_block_comment, - [90500] = 5, + [90510] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - sym_super, - ACTIONS(6637), 1, - sym_identifier, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6631), 1, + anon_sym_in, STATE(3188), 2, sym_line_comment, sym_block_comment, - [90517] = 5, + [90527] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, - ACTIONS(6264), 1, - anon_sym_for, + ACTIONS(6633), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3189), 2, sym_line_comment, sym_block_comment, - [90534] = 5, + [90542] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5740), 1, - sym_identifier, + ACTIONS(4870), 1, + anon_sym_LBRACE, + STATE(734), 1, + sym_field_declaration_list, STATE(3190), 2, sym_line_comment, sym_block_comment, - [90551] = 5, + [90559] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, + ACTIONS(5103), 1, sym_super, - ACTIONS(6639), 1, + ACTIONS(5629), 1, sym_identifier, STATE(3191), 2, sym_line_comment, sym_block_comment, - [90568] = 5, + [90576] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4895), 1, - anon_sym_LT, - STATE(956), 1, - sym_type_parameters, + ACTIONS(5167), 1, + anon_sym_RBRACE, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3192), 2, sym_line_comment, sym_block_comment, - [90585] = 5, + [90593] = 5, + ACTIONS(27), 1, + anon_sym_PIPE, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4445), 1, - anon_sym_BANG, - ACTIONS(6641), 1, - anon_sym_COLON_COLON, + STATE(235), 1, + sym_closure_parameters, STATE(3193), 2, sym_line_comment, sym_block_comment, - [90602] = 5, + [90610] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6589), 1, - anon_sym_COLON_COLON, - ACTIONS(6643), 1, - anon_sym_RPAREN, + ACTIONS(4971), 1, + anon_sym_COLON, + STATE(2604), 1, + sym_trait_bounds, STATE(3194), 2, sym_line_comment, sym_block_comment, - [90619] = 5, + [90627] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6569), 1, - anon_sym_LT, - STATE(898), 1, - sym_type_parameters, + ACTIONS(3863), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(3195), 2, sym_line_comment, sym_block_comment, - [90636] = 5, + [90642] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6583), 1, - anon_sym_COLON_COLON, - ACTIONS(6645), 1, - anon_sym_RPAREN, + ACTIONS(6319), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3196), 2, sym_line_comment, sym_block_comment, - [90653] = 5, + [90657] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(6647), 1, - anon_sym_in, + ACTIONS(6105), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3197), 2, sym_line_comment, sym_block_comment, - [90670] = 5, + [90672] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6569), 1, - anon_sym_LT, - STATE(1090), 1, - sym_type_parameters, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6635), 1, + anon_sym_COLON_COLON, STATE(3198), 2, sym_line_comment, sym_block_comment, - [90687] = 5, + [90689] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6645), 1, - anon_sym_RPAREN, - ACTIONS(6649), 1, - anon_sym_COLON_COLON, + ACTIONS(6637), 2, + sym_identifier, + sym_metavariable, STATE(3199), 2, sym_line_comment, sym_block_comment, - [90704] = 5, + [90704] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(595), 1, - sym_declaration_list, + ACTIONS(6639), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3200), 2, sym_line_comment, sym_block_comment, - [90721] = 4, + [90719] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6651), 2, - anon_sym_RBRACE, + ACTIONS(6236), 2, + anon_sym_PIPE, anon_sym_COMMA, STATE(3201), 2, sym_line_comment, sym_block_comment, - [90736] = 5, + [90734] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - STATE(2866), 1, - sym_lifetime, + ACTIONS(6641), 1, + anon_sym_BANG, + ACTIONS(6643), 1, + anon_sym_COLON_COLON, STATE(3202), 2, sym_line_comment, sym_block_comment, - [90753] = 5, + [90751] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6579), 1, - anon_sym_COLON_COLON, - ACTIONS(6645), 1, + ACTIONS(5151), 2, anon_sym_RPAREN, + anon_sym_COMMA, STATE(3203), 2, sym_line_comment, sym_block_comment, - [90770] = 5, + [90766] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6577), 1, - anon_sym_RPAREN, - ACTIONS(6649), 1, - anon_sym_COLON_COLON, + ACTIONS(5103), 1, + sym_super, + ACTIONS(5588), 1, + sym_identifier, STATE(3204), 2, sym_line_comment, sym_block_comment, - [90787] = 5, + [90783] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4610), 1, - anon_sym_BANG, - ACTIONS(4690), 1, - anon_sym_COLON_COLON, + ACTIONS(5604), 2, + sym_identifier, + sym_super, STATE(3205), 2, sym_line_comment, sym_block_comment, - [90804] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90798] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(238), 1, - sym_closure_parameters, + ACTIONS(6521), 1, + sym_super, + ACTIONS(6645), 1, + sym_identifier, STATE(3206), 2, sym_line_comment, sym_block_comment, - [90821] = 4, + [90815] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6231), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(1963), 1, + sym_parameters, STATE(3207), 2, sym_line_comment, sym_block_comment, - [90836] = 5, + [90832] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4610), 1, - anon_sym_BANG, - ACTIONS(4716), 1, - anon_sym_COLON_COLON, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(678), 1, + sym_declaration_list, STATE(3208), 2, sym_line_comment, sym_block_comment, - [90853] = 5, + [90849] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5193), 1, - anon_sym_RBRACK, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(6535), 1, + anon_sym_RPAREN, + ACTIONS(6551), 1, + anon_sym_COLON_COLON, STATE(3209), 2, sym_line_comment, sym_block_comment, - [90870] = 5, + [90866] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4919), 1, + ACTIONS(4878), 1, anon_sym_LBRACE, - STATE(1129), 1, - sym_field_declaration_list, + STATE(727), 1, + sym_declaration_list, STATE(3210), 2, sym_line_comment, sym_block_comment, - [90887] = 5, + [90883] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 1, - sym_super, - ACTIONS(6639), 1, - sym_identifier, + ACTIONS(6511), 1, + anon_sym_LT, + STATE(1074), 1, + sym_type_parameters, STATE(3211), 2, sym_line_comment, sym_block_comment, - [90904] = 5, + [90900] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5193), 1, - anon_sym_RPAREN, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6647), 1, + anon_sym_EQ, STATE(3212), 2, sym_line_comment, sym_block_comment, - [90921] = 4, + [90917] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6653), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3945), 1, + anon_sym_LT2, + STATE(1668), 1, + sym_type_arguments, STATE(3213), 2, sym_line_comment, sym_block_comment, - [90936] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [90934] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(218), 1, - sym_closure_parameters, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2215), 1, + sym_parameters, STATE(3214), 2, sym_line_comment, sym_block_comment, - [90953] = 4, + [90951] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6224), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1416), 1, + sym_declaration_list, STATE(3215), 2, sym_line_comment, sym_block_comment, @@ -182150,200 +182172,200 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - anon_sym_RBRACK, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(3325), 1, + anon_sym_LBRACE, + STATE(1208), 1, + sym_field_initializer_list, STATE(3216), 2, sym_line_comment, sym_block_comment, - [90985] = 5, + [90985] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1127), 1, - sym_declaration_list, + ACTIONS(3827), 2, + anon_sym_LPAREN, + anon_sym_COLON_COLON, STATE(3217), 2, sym_line_comment, sym_block_comment, - [91002] = 5, + [91000] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5686), 1, - sym_super, - ACTIONS(6655), 1, - sym_identifier, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(728), 1, + sym_declaration_list, STATE(3218), 2, sym_line_comment, sym_block_comment, - [91019] = 5, + [91017] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5740), 1, - sym_identifier, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1424), 1, + sym_declaration_list, STATE(3219), 2, sym_line_comment, sym_block_comment, - [91036] = 5, + [91034] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5103), 1, - anon_sym_RPAREN, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1425), 1, + sym_declaration_list, STATE(3220), 2, sym_line_comment, sym_block_comment, - [91053] = 5, + [91051] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6623), 1, - sym_super, - ACTIONS(6657), 1, - sym_identifier, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(572), 1, + sym_declaration_list, STATE(3221), 2, sym_line_comment, sym_block_comment, - [91070] = 5, + [91068] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5247), 1, - anon_sym_LBRACE, - STATE(567), 1, - sym_enum_variant_list, + ACTIONS(5199), 1, + anon_sym_RPAREN, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3222), 2, sym_line_comment, sym_block_comment, - [91087] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91085] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(232), 1, - sym_closure_parameters, + ACTIONS(5199), 1, + anon_sym_RBRACK, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3223), 2, sym_line_comment, sym_block_comment, - [91104] = 4, + [91102] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6659), 2, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6649), 1, anon_sym_RPAREN, - anon_sym_COMMA, STATE(3224), 2, sym_line_comment, sym_block_comment, - [91119] = 4, + [91119] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5654), 2, + ACTIONS(5201), 1, anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3225), 2, sym_line_comment, sym_block_comment, - [91134] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91136] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(216), 1, - sym_closure_parameters, + ACTIONS(5201), 1, + anon_sym_RBRACK, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3226), 2, sym_line_comment, sym_block_comment, - [91151] = 5, + [91153] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6615), 1, - sym_super, - ACTIONS(6661), 1, - sym_identifier, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(4887), 1, + anon_sym_for, STATE(3227), 2, sym_line_comment, sym_block_comment, - [91168] = 5, + [91170] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, - anon_sym_LBRACE, - STATE(561), 1, - sym_field_declaration_list, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2194), 1, + sym_parameters, STATE(3228), 2, sym_line_comment, sym_block_comment, - [91185] = 5, + [91187] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, + ACTIONS(5235), 1, + anon_sym_LBRACE, + STATE(1433), 1, + sym_enum_variant_list, STATE(3229), 2, sym_line_comment, sym_block_comment, - [91202] = 5, + [91204] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 1, - sym_super, - ACTIONS(6663), 1, - sym_identifier, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(620), 1, + sym_declaration_list, STATE(3230), 2, sym_line_comment, sym_block_comment, - [91219] = 5, + [91221] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4893), 1, + ACTIONS(4891), 1, anon_sym_LBRACE, - STATE(559), 1, + STATE(1436), 1, sym_field_declaration_list, STATE(3231), 2, sym_line_comment, sym_block_comment, - [91236] = 5, + [91238] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1125), 1, - sym_declaration_list, + ACTIONS(6458), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3232), 2, sym_line_comment, sym_block_comment, @@ -182352,10 +182374,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, + ACTIONS(4891), 1, anon_sym_LBRACE, - STATE(592), 1, - sym_declaration_list, + STATE(1438), 1, + sym_field_declaration_list, STATE(3233), 2, sym_line_comment, sym_block_comment, @@ -182364,493 +182386,493 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3967), 1, + ACTIONS(4915), 1, anon_sym_LBRACE, - STATE(1749), 1, - sym_field_initializer_list, + STATE(1440), 1, + sym_declaration_list, STATE(3234), 2, sym_line_comment, sym_block_comment, - [91287] = 5, + [91287] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2226), 1, - sym_parameters, + ACTIONS(5103), 2, + sym_identifier, + sym_super, STATE(3235), 2, sym_line_comment, sym_block_comment, - [91304] = 5, + [91302] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(524), 1, - sym_declaration_list, + ACTIONS(6521), 1, + sym_super, + ACTIONS(6651), 1, + sym_identifier, STATE(3236), 2, sym_line_comment, sym_block_comment, - [91321] = 5, + [91319] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6037), 1, - anon_sym_EQ_GT, - ACTIONS(6665), 1, - anon_sym_AMP_AMP, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2202), 1, + sym_parameters, STATE(3237), 2, sym_line_comment, sym_block_comment, - [91338] = 5, + [91336] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - sym_super, - ACTIONS(6667), 1, + ACTIONS(6653), 2, sym_identifier, + sym_metavariable, STATE(3238), 2, sym_line_comment, sym_block_comment, - [91355] = 5, + [91351] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6131), 1, + ACTIONS(6517), 1, + sym_super, + ACTIONS(6573), 1, sym_identifier, - ACTIONS(6135), 1, - sym_mutable_specifier, STATE(3239), 2, sym_line_comment, sym_block_comment, - [91372] = 5, - ACTIONS(27), 1, - anon_sym_PIPE, + [91368] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - STATE(219), 1, - sym_closure_parameters, + ACTIONS(6511), 1, + anon_sym_LT, + STATE(859), 1, + sym_type_parameters, STATE(3240), 2, sym_line_comment, sym_block_comment, - [91389] = 4, + [91385] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6669), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6655), 1, + anon_sym_RPAREN, STATE(3241), 2, sym_line_comment, sym_block_comment, - [91404] = 5, + [91402] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(546), 1, - sym_declaration_list, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6655), 1, + anon_sym_RBRACK, STATE(3242), 2, sym_line_comment, sym_block_comment, - [91421] = 5, + [91419] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6671), 1, - sym_identifier, - ACTIONS(6673), 1, - sym_mutable_specifier, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6657), 1, + anon_sym_RPAREN, STATE(3243), 2, sym_line_comment, sym_block_comment, - [91438] = 5, + [91436] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(2200), 1, - sym_parameters, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6657), 1, + anon_sym_RBRACK, STATE(3244), 2, sym_line_comment, sym_block_comment, - [91455] = 5, + [91453] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(544), 1, - sym_declaration_list, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6649), 1, + anon_sym_RBRACK, STATE(3245), 2, sym_line_comment, sym_block_comment, - [91472] = 5, + [91470] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6569), 1, - anon_sym_LT, - STATE(1088), 1, - sym_type_parameters, + ACTIONS(6659), 1, + sym_identifier, + ACTIONS(6661), 1, + sym_mutable_specifier, STATE(3246), 2, sym_line_comment, sym_block_comment, - [91489] = 5, + [91487] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3709), 1, - anon_sym_COLON, - ACTIONS(5270), 1, - anon_sym_PLUS, + ACTIONS(5602), 1, + sym_identifier, + ACTIONS(5604), 1, + sym_super, STATE(3247), 2, sym_line_comment, sym_block_comment, - [91506] = 5, + [91504] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6623), 1, - sym_super, - ACTIONS(6675), 1, - sym_identifier, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6663), 1, + anon_sym_RBRACE, STATE(3248), 2, sym_line_comment, sym_block_comment, - [91523] = 4, + [91521] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6149), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(6519), 1, + sym_identifier, + ACTIONS(6581), 1, + sym_super, STATE(3249), 2, sym_line_comment, sym_block_comment, - [91538] = 5, + [91538] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4919), 1, - anon_sym_LBRACE, - STATE(1119), 1, - sym_field_declaration_list, + ACTIONS(6665), 2, + anon_sym_GT, + anon_sym_COMMA, STATE(3250), 2, sym_line_comment, sym_block_comment, - [91555] = 5, + [91553] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - sym_super, - ACTIONS(6677), 1, - sym_identifier, + ACTIONS(4870), 1, + anon_sym_LBRACE, + STATE(524), 1, + sym_field_declaration_list, STATE(3251), 2, sym_line_comment, sym_block_comment, - [91572] = 5, + [91570] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, - anon_sym_LPAREN, - ACTIONS(6679), 1, - anon_sym_COLON_COLON, + ACTIONS(6667), 2, + anon_sym_RPAREN, + anon_sym_COMMA, STATE(3252), 2, sym_line_comment, sym_block_comment, - [91589] = 5, + [91585] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5856), 1, - sym_identifier, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(2227), 1, + sym_parameters, STATE(3253), 2, sym_line_comment, sym_block_comment, - [91606] = 5, + [91602] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 1, - sym_super, - ACTIONS(6681), 1, - sym_identifier, + ACTIONS(6669), 2, + anon_sym_const, + sym_mutable_specifier, STATE(3254), 2, sym_line_comment, sym_block_comment, - [91623] = 5, + [91617] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5533), 1, - sym_super, - ACTIONS(6667), 1, - sym_identifier, + ACTIONS(5281), 1, + anon_sym_LBRACE, + STATE(744), 1, + sym_enum_variant_list, STATE(3255), 2, sym_line_comment, sym_block_comment, - [91640] = 5, + [91634] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(2969), 1, - anon_sym_SQUOTE, - STATE(3285), 1, - sym_lifetime, + ACTIONS(6022), 2, + anon_sym_RBRACE, + anon_sym_COMMA, STATE(3256), 2, sym_line_comment, sym_block_comment, - [91657] = 5, + [91649] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4245), 1, - anon_sym_EQ_GT, - ACTIONS(6665), 1, - anon_sym_AMP_AMP, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(739), 1, + sym_declaration_list, STATE(3257), 2, sym_line_comment, sym_block_comment, - [91674] = 5, + [91666] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4907), 1, - anon_sym_LBRACE, - STATE(1114), 1, - sym_declaration_list, + ACTIONS(6511), 1, + anon_sym_LT, + STATE(897), 1, + sym_type_parameters, STATE(3258), 2, sym_line_comment, sym_block_comment, - [91691] = 4, + [91683] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6168), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(3243), 1, + anon_sym_LPAREN, + STATE(1083), 1, + sym_parameters, STATE(3259), 2, sym_line_comment, sym_block_comment, - [91706] = 4, + [91700] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6075), 2, - anon_sym_RBRACE, - anon_sym_COMMA, + ACTIONS(5546), 2, + sym_identifier, + sym_super, STATE(3260), 2, sym_line_comment, sym_block_comment, - [91721] = 4, + [91715] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6683), 2, + ACTIONS(6609), 2, sym_identifier, - sym_metavariable, + sym_super, STATE(3261), 2, sym_line_comment, sym_block_comment, - [91736] = 4, + [91730] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5858), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(6671), 1, + anon_sym_LPAREN, + ACTIONS(6673), 1, + anon_sym_COLON_COLON, STATE(3262), 2, sym_line_comment, sym_block_comment, - [91751] = 5, + [91747] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3243), 1, - anon_sym_LPAREN, - STATE(1064), 1, - sym_parameters, + ACTIONS(6675), 2, + sym_float_literal, + sym_integer_literal, STATE(3263), 2, sym_line_comment, sym_block_comment, - [91768] = 5, + [91762] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5225), 1, - anon_sym_LBRACE, - STATE(1109), 1, - sym_enum_variant_list, + ACTIONS(6677), 1, + anon_sym_BANG, + ACTIONS(6679), 1, + anon_sym_COLON_COLON, STATE(3264), 2, sym_line_comment, sym_block_comment, - [91785] = 5, + [91779] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4919), 1, - anon_sym_LBRACE, - STATE(1105), 1, - sym_field_declaration_list, + ACTIONS(6681), 1, + anon_sym_STAR_SLASH, + ACTIONS(6683), 1, + sym__block_comment_content, STATE(3265), 2, sym_line_comment, sym_block_comment, - [91802] = 5, + [91796] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6685), 1, - anon_sym_BANG, - ACTIONS(6687), 1, - anon_sym_COLON_COLON, + ACTIONS(6511), 1, + anon_sym_LT, + STATE(1068), 1, + sym_type_parameters, STATE(3266), 2, sym_line_comment, sym_block_comment, - [91819] = 4, + [91813] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6689), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6685), 1, + anon_sym_in, STATE(3267), 2, sym_line_comment, sym_block_comment, - [91834] = 5, + [91830] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5874), 1, - sym_identifier, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(5510), 1, + anon_sym_COLON, STATE(3268), 2, sym_line_comment, sym_block_comment, - [91851] = 5, + [91847] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6561), 1, - sym_super, - ACTIONS(6691), 1, - sym_identifier, + ACTIONS(5235), 1, + anon_sym_LBRACE, + STATE(1233), 1, + sym_enum_variant_list, STATE(3269), 2, sym_line_comment, sym_block_comment, - [91868] = 5, + [91864] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3251), 1, - anon_sym_LT2, - STATE(1412), 1, - sym_type_arguments, + ACTIONS(6517), 1, + sym_super, + ACTIONS(6687), 1, + sym_identifier, STATE(3270), 2, sym_line_comment, sym_block_comment, - [91885] = 5, + [91881] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - sym_super, - ACTIONS(6693), 1, - sym_identifier, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1111), 1, + sym_declaration_list, STATE(3271), 2, sym_line_comment, sym_block_comment, - [91902] = 4, + [91898] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 2, - sym_identifier, - sym_super, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6689), 1, + anon_sym_EQ, STATE(3272), 2, sym_line_comment, sym_block_comment, - [91917] = 5, + [91915] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5813), 1, - sym_super, - ACTIONS(5860), 1, - sym_identifier, + ACTIONS(6557), 1, + anon_sym_LPAREN, + ACTIONS(6691), 1, + anon_sym_COLON_COLON, STATE(3273), 2, sym_line_comment, sym_block_comment, - [91934] = 5, + [91932] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6581), 1, - sym_super, - ACTIONS(6695), 1, - sym_identifier, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1119), 1, + sym_declaration_list, STATE(3274), 2, sym_line_comment, sym_block_comment, - [91951] = 4, + [91949] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6697), 2, - anon_sym_const, - sym_mutable_specifier, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1120), 1, + sym_declaration_list, STATE(3275), 2, sym_line_comment, sym_block_comment, @@ -182859,187 +182881,187 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4443), 1, - anon_sym_LPAREN, - STATE(1956), 1, - sym_parameters, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(513), 1, + sym_declaration_list, STATE(3276), 2, sym_line_comment, sym_block_comment, - [91983] = 4, + [91983] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5278), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4989), 1, + anon_sym_PLUS, + ACTIONS(6693), 1, + anon_sym_GT, STATE(3277), 2, sym_line_comment, sym_block_comment, - [91998] = 5, + [92000] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6571), 1, + ACTIONS(6557), 1, anon_sym_LPAREN, - ACTIONS(6699), 1, + ACTIONS(6695), 1, anon_sym_COLON_COLON, STATE(3278), 2, sym_line_comment, sym_block_comment, - [92015] = 5, + [92017] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - sym_super, - ACTIONS(6701), 1, - sym_identifier, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6697), 1, + anon_sym_RPAREN, STATE(3279), 2, sym_line_comment, sym_block_comment, - [92032] = 5, + [92034] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5686), 1, - sym_super, - ACTIONS(6657), 1, - sym_identifier, + ACTIONS(6699), 1, + anon_sym_LBRACK, + ACTIONS(6701), 1, + anon_sym_BANG, STATE(3280), 2, sym_line_comment, sym_block_comment, - [92049] = 5, + [92051] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6553), 1, - sym_super, - ACTIONS(6627), 1, + ACTIONS(6703), 2, sym_identifier, + sym_metavariable, STATE(3281), 2, sym_line_comment, sym_block_comment, - [92066] = 4, + [92066] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6703), 2, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(4878), 1, + anon_sym_LBRACE, + STATE(506), 1, + sym_declaration_list, STATE(3282), 2, sym_line_comment, sym_block_comment, - [92081] = 5, + [92083] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5807), 1, - sym_identifier, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6705), 1, + anon_sym_in, STATE(3283), 2, sym_line_comment, sym_block_comment, - [92098] = 5, + [92100] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - sym_super, - ACTIONS(6663), 1, - sym_identifier, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6697), 1, + anon_sym_RBRACK, STATE(3284), 2, sym_line_comment, sym_block_comment, - [92115] = 4, + [92117] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6154), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6707), 2, + sym_identifier, + sym_metavariable, STATE(3285), 2, sym_line_comment, sym_block_comment, - [92130] = 5, + [92132] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6623), 1, - sym_super, - ACTIONS(6705), 1, - sym_identifier, + ACTIONS(4870), 1, + anon_sym_LBRACE, + STATE(526), 1, + sym_field_declaration_list, STATE(3286), 2, sym_line_comment, sym_block_comment, - [92147] = 5, + [92149] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6707), 1, - anon_sym_RBRACE, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(4961), 1, + anon_sym_for, STATE(3287), 2, sym_line_comment, sym_block_comment, - [92164] = 5, + [92166] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5876), 1, - sym_identifier, + ACTIONS(6501), 1, + anon_sym_SEMI, + ACTIONS(6709), 1, + anon_sym_RBRACE, STATE(3288), 2, sym_line_comment, sym_block_comment, - [92181] = 5, + [92183] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 1, + ACTIONS(5546), 1, sym_super, - ACTIONS(6709), 1, + ACTIONS(6687), 1, sym_identifier, STATE(3289), 2, sym_line_comment, sym_block_comment, - [92198] = 5, + [92200] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6623), 1, - sym_super, - ACTIONS(6711), 1, - sym_identifier, + ACTIONS(4891), 1, + anon_sym_LBRACE, + STATE(1253), 1, + sym_field_declaration_list, STATE(3290), 2, sym_line_comment, sym_block_comment, - [92215] = 5, + [92217] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4915), 1, - anon_sym_LBRACE, - STATE(558), 1, - sym_declaration_list, + ACTIONS(6711), 2, + sym_identifier, + sym_metavariable, STATE(3291), 2, sym_line_comment, sym_block_comment, @@ -183048,10 +183070,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5878), 1, - sym_identifier, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(6444), 1, + anon_sym_for, STATE(3292), 2, sym_line_comment, sym_block_comment, @@ -183060,10 +183082,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 1, - sym_super, - ACTIONS(6713), 1, - sym_identifier, + ACTIONS(4915), 1, + anon_sym_LBRACE, + STATE(1256), 1, + sym_declaration_list, STATE(3293), 2, sym_line_comment, sym_block_comment, @@ -183072,10 +183094,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, - ACTIONS(6715), 1, - anon_sym_RBRACE, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(6446), 1, + anon_sym_for, STATE(3294), 2, sym_line_comment, sym_block_comment, @@ -183084,10 +183106,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6623), 1, - sym_super, - ACTIONS(6717), 1, - sym_identifier, + ACTIONS(4872), 1, + anon_sym_LT, + STATE(912), 1, + sym_type_parameters, STATE(3295), 2, sym_line_comment, sym_block_comment, @@ -183096,10 +183118,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5726), 1, - sym_super, - ACTIONS(5880), 1, - sym_identifier, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6713), 1, + anon_sym_in, STATE(3296), 2, sym_line_comment, sym_block_comment, @@ -183108,10 +183130,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6509), 1, - sym_super, - ACTIONS(6719), 1, - sym_identifier, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(6456), 1, + anon_sym_for, STATE(3297), 2, sym_line_comment, sym_block_comment, @@ -183120,10 +183142,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5686), 1, - sym_super, + ACTIONS(6715), 1, + anon_sym_LBRACK, ACTIONS(6717), 1, - sym_identifier, + anon_sym_BANG, STATE(3298), 2, sym_line_comment, sym_block_comment, @@ -183132,10 +183154,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5143), 1, - anon_sym_RPAREN, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6719), 1, + anon_sym_in, STATE(3299), 2, sym_line_comment, sym_block_comment, @@ -183144,10 +183166,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5129), 1, - sym_super, - ACTIONS(5880), 1, - sym_identifier, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6721), 1, + anon_sym_in, STATE(3300), 2, sym_line_comment, sym_block_comment, @@ -183156,700 +183178,703 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6557), 1, - sym_super, - ACTIONS(6719), 1, - sym_identifier, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6723), 1, + anon_sym_in, STATE(3301), 2, sym_line_comment, sym_block_comment, - [92402] = 4, + [92402] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5129), 2, - sym_identifier, - sym_super, + ACTIONS(5452), 1, + anon_sym_PIPE, + ACTIONS(6725), 1, + anon_sym_in, STATE(3302), 2, sym_line_comment, sym_block_comment, - [92417] = 5, + [92419] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5533), 1, - sym_super, - ACTIONS(6721), 1, - sym_identifier, + ACTIONS(4443), 1, + anon_sym_LPAREN, + STATE(1941), 1, + sym_parameters, STATE(3303), 2, sym_line_comment, sym_block_comment, - [92434] = 4, + [92436] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5882), 2, - anon_sym_GT, - anon_sym_COMMA, + ACTIONS(6465), 1, + sym_identifier, + ACTIONS(6469), 1, + sym_mutable_specifier, STATE(3304), 2, sym_line_comment, sym_block_comment, - [92449] = 5, + [92453] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4975), 1, - anon_sym_PLUS, - ACTIONS(6723), 1, - anon_sym_GT, + ACTIONS(4891), 1, + anon_sym_LBRACE, + STATE(1267), 1, + sym_field_declaration_list, STATE(3305), 2, sym_line_comment, sym_block_comment, - [92466] = 5, + [92470] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5143), 1, - anon_sym_RBRACK, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, + ACTIONS(6471), 1, + anon_sym_for, STATE(3306), 2, sym_line_comment, sym_block_comment, - [92483] = 4, + [92487] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6725), 2, - sym_float_literal, - sym_integer_literal, + ACTIONS(2969), 1, + anon_sym_SQUOTE, + STATE(2996), 1, + sym_lifetime, STATE(3307), 2, sym_line_comment, sym_block_comment, - [92498] = 5, + [92504] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6727), 1, - anon_sym_SEMI, + sym_identifier, ACTIONS(6729), 1, - anon_sym_as, + sym_mutable_specifier, STATE(3308), 2, sym_line_comment, sym_block_comment, - [92515] = 5, + [92521] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6523), 1, - sym_identifier, - ACTIONS(6623), 1, - sym_super, + ACTIONS(6547), 1, + anon_sym_COLON_COLON, + ACTIONS(6731), 1, + anon_sym_RPAREN, STATE(3309), 2, sym_line_comment, sym_block_comment, - [92532] = 4, + [92538] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6731), 2, + ACTIONS(6517), 2, sym_identifier, - sym_metavariable, + sym_super, STATE(3310), 2, sym_line_comment, sym_block_comment, - [92547] = 5, + [92553] = 5, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5453), 1, - anon_sym_PIPE, - ACTIONS(5543), 1, - anon_sym_COLON, + ACTIONS(5866), 1, + sym_super, + ACTIONS(6625), 1, + sym_identifier, STATE(3311), 2, sym_line_comment, sym_block_comment, - [92564] = 4, + [92570] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6733), 1, - anon_sym_SEMI, + ACTIONS(4883), 1, + anon_sym_COLON_COLON, STATE(3312), 2, sym_line_comment, sym_block_comment, - [92578] = 4, + [92584] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6735), 1, - sym_raw_string_literal_content, + ACTIONS(953), 1, + anon_sym_EQ_GT, STATE(3313), 2, sym_line_comment, sym_block_comment, - [92592] = 4, + [92598] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6737), 1, + ACTIONS(6733), 1, sym_identifier, STATE(3314), 2, sym_line_comment, sym_block_comment, - [92606] = 4, + [92612] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6739), 1, + ACTIONS(6735), 1, sym_identifier, STATE(3315), 2, sym_line_comment, sym_block_comment, - [92620] = 4, + [92626] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6741), 1, + ACTIONS(6737), 1, sym_identifier, STATE(3316), 2, sym_line_comment, sym_block_comment, - [92634] = 4, + [92640] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6743), 1, + ACTIONS(6739), 1, sym_identifier, STATE(3317), 2, sym_line_comment, sym_block_comment, - [92648] = 4, + [92654] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6745), 1, - sym_identifier, + ACTIONS(6741), 1, + anon_sym_COLON, STATE(3318), 2, sym_line_comment, sym_block_comment, - [92662] = 4, + [92668] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6747), 1, - anon_sym_EQ_GT, + ACTIONS(6743), 1, + sym__line_doc_content, STATE(3319), 2, sym_line_comment, sym_block_comment, - [92676] = 4, + [92682] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6749), 1, - sym_identifier, + ACTIONS(6745), 1, + anon_sym_SEMI, STATE(3320), 2, sym_line_comment, sym_block_comment, - [92690] = 4, + [92696] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4059), 1, - anon_sym_COLON_COLON, + ACTIONS(6747), 1, + anon_sym_RBRACK, STATE(3321), 2, sym_line_comment, sym_block_comment, - [92704] = 4, + [92710] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6751), 1, - sym_identifier, + ACTIONS(4057), 1, + anon_sym_COLON_COLON, STATE(3322), 2, sym_line_comment, sym_block_comment, - [92718] = 4, + [92724] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4574), 1, - anon_sym_COLON_COLON, + ACTIONS(6749), 1, + anon_sym_LPAREN, STATE(3323), 2, sym_line_comment, sym_block_comment, - [92732] = 4, + [92738] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6753), 1, - sym_raw_string_literal_content, + ACTIONS(4576), 1, + anon_sym_COLON_COLON, STATE(3324), 2, sym_line_comment, sym_block_comment, - [92746] = 4, + [92752] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6715), 1, - anon_sym_SEMI, + ACTIONS(961), 1, + anon_sym_EQ_GT, STATE(3325), 2, sym_line_comment, sym_block_comment, - [92760] = 4, + [92766] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6755), 1, - sym_identifier, + ACTIONS(6751), 1, + anon_sym_RBRACK, STATE(3326), 2, sym_line_comment, sym_block_comment, - [92774] = 4, + [92780] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5163), 1, + ACTIONS(6753), 1, anon_sym_SEMI, STATE(3327), 2, sym_line_comment, sym_block_comment, - [92788] = 4, + [92794] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6757), 1, - anon_sym_fn, + ACTIONS(6755), 1, + anon_sym_SEMI, STATE(3328), 2, sym_line_comment, sym_block_comment, - [92802] = 4, + [92808] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6707), 1, + ACTIONS(6757), 1, anon_sym_SEMI, STATE(3329), 2, sym_line_comment, sym_block_comment, - [92816] = 4, + [92822] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6759), 1, - sym_identifier, + anon_sym_fn, STATE(3330), 2, sym_line_comment, sym_block_comment, - [92830] = 4, + [92836] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4554), 1, - anon_sym_COLON_COLON, + ACTIONS(6761), 1, + anon_sym_COLON, STATE(3331), 2, sym_line_comment, sym_block_comment, - [92844] = 4, + [92850] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6761), 1, - sym_identifier, + ACTIONS(4535), 1, + anon_sym_COLON_COLON, STATE(3332), 2, sym_line_comment, sym_block_comment, - [92858] = 4, + [92864] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6763), 1, - anon_sym_SEMI, + sym__line_doc_content, STATE(3333), 2, sym_line_comment, sym_block_comment, - [92872] = 4, + [92878] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6765), 1, - anon_sym_SEMI, + ACTIONS(5827), 1, + anon_sym_RBRACK, STATE(3334), 2, sym_line_comment, sym_block_comment, - [92886] = 4, + [92892] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6767), 1, - anon_sym_RPAREN, + ACTIONS(6765), 1, + sym_identifier, STATE(3335), 2, sym_line_comment, sym_block_comment, - [92900] = 4, + [92906] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4067), 1, - anon_sym_RPAREN, + ACTIONS(6767), 1, + anon_sym_RBRACK, STATE(3336), 2, sym_line_comment, sym_block_comment, - [92914] = 4, + [92920] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6769), 1, - anon_sym_fn, + anon_sym_EQ_GT, STATE(3337), 2, sym_line_comment, sym_block_comment, - [92928] = 4, + [92934] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6771), 1, - anon_sym_SEMI, + anon_sym_fn, STATE(3338), 2, sym_line_comment, sym_block_comment, - [92942] = 4, + [92948] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6773), 1, - anon_sym_COLON_COLON, + ACTIONS(5771), 1, + anon_sym_RPAREN, STATE(3339), 2, sym_line_comment, sym_block_comment, - [92956] = 4, + [92962] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6775), 1, - sym_raw_string_literal_content, + ACTIONS(6773), 1, + anon_sym_COLON_COLON, STATE(3340), 2, sym_line_comment, sym_block_comment, - [92970] = 4, + [92976] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6777), 1, - anon_sym_EQ_GT, + ACTIONS(6775), 1, + sym__line_doc_content, STATE(3341), 2, sym_line_comment, sym_block_comment, - [92984] = 4, + [92990] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6779), 1, - anon_sym_EQ_GT, + ACTIONS(6777), 1, + sym_identifier, STATE(3342), 2, sym_line_comment, sym_block_comment, - [92998] = 4, + [93004] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6781), 1, - anon_sym_SEMI, + ACTIONS(5973), 1, + anon_sym_RBRACE, STATE(3343), 2, sym_line_comment, sym_block_comment, - [93012] = 4, + [93018] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6783), 1, - sym_identifier, + ACTIONS(6779), 1, + sym_self, STATE(3344), 2, sym_line_comment, sym_block_comment, - [93026] = 4, + [93032] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6785), 1, - anon_sym_SEMI, + ACTIONS(6781), 1, + anon_sym_EQ_GT, STATE(3345), 2, sym_line_comment, sym_block_comment, - [93040] = 4, + [93046] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6787), 1, - anon_sym_STAR_SLASH, + ACTIONS(6783), 1, + anon_sym_COLON_COLON, STATE(3346), 2, sym_line_comment, sym_block_comment, - [93054] = 4, + [93060] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6789), 1, - sym_identifier, + ACTIONS(955), 1, + anon_sym_RBRACK, STATE(3347), 2, sym_line_comment, sym_block_comment, - [93068] = 4, + [93074] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6791), 1, - sym_identifier, + ACTIONS(6785), 1, + anon_sym_SEMI, STATE(3348), 2, sym_line_comment, sym_block_comment, - [93082] = 4, + [93088] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6793), 1, - anon_sym_COLON_COLON, + ACTIONS(6787), 1, + sym_identifier, STATE(3349), 2, sym_line_comment, sym_block_comment, - [93096] = 4, + [93102] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6795), 1, - sym_identifier, + ACTIONS(6789), 1, + anon_sym_COLON_COLON, STATE(3350), 2, sym_line_comment, sym_block_comment, - [93110] = 4, + [93116] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6797), 1, + ACTIONS(6791), 1, sym_identifier, STATE(3351), 2, sym_line_comment, sym_block_comment, - [93124] = 4, + [93130] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6799), 1, + ACTIONS(6793), 1, sym_identifier, STATE(3352), 2, sym_line_comment, sym_block_comment, - [93138] = 4, + [93144] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6801), 1, + ACTIONS(6795), 1, sym_identifier, STATE(3353), 2, sym_line_comment, sym_block_comment, - [93152] = 4, + [93158] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6803), 1, + ACTIONS(6797), 1, sym_identifier, STATE(3354), 2, sym_line_comment, sym_block_comment, - [93166] = 4, + [93172] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3057), 1, - anon_sym_PLUS, + ACTIONS(6799), 1, + sym_identifier, STATE(3355), 2, sym_line_comment, sym_block_comment, - [93180] = 4, + [93186] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3984), 1, + ACTIONS(6801), 1, sym_identifier, STATE(3356), 2, sym_line_comment, sym_block_comment, - [93194] = 4, + [93200] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6805), 1, - anon_sym_COLON_COLON, + ACTIONS(6803), 1, + anon_sym_SEMI, STATE(3357), 2, sym_line_comment, sym_block_comment, - [93208] = 4, + [93214] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6807), 1, - sym_identifier, + ACTIONS(6805), 1, + anon_sym_RBRACE, STATE(3358), 2, sym_line_comment, sym_block_comment, - [93222] = 4, + [93228] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6809), 1, - sym_identifier, + ACTIONS(6807), 1, + anon_sym_SEMI, STATE(3359), 2, sym_line_comment, sym_block_comment, - [93236] = 4, + [93242] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6811), 1, - anon_sym_SEMI, + ACTIONS(6809), 1, + sym_identifier, STATE(3360), 2, sym_line_comment, sym_block_comment, - [93250] = 4, + [93256] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6813), 1, - anon_sym_SEMI, + ACTIONS(5438), 1, + anon_sym_RPAREN, STATE(3361), 2, sym_line_comment, sym_block_comment, - [93264] = 4, + [93270] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6815), 1, - anon_sym_RBRACE, + ACTIONS(6811), 1, + anon_sym_SEMI, STATE(3362), 2, sym_line_comment, sym_block_comment, - [93278] = 4, + [93284] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6817), 1, - anon_sym_RBRACK, + ACTIONS(6813), 1, + anon_sym_RBRACE, STATE(3363), 2, sym_line_comment, sym_block_comment, - [93292] = 4, + [93298] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6819), 1, - anon_sym_SEMI, + ACTIONS(6815), 1, + anon_sym_RBRACE, STATE(3364), 2, sym_line_comment, sym_block_comment, - [93306] = 4, + [93312] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(763), 1, - anon_sym_RBRACK, + ACTIONS(6817), 1, + anon_sym_SEMI, STATE(3365), 2, sym_line_comment, sym_block_comment, - [93320] = 4, + [93326] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(987), 1, - anon_sym_RBRACK, + ACTIONS(6819), 1, + anon_sym_COLON, STATE(3366), 2, sym_line_comment, sym_block_comment, - [93334] = 4, + [93340] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4943), 1, - anon_sym_COLON_COLON, + ACTIONS(6821), 1, + sym_identifier, STATE(3367), 2, sym_line_comment, sym_block_comment, - [93348] = 4, + [93354] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6821), 1, - anon_sym_RBRACK, + ACTIONS(3065), 1, + anon_sym_PLUS, STATE(3368), 2, sym_line_comment, sym_block_comment, - [93362] = 4, + [93368] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -183859,7 +183884,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3369), 2, sym_line_comment, sym_block_comment, - [93376] = 4, + [93382] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -183869,7 +183894,7 @@ static const uint16_t ts_small_parse_table[] = { STATE(3370), 2, sym_line_comment, sym_block_comment, - [93390] = 4, + [93396] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -183879,117 +183904,117 @@ static const uint16_t ts_small_parse_table[] = { STATE(3371), 2, sym_line_comment, sym_block_comment, - [93404] = 4, + [93410] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5716), 1, + ACTIONS(5813), 1, anon_sym_LBRACE, STATE(3372), 2, sym_line_comment, sym_block_comment, - [93418] = 4, + [93424] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5834), 1, - anon_sym_RPAREN, + ACTIONS(6829), 1, + anon_sym_SEMI, STATE(3373), 2, sym_line_comment, sym_block_comment, - [93432] = 4, + [93438] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6829), 1, - anon_sym_SEMI, + ACTIONS(6831), 1, + anon_sym_COLON_COLON, STATE(3374), 2, sym_line_comment, sym_block_comment, - [93446] = 4, + [93452] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6831), 1, - sym__raw_string_literal_end, + ACTIONS(6833), 1, + anon_sym_SEMI, STATE(3375), 2, sym_line_comment, sym_block_comment, - [93460] = 4, + [93466] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6833), 1, - sym_identifier, + ACTIONS(6835), 1, + sym_raw_string_literal_content, STATE(3376), 2, sym_line_comment, sym_block_comment, - [93474] = 4, + [93480] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6835), 1, + ACTIONS(6837), 1, anon_sym_SEMI, STATE(3377), 2, sym_line_comment, sym_block_comment, - [93488] = 4, + [93494] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6837), 1, - anon_sym_SEMI, + ACTIONS(5831), 1, + anon_sym_RPAREN, STATE(3378), 2, sym_line_comment, sym_block_comment, - [93502] = 4, + [93508] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6839), 1, - anon_sym_LPAREN, + anon_sym_RPAREN, STATE(3379), 2, sym_line_comment, sym_block_comment, - [93516] = 4, + [93522] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6489), 1, - anon_sym_SEMI, + ACTIONS(6841), 1, + sym__raw_string_literal_end, STATE(3380), 2, sym_line_comment, sym_block_comment, - [93530] = 4, + [93536] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6841), 1, - anon_sym_COLON, + ACTIONS(6843), 1, + anon_sym_SEMI, STATE(3381), 2, sym_line_comment, sym_block_comment, - [93544] = 4, + [93550] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6843), 1, + ACTIONS(6663), 1, anon_sym_SEMI, STATE(3382), 2, sym_line_comment, sym_block_comment, - [93558] = 4, + [93564] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -183999,1467 +184024,1467 @@ static const uint16_t ts_small_parse_table[] = { STATE(3383), 2, sym_line_comment, sym_block_comment, - [93572] = 4, + [93578] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6847), 1, - sym_identifier, + anon_sym_SEMI, STATE(3384), 2, sym_line_comment, sym_block_comment, - [93586] = 4, + [93592] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5815), 1, - anon_sym_RBRACK, + ACTIONS(6849), 1, + anon_sym_COLON_COLON, STATE(3385), 2, sym_line_comment, sym_block_comment, - [93600] = 4, + [93606] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(773), 1, - anon_sym_EQ_GT, + ACTIONS(6851), 1, + anon_sym_COLON, STATE(3386), 2, sym_line_comment, sym_block_comment, - [93614] = 4, + [93620] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6849), 1, - sym__raw_string_literal_end, + ACTIONS(6853), 1, + sym_identifier, STATE(3387), 2, sym_line_comment, sym_block_comment, - [93628] = 4, + [93634] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6851), 1, - anon_sym_RBRACK, + ACTIONS(6855), 1, + anon_sym_SEMI, STATE(3388), 2, sym_line_comment, sym_block_comment, - [93642] = 4, + [93648] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6853), 1, + ACTIONS(6857), 1, sym_identifier, STATE(3389), 2, sym_line_comment, sym_block_comment, - [93656] = 4, + [93662] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6855), 1, + ACTIONS(6859), 1, sym_identifier, STATE(3390), 2, sym_line_comment, sym_block_comment, - [93670] = 4, + [93676] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6857), 1, - anon_sym_SEMI, + ACTIONS(6296), 1, + anon_sym_RBRACE, STATE(3391), 2, sym_line_comment, sym_block_comment, - [93684] = 4, + [93690] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6859), 1, - anon_sym_SEMI, + ACTIONS(6861), 1, + anon_sym_RBRACK, STATE(3392), 2, sym_line_comment, sym_block_comment, - [93698] = 4, + [93704] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6861), 1, - anon_sym_COLON, + ACTIONS(5157), 1, + anon_sym_SEMI, STATE(3393), 2, sym_line_comment, sym_block_comment, - [93712] = 4, + [93718] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6863), 1, - sym_identifier, + anon_sym_SEMI, STATE(3394), 2, sym_line_comment, sym_block_comment, - [93726] = 4, + [93732] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6248), 1, - anon_sym_RBRACE, + ACTIONS(6865), 1, + sym_identifier, STATE(3395), 2, sym_line_comment, sym_block_comment, - [93740] = 4, + [93746] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6865), 1, - sym__raw_string_literal_end, + ACTIONS(6867), 1, + anon_sym_STAR_SLASH, STATE(3396), 2, sym_line_comment, sym_block_comment, - [93754] = 4, + [93760] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6867), 1, - anon_sym_COLON, + ACTIONS(5426), 1, + anon_sym_RPAREN, STATE(3397), 2, sym_line_comment, sym_block_comment, - [93768] = 4, + [93774] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6869), 1, - sym_identifier, + ACTIONS(1003), 1, + anon_sym_RBRACK, STATE(3398), 2, sym_line_comment, sym_block_comment, - [93782] = 4, + [93788] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6871), 1, - anon_sym_RBRACE, + ACTIONS(6869), 1, + sym_identifier, STATE(3399), 2, sym_line_comment, sym_block_comment, - [93796] = 4, + [93802] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6873), 1, + ACTIONS(6871), 1, anon_sym_SEMI, STATE(3400), 2, sym_line_comment, sym_block_comment, - [93810] = 4, + [93816] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6875), 1, - anon_sym_SEMI, + ACTIONS(6873), 1, + anon_sym_RBRACK, STATE(3401), 2, sym_line_comment, sym_block_comment, - [93824] = 4, - ACTIONS(101), 1, + [93830] = 4, + ACTIONS(3), 1, anon_sym_SLASH_SLASH, - ACTIONS(103), 1, + ACTIONS(5), 1, anon_sym_SLASH_STAR, - ACTIONS(6877), 1, - anon_sym_SEMI, + ACTIONS(6875), 1, + aux_sym_line_comment_token2, STATE(3402), 2, sym_line_comment, sym_block_comment, - [93838] = 4, + [93844] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6879), 1, - anon_sym_EQ_GT, + ACTIONS(4537), 1, + anon_sym_COLON_COLON, STATE(3403), 2, sym_line_comment, sym_block_comment, - [93852] = 4, + [93858] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6049), 1, - anon_sym_RBRACE, + ACTIONS(6877), 1, + anon_sym_SEMI, STATE(3404), 2, sym_line_comment, sym_block_comment, - [93866] = 4, + [93872] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6881), 1, - anon_sym_SEMI, + ACTIONS(6879), 1, + anon_sym_RBRACE, STATE(3405), 2, sym_line_comment, sym_block_comment, - [93880] = 4, + [93886] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6883), 1, - anon_sym_RBRACE, + ACTIONS(5590), 1, + anon_sym_RPAREN, STATE(3406), 2, sym_line_comment, sym_block_comment, - [93894] = 4, + [93900] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6885), 1, - sym_identifier, + ACTIONS(6881), 1, + anon_sym_fn, STATE(3407), 2, sym_line_comment, sym_block_comment, - [93908] = 4, + [93914] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4921), 1, - anon_sym_COLON_COLON, + ACTIONS(6883), 1, + anon_sym_RBRACK, STATE(3408), 2, sym_line_comment, sym_block_comment, - [93922] = 4, + [93928] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6887), 1, + ACTIONS(6885), 1, sym_identifier, STATE(3409), 2, sym_line_comment, sym_block_comment, - [93936] = 4, + [93942] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6889), 1, - anon_sym_SEMI, + ACTIONS(6887), 1, + anon_sym_EQ_GT, STATE(3410), 2, sym_line_comment, sym_block_comment, - [93950] = 4, + [93956] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6891), 1, - anon_sym_COLON_COLON, + ACTIONS(6889), 1, + anon_sym_RBRACK, STATE(3411), 2, sym_line_comment, sym_block_comment, - [93964] = 4, + [93970] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6893), 1, - anon_sym_RBRACE, + ACTIONS(6891), 1, + anon_sym_COLON, STATE(3412), 2, sym_line_comment, sym_block_comment, - [93978] = 4, + [93984] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6895), 1, - anon_sym_COLON, + ACTIONS(6893), 1, + anon_sym_SEMI, STATE(3413), 2, sym_line_comment, sym_block_comment, - [93992] = 4, + [93998] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6897), 1, - anon_sym_COLON, + ACTIONS(6895), 1, + anon_sym_SEMI, STATE(3414), 2, sym_line_comment, sym_block_comment, - [94006] = 4, + [94012] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6899), 1, - anon_sym_SEMI, + ACTIONS(6897), 1, + anon_sym_RBRACK, STATE(3415), 2, sym_line_comment, sym_block_comment, - [94020] = 4, + [94026] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6901), 1, - anon_sym_SEMI, + ACTIONS(5594), 1, + anon_sym_RBRACK, STATE(3416), 2, sym_line_comment, sym_block_comment, - [94034] = 4, + [94040] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6903), 1, - anon_sym_LBRACK, + ACTIONS(5508), 1, + anon_sym_RPAREN, STATE(3417), 2, sym_line_comment, sym_block_comment, - [94048] = 4, + [94054] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6905), 1, - anon_sym_RBRACK, + ACTIONS(6501), 1, + anon_sym_SEMI, STATE(3418), 2, sym_line_comment, sym_block_comment, - [94062] = 4, + [94068] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5463), 1, - anon_sym_RPAREN, + ACTIONS(6899), 1, + anon_sym_STAR_SLASH, STATE(3419), 2, sym_line_comment, sym_block_comment, - [94076] = 4, + [94082] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6907), 1, - anon_sym_COLON_COLON, + ACTIONS(6901), 1, + sym_identifier, STATE(3420), 2, sym_line_comment, sym_block_comment, - [94090] = 4, + [94096] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6909), 1, - sym_identifier, + ACTIONS(6118), 1, + anon_sym_RBRACE, STATE(3421), 2, sym_line_comment, sym_block_comment, - [94104] = 4, + [94110] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6911), 1, + ACTIONS(6157), 1, anon_sym_RBRACE, STATE(3422), 2, sym_line_comment, sym_block_comment, - [94118] = 4, + [94124] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3087), 1, - anon_sym_PLUS, + ACTIONS(6903), 1, + anon_sym_EQ_GT, STATE(3423), 2, sym_line_comment, sym_block_comment, - [94132] = 4, + [94138] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6019), 1, - anon_sym_GT, + ACTIONS(6905), 1, + anon_sym_SEMI, STATE(3424), 2, sym_line_comment, sym_block_comment, - [94146] = 4, + [94152] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6913), 1, + ACTIONS(6907), 1, anon_sym_SEMI, STATE(3425), 2, sym_line_comment, sym_block_comment, - [94160] = 4, + [94166] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6915), 1, - anon_sym_SEMI, + ACTIONS(6909), 1, + anon_sym_RBRACE, STATE(3426), 2, sym_line_comment, sym_block_comment, - [94174] = 4, + [94180] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6917), 1, - anon_sym_SEMI, + ACTIONS(6911), 1, + anon_sym_fn, STATE(3427), 2, sym_line_comment, sym_block_comment, - [94188] = 4, + [94194] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6919), 1, - anon_sym_COLON_COLON, + ACTIONS(6039), 1, + anon_sym_RBRACE, STATE(3428), 2, sym_line_comment, sym_block_comment, - [94202] = 4, + [94208] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6921), 1, - anon_sym_SEMI, + ACTIONS(6913), 1, + sym__raw_string_literal_end, STATE(3429), 2, sym_line_comment, sym_block_comment, - [94216] = 4, + [94222] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6923), 1, - anon_sym_COLON, + ACTIONS(6915), 1, + anon_sym_COLON_COLON, STATE(3430), 2, sym_line_comment, sym_block_comment, - [94230] = 4, + [94236] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6925), 1, - sym_identifier, + ACTIONS(6715), 1, + anon_sym_LBRACK, STATE(3431), 2, sym_line_comment, sym_block_comment, - [94244] = 4, + [94250] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6927), 1, - anon_sym_fn, + ACTIONS(6917), 1, + anon_sym_SEMI, STATE(3432), 2, sym_line_comment, sym_block_comment, - [94258] = 4, + [94264] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6929), 1, - anon_sym_fn, + ACTIONS(6919), 1, + anon_sym_SEMI, STATE(3433), 2, sym_line_comment, sym_block_comment, - [94272] = 4, + [94278] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6931), 1, - anon_sym_SEMI, + ACTIONS(6921), 1, + sym_identifier, STATE(3434), 2, sym_line_comment, sym_block_comment, - [94286] = 4, + [94292] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6933), 1, - anon_sym_LT, + ACTIONS(6923), 1, + anon_sym_COLON, STATE(3435), 2, sym_line_comment, sym_block_comment, - [94300] = 4, + [94306] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6935), 1, - anon_sym_SEMI, + ACTIONS(6925), 1, + sym_identifier, STATE(3436), 2, sym_line_comment, sym_block_comment, - [94314] = 4, + [94320] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6937), 1, - sym__raw_string_literal_end, + ACTIONS(5953), 1, + anon_sym_RBRACE, STATE(3437), 2, sym_line_comment, sym_block_comment, - [94328] = 4, + [94334] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6939), 1, - anon_sym_SEMI, + ACTIONS(5737), 1, + anon_sym_LBRACE, STATE(3438), 2, sym_line_comment, sym_block_comment, - [94342] = 4, + [94348] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5191), 1, - anon_sym_SEMI, + ACTIONS(6927), 1, + anon_sym_LT, STATE(3439), 2, sym_line_comment, sym_block_comment, - [94356] = 4, + [94362] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6941), 1, - sym_identifier, + ACTIONS(4909), 1, + anon_sym_COLON_COLON, STATE(3440), 2, sym_line_comment, sym_block_comment, - [94370] = 4, + [94376] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6943), 1, - sym_identifier, + ACTIONS(6929), 1, + anon_sym_SEMI, STATE(3441), 2, sym_line_comment, sym_block_comment, - [94384] = 4, + [94390] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6945), 1, - anon_sym_EQ_GT, + ACTIONS(5528), 1, + anon_sym_RPAREN, STATE(3442), 2, sym_line_comment, sym_block_comment, - [94398] = 4, + [94404] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5419), 1, - anon_sym_RPAREN, + ACTIONS(6931), 1, + anon_sym_SEMI, STATE(3443), 2, sym_line_comment, sym_block_comment, - [94412] = 4, + [94418] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5993), 1, - anon_sym_RBRACE, + ACTIONS(6933), 1, + sym_identifier, STATE(3444), 2, sym_line_comment, sym_block_comment, - [94426] = 4, + [94432] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6947), 1, - anon_sym_STAR_SLASH, + ACTIONS(6935), 1, + sym_identifier, STATE(3445), 2, sym_line_comment, sym_block_comment, - [94440] = 4, + [94446] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6949), 1, - sym_identifier, + ACTIONS(6122), 1, + anon_sym_RBRACE, STATE(3446), 2, sym_line_comment, sym_block_comment, - [94454] = 4, + [94460] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6951), 1, - anon_sym_SEMI, + ACTIONS(6937), 1, + anon_sym_RPAREN, STATE(3447), 2, sym_line_comment, sym_block_comment, - [94468] = 4, + [94474] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4541), 1, - anon_sym_COLON_COLON, + ACTIONS(6939), 1, + sym_identifier, STATE(3448), 2, sym_line_comment, sym_block_comment, - [94482] = 4, + [94488] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6953), 1, - anon_sym_RPAREN, + ACTIONS(6941), 1, + sym_identifier, STATE(3449), 2, sym_line_comment, sym_block_comment, - [94496] = 4, + [94502] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5151), 1, - anon_sym_COLON_COLON, + ACTIONS(1035), 1, + anon_sym_RBRACK, STATE(3450), 2, sym_line_comment, sym_block_comment, - [94510] = 4, + [94516] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(989), 1, - anon_sym_RBRACK, + ACTIONS(6943), 1, + sym__raw_string_literal_end, STATE(3451), 2, sym_line_comment, sym_block_comment, - [94524] = 4, + [94530] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5989), 1, - anon_sym_RBRACE, + ACTIONS(4475), 1, + anon_sym_fn, STATE(3452), 2, sym_line_comment, sym_block_comment, - [94538] = 4, + [94544] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6955), 1, - anon_sym_SEMI, + ACTIONS(6945), 1, + sym_identifier, STATE(3453), 2, sym_line_comment, sym_block_comment, - [94552] = 4, + [94558] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6957), 1, - anon_sym_RBRACK, + ACTIONS(5941), 1, + anon_sym_COLON_COLON, STATE(3454), 2, sym_line_comment, sym_block_comment, - [94566] = 4, + [94572] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6959), 1, - anon_sym_SEMI, + ACTIONS(3889), 1, + anon_sym_COLON_COLON, STATE(3455), 2, sym_line_comment, sym_block_comment, - [94580] = 4, + [94586] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6961), 1, - anon_sym_RBRACE, + ACTIONS(6947), 1, + anon_sym_SEMI, STATE(3456), 2, sym_line_comment, sym_block_comment, - [94594] = 4, + [94600] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6963), 1, - anon_sym_COLON, + ACTIONS(6949), 1, + anon_sym_LBRACK, STATE(3457), 2, sym_line_comment, sym_block_comment, - [94608] = 4, + [94614] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6965), 1, - anon_sym_RBRACK, + ACTIONS(6951), 1, + sym_identifier, STATE(3458), 2, sym_line_comment, sym_block_comment, - [94622] = 4, + [94628] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6967), 1, - anon_sym_SEMI, + ACTIONS(6953), 1, + sym_identifier, STATE(3459), 2, sym_line_comment, sym_block_comment, - [94636] = 4, + [94642] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5819), 1, - anon_sym_RPAREN, + ACTIONS(6955), 1, + sym_identifier, STATE(3460), 2, sym_line_comment, sym_block_comment, - [94650] = 4, + [94656] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5866), 1, - anon_sym_LBRACE, + ACTIONS(6957), 1, + sym_raw_string_literal_content, STATE(3461), 2, sym_line_comment, sym_block_comment, - [94664] = 4, + [94670] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(793), 1, - anon_sym_RBRACK, + ACTIONS(6601), 1, + anon_sym_SEMI, STATE(3462), 2, sym_line_comment, sym_block_comment, - [94678] = 4, + [94684] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4732), 1, - anon_sym_COLON_COLON, + ACTIONS(6959), 1, + anon_sym_SEMI, STATE(3463), 2, sym_line_comment, sym_block_comment, - [94692] = 4, + [94698] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6969), 1, - anon_sym_SEMI, + ACTIONS(4123), 1, + anon_sym_COLON_COLON, STATE(3464), 2, sym_line_comment, sym_block_comment, - [94706] = 4, + [94712] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6971), 1, - sym_identifier, + ACTIONS(5840), 1, + anon_sym_COLON_COLON, STATE(3465), 2, sym_line_comment, sym_block_comment, - [94720] = 4, + [94726] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5826), 1, - anon_sym_RBRACK, + ACTIONS(6961), 1, + anon_sym_SEMI, STATE(3466), 2, sym_line_comment, sym_block_comment, - [94734] = 4, + [94740] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6973), 1, - anon_sym_RBRACE, + ACTIONS(6963), 1, + anon_sym_SEMI, STATE(3467), 2, sym_line_comment, sym_block_comment, - [94748] = 4, + [94754] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6975), 1, - anon_sym_SEMI, + ACTIONS(6965), 1, + anon_sym_RBRACK, STATE(3468), 2, sym_line_comment, sym_block_comment, - [94762] = 4, + [94768] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4119), 1, + ACTIONS(6967), 1, anon_sym_COLON_COLON, STATE(3469), 2, sym_line_comment, sym_block_comment, - [94776] = 4, + [94782] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5764), 1, - anon_sym_COLON_COLON, + ACTIONS(6969), 1, + sym_identifier, STATE(3470), 2, sym_line_comment, sym_block_comment, - [94790] = 4, + [94796] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6505), 1, - anon_sym_LBRACK, + ACTIONS(6971), 1, + anon_sym_SEMI, STATE(3471), 2, sym_line_comment, sym_block_comment, - [94804] = 4, + [94810] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5515), 1, - anon_sym_RPAREN, + ACTIONS(6973), 1, + anon_sym_EQ, STATE(3472), 2, sym_line_comment, sym_block_comment, - [94818] = 4, + [94824] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6977), 1, - anon_sym_RBRACK, + ACTIONS(6975), 1, + anon_sym_fn, STATE(3473), 2, sym_line_comment, sym_block_comment, - [94832] = 4, + [94838] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6979), 1, - anon_sym_COLON_COLON, + ACTIONS(6977), 1, + anon_sym_LPAREN, STATE(3474), 2, sym_line_comment, sym_block_comment, - [94846] = 4, + [94852] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6981), 1, - anon_sym_SEMI, + ACTIONS(6979), 1, + anon_sym_COLON_COLON, STATE(3475), 2, sym_line_comment, sym_block_comment, - [94860] = 4, + [94866] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6983), 1, - sym_identifier, + ACTIONS(5143), 1, + anon_sym_SEMI, STATE(3476), 2, sym_line_comment, sym_block_comment, - [94874] = 4, + [94880] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5830), 1, - anon_sym_RPAREN, + ACTIONS(6981), 1, + anon_sym_RBRACE, STATE(3477), 2, sym_line_comment, sym_block_comment, - [94888] = 4, + [94894] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6985), 1, - anon_sym_fn, + ACTIONS(6983), 1, + anon_sym_COLON_COLON, STATE(3478), 2, sym_line_comment, sym_block_comment, - [94902] = 4, + [94908] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6987), 1, - sym__raw_string_literal_end, + ACTIONS(6985), 1, + anon_sym_SEMI, STATE(3479), 2, sym_line_comment, sym_block_comment, - [94916] = 4, + [94922] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6989), 1, - anon_sym_COLON_COLON, + ACTIONS(6987), 1, + anon_sym_COLON, STATE(3480), 2, sym_line_comment, sym_block_comment, - [94930] = 4, + [94936] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6991), 1, - anon_sym_RBRACK, + ACTIONS(4943), 1, + anon_sym_COLON_COLON, STATE(3481), 2, sym_line_comment, sym_block_comment, - [94944] = 4, + [94950] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6993), 1, - anon_sym_COLON, + ACTIONS(6605), 1, + anon_sym_SEMI, STATE(3482), 2, sym_line_comment, sym_block_comment, - [94958] = 4, + [94964] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6995), 1, + ACTIONS(6989), 1, anon_sym_COLON_COLON, STATE(3483), 2, sym_line_comment, sym_block_comment, - [94972] = 4, + [94978] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6997), 1, - anon_sym_RBRACE, + ACTIONS(6991), 1, + anon_sym_fn, STATE(3484), 2, sym_line_comment, sym_block_comment, - [94986] = 4, + [94992] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6435), 1, - anon_sym_RBRACE, + ACTIONS(6993), 1, + anon_sym_COLON, STATE(3485), 2, sym_line_comment, sym_block_comment, - [95000] = 4, + [95006] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4931), 1, - anon_sym_COLON_COLON, + ACTIONS(6995), 1, + anon_sym_LBRACE, STATE(3486), 2, sym_line_comment, sym_block_comment, - [95014] = 4, + [95020] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6329), 1, - anon_sym_RBRACE, + ACTIONS(6997), 1, + anon_sym_SEMI, STATE(3487), 2, sym_line_comment, sym_block_comment, - [95028] = 4, + [95034] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(6999), 1, - anon_sym_COLON_COLON, + anon_sym_SEMI, STATE(3488), 2, sym_line_comment, sym_block_comment, - [95042] = 4, + [95048] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(7001), 1, - anon_sym_fn, + sym__line_doc_content, STATE(3489), 2, sym_line_comment, sym_block_comment, - [95056] = 4, + [95062] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5957), 1, - anon_sym_RBRACE, + ACTIONS(7003), 1, + anon_sym_RBRACK, STATE(3490), 2, sym_line_comment, sym_block_comment, - [95070] = 4, + [95076] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7003), 1, - anon_sym_LBRACE, + ACTIONS(7005), 1, + anon_sym_SEMI, STATE(3491), 2, sym_line_comment, sym_block_comment, - [95084] = 4, + [95090] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7005), 1, + ACTIONS(5167), 1, anon_sym_SEMI, STATE(3492), 2, sym_line_comment, sym_block_comment, - [95098] = 4, + [95104] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(7007), 1, - anon_sym_EQ_GT, + sym_identifier, STATE(3493), 2, sym_line_comment, sym_block_comment, - [95112] = 4, + [95118] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(7009), 1, - sym__line_doc_content, + sym_raw_string_literal_content, STATE(3494), 2, sym_line_comment, sym_block_comment, - [95126] = 4, + [95132] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7011), 1, - sym__line_doc_content, + ACTIONS(6541), 1, + anon_sym_COLON_COLON, STATE(3495), 2, sym_line_comment, sym_block_comment, - [95140] = 4, + [95146] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5842), 1, + ACTIONS(7011), 1, anon_sym_RPAREN, STATE(3496), 2, sym_line_comment, sym_block_comment, - [95154] = 4, + [95160] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(7013), 1, - sym__line_doc_content, + sym_identifier, STATE(3497), 2, sym_line_comment, sym_block_comment, - [95168] = 4, + [95174] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(7015), 1, - sym_identifier, + anon_sym_COLON_COLON, STATE(3498), 2, sym_line_comment, sym_block_comment, - [95182] = 4, - ACTIONS(3), 1, + [95188] = 4, + ACTIONS(101), 1, anon_sym_SLASH_SLASH, - ACTIONS(5), 1, + ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(7017), 1, - aux_sym_line_comment_token2, + anon_sym_SEMI, STATE(3499), 2, sym_line_comment, sym_block_comment, - [95196] = 4, + [95202] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(7019), 1, - sym_raw_string_literal_content, + anon_sym_SEMI, STATE(3500), 2, sym_line_comment, sym_block_comment, - [95210] = 4, + [95216] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5947), 1, - anon_sym_RBRACE, + ACTIONS(7021), 1, + anon_sym_COLON_COLON, STATE(3501), 2, sym_line_comment, sym_block_comment, - [95224] = 4, + [95230] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7021), 1, - anon_sym_COLON, + ACTIONS(7023), 1, + sym__line_doc_content, STATE(3502), 2, sym_line_comment, sym_block_comment, - [95238] = 4, + [95244] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7023), 1, - anon_sym_RPAREN, + ACTIONS(7025), 1, + anon_sym_SEMI, STATE(3503), 2, sym_line_comment, sym_block_comment, - [95252] = 4, + [95258] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7025), 1, + ACTIONS(7027), 1, anon_sym_COLON_COLON, STATE(3504), 2, sym_line_comment, sym_block_comment, - [95266] = 4, + [95272] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5850), 1, - anon_sym_RPAREN, + ACTIONS(7029), 1, + anon_sym_SEMI, STATE(3505), 2, sym_line_comment, sym_block_comment, - [95280] = 4, + [95286] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7027), 1, - sym_self, + ACTIONS(7031), 1, + anon_sym_SEMI, STATE(3506), 2, sym_line_comment, sym_block_comment, - [95294] = 4, + [95300] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7029), 1, + ACTIONS(7033), 1, anon_sym_COLON_COLON, STATE(3507), 2, sym_line_comment, sym_block_comment, - [95308] = 4, + [95314] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7031), 1, - anon_sym_COLON, + ACTIONS(7035), 1, + anon_sym_LBRACE, STATE(3508), 2, sym_line_comment, sym_block_comment, - [95322] = 4, + [95328] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7033), 1, + ACTIONS(7037), 1, sym_identifier, STATE(3509), 2, sym_line_comment, sym_block_comment, - [95336] = 4, + [95342] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7035), 1, - anon_sym_COLON_COLON, + ACTIONS(7039), 1, + anon_sym_COLON, STATE(3510), 2, sym_line_comment, sym_block_comment, - [95350] = 4, + [95356] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5930), 1, - anon_sym_COLON_COLON, + ACTIONS(3101), 1, + anon_sym_PLUS, STATE(3511), 2, sym_line_comment, sym_block_comment, - [95364] = 4, + [95370] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7037), 1, - anon_sym_SEMI, + ACTIONS(7041), 1, + ts_builtin_sym_end, STATE(3512), 2, sym_line_comment, sym_block_comment, - [95378] = 4, + [95384] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7039), 1, - anon_sym_COLON_COLON, + ACTIONS(7043), 1, + sym_raw_string_literal_content, STATE(3513), 2, sym_line_comment, sym_block_comment, - [95392] = 4, + [95398] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7041), 1, - anon_sym_LBRACE, + ACTIONS(3473), 1, + anon_sym_COLON_COLON, STATE(3514), 2, sym_line_comment, sym_block_comment, - [95406] = 4, + [95412] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6649), 1, - anon_sym_COLON_COLON, + ACTIONS(6049), 1, + anon_sym_GT, STATE(3515), 2, sym_line_comment, sym_block_comment, - [95420] = 4, + [95426] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7043), 1, - sym_identifier, + ACTIONS(7045), 1, + anon_sym_COLON_COLON, STATE(3516), 2, sym_line_comment, sym_block_comment, - [95434] = 4, + [95440] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4487), 1, - anon_sym_fn, + ACTIONS(7047), 1, + anon_sym_SEMI, STATE(3517), 2, sym_line_comment, sym_block_comment, - [95448] = 4, + [95454] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7045), 1, - ts_builtin_sym_end, + ACTIONS(7049), 1, + anon_sym_LBRACE, STATE(3518), 2, sym_line_comment, sym_block_comment, - [95462] = 4, + [95468] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7047), 1, + ACTIONS(7051), 1, sym_raw_string_literal_content, STATE(3519), 2, sym_line_comment, sym_block_comment, - [95476] = 4, + [95482] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3465), 1, + ACTIONS(5211), 1, anon_sym_COLON_COLON, STATE(3520), 2, sym_line_comment, sym_block_comment, - [95490] = 4, + [95496] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7049), 1, - anon_sym_RBRACK, + ACTIONS(7053), 1, + anon_sym_COLON_COLON, STATE(3521), 2, sym_line_comment, sym_block_comment, - [95504] = 4, + [95510] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7051), 1, - anon_sym_COLON_COLON, + ACTIONS(5858), 1, + anon_sym_LBRACE, STATE(3522), 2, sym_line_comment, sym_block_comment, - [95518] = 4, + [95524] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3889), 1, + ACTIONS(5856), 1, anon_sym_COLON_COLON, STATE(3523), 2, sym_line_comment, sym_block_comment, - [95532] = 4, + [95538] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7053), 1, - anon_sym_LBRACE, + ACTIONS(7055), 1, + anon_sym_COLON_COLON, STATE(3524), 2, sym_line_comment, sym_block_comment, - [95546] = 4, + [95552] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7055), 1, - sym_raw_string_literal_content, + ACTIONS(5868), 1, + anon_sym_LBRACE, STATE(3525), 2, sym_line_comment, sym_block_comment, - [95560] = 4, + [95566] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5155), 1, + ACTIONS(7057), 1, anon_sym_COLON_COLON, STATE(3526), 2, sym_line_comment, sym_block_comment, - [95574] = 4, + [95580] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7057), 1, + ACTIONS(5207), 1, anon_sym_COLON_COLON, STATE(3527), 2, sym_line_comment, sym_block_comment, - [95588] = 4, + [95594] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5742), 1, - anon_sym_LBRACE, + ACTIONS(5101), 1, + anon_sym_COLON_COLON, STATE(3528), 2, sym_line_comment, sym_block_comment, - [95602] = 4, + [95608] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5738), 1, + ACTIONS(4081), 1, anon_sym_COLON_COLON, STATE(3529), 2, sym_line_comment, sym_block_comment, - [95616] = 4, + [95622] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -185469,147 +185494,147 @@ static const uint16_t ts_small_parse_table[] = { STATE(3530), 2, sym_line_comment, sym_block_comment, - [95630] = 4, + [95636] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5768), 1, - anon_sym_LBRACE, + ACTIONS(7061), 1, + sym_identifier, STATE(3531), 2, sym_line_comment, sym_block_comment, - [95644] = 4, + [95650] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7061), 1, + ACTIONS(4678), 1, anon_sym_COLON_COLON, STATE(3532), 2, sym_line_comment, sym_block_comment, - [95658] = 4, + [95664] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5207), 1, - anon_sym_COLON_COLON, + ACTIONS(3051), 1, + anon_sym_PLUS, STATE(3533), 2, sym_line_comment, sym_block_comment, - [95672] = 4, + [95678] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5133), 1, - anon_sym_COLON_COLON, + ACTIONS(7063), 1, + sym_identifier, STATE(3534), 2, sym_line_comment, sym_block_comment, - [95686] = 4, + [95692] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4077), 1, - anon_sym_COLON_COLON, + ACTIONS(7065), 1, + anon_sym_COLON, STATE(3535), 2, sym_line_comment, sym_block_comment, - [95700] = 4, + [95706] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7063), 1, - anon_sym_COLON_COLON, + ACTIONS(7067), 1, + anon_sym_LBRACK, STATE(3536), 2, sym_line_comment, sym_block_comment, - [95714] = 4, + [95720] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7065), 1, - anon_sym_SEMI, + ACTIONS(7069), 1, + sym_identifier, STATE(3537), 2, sym_line_comment, sym_block_comment, - [95728] = 4, + [95734] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7067), 1, - sym_identifier, + ACTIONS(7071), 1, + anon_sym_LBRACK, STATE(3538), 2, sym_line_comment, sym_block_comment, - [95742] = 4, + [95748] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7069), 1, - sym_identifier, + ACTIONS(7073), 1, + anon_sym_COLON, STATE(3539), 2, sym_line_comment, sym_block_comment, - [95756] = 4, + [95762] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7071), 1, - anon_sym_SEMI, + ACTIONS(7075), 1, + anon_sym_COLON, STATE(3540), 2, sym_line_comment, sym_block_comment, - [95770] = 4, + [95776] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7073), 1, - anon_sym_COLON, + ACTIONS(4115), 1, + anon_sym_RPAREN, STATE(3541), 2, sym_line_comment, sym_block_comment, - [95784] = 4, + [95790] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7075), 1, - anon_sym_LBRACK, + ACTIONS(7077), 1, + anon_sym_SEMI, STATE(3542), 2, sym_line_comment, sym_block_comment, - [95798] = 4, + [95804] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7077), 1, - sym_identifier, + ACTIONS(5633), 1, + anon_sym_RPAREN, STATE(3543), 2, sym_line_comment, sym_block_comment, - [95812] = 4, + [95818] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(7079), 1, - anon_sym_LBRACK, + anon_sym_COLON, STATE(3544), 2, sym_line_comment, sym_block_comment, - [95826] = 4, + [95832] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, @@ -185619,677 +185644,697 @@ static const uint16_t ts_small_parse_table[] = { STATE(3545), 2, sym_line_comment, sym_block_comment, - [95840] = 4, + [95846] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(7083), 1, - anon_sym_COLON, + anon_sym_RBRACE, STATE(3546), 2, sym_line_comment, sym_block_comment, - [95854] = 4, + [95860] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, ACTIONS(7085), 1, - anon_sym_RPAREN, + sym_identifier, STATE(3547), 2, sym_line_comment, sym_block_comment, - [95868] = 4, + [95874] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6403), 1, - anon_sym_RBRACE, + ACTIONS(7087), 1, + anon_sym_SEMI, STATE(3548), 2, sym_line_comment, sym_block_comment, - [95882] = 4, + [95888] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7087), 1, - anon_sym_COLON, + ACTIONS(7089), 1, + sym_identifier, STATE(3549), 2, sym_line_comment, sym_block_comment, - [95896] = 4, + [95902] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5203), 1, - anon_sym_SEMI, + ACTIONS(7091), 1, + sym__raw_string_literal_end, STATE(3550), 2, sym_line_comment, sym_block_comment, - [95910] = 4, + [95916] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7089), 1, - anon_sym_COLON, + ACTIONS(7093), 1, + sym_identifier, STATE(3551), 2, sym_line_comment, sym_block_comment, - [95924] = 4, + [95930] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7091), 1, - sym_identifier, + ACTIONS(7095), 1, + anon_sym_RPAREN, STATE(3552), 2, sym_line_comment, sym_block_comment, - [95938] = 4, + [95944] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7093), 1, - anon_sym_RBRACK, + ACTIONS(7097), 1, + sym__raw_string_literal_end, STATE(3553), 2, sym_line_comment, sym_block_comment, - [95952] = 4, + [95958] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7095), 1, - sym_identifier, + ACTIONS(7099), 1, + anon_sym_COLON, STATE(3554), 2, sym_line_comment, sym_block_comment, - [95966] = 4, + [95972] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7097), 1, - sym_identifier, + ACTIONS(7101), 1, + anon_sym_COLON, STATE(3555), 2, sym_line_comment, sym_block_comment, - [95980] = 4, + [95986] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7099), 1, + ACTIONS(7103), 1, anon_sym_SEMI, STATE(3556), 2, sym_line_comment, sym_block_comment, - [95994] = 4, + [96000] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5209), 1, - anon_sym_SEMI, + ACTIONS(7105), 1, + sym_identifier, STATE(3557), 2, sym_line_comment, sym_block_comment, - [96008] = 4, + [96014] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7101), 1, + ACTIONS(7107), 1, sym_identifier, STATE(3558), 2, sym_line_comment, sym_block_comment, - [96022] = 4, + [96028] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6549), 1, - anon_sym_SEMI, + ACTIONS(7109), 1, + anon_sym_COLON, STATE(3559), 2, sym_line_comment, sym_block_comment, - [96036] = 4, + [96042] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7103), 1, - anon_sym_RPAREN, + ACTIONS(7111), 1, + sym_identifier, STATE(3560), 2, sym_line_comment, sym_block_comment, - [96050] = 4, + [96056] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7105), 1, - anon_sym_COLON, + ACTIONS(7113), 1, + sym__raw_string_literal_end, STATE(3561), 2, sym_line_comment, sym_block_comment, - [96064] = 4, + [96070] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7107), 1, + ACTIONS(7115), 1, sym_identifier, STATE(3562), 2, sym_line_comment, sym_block_comment, - [96078] = 4, + [96084] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5541), 1, + ACTIONS(4119), 1, anon_sym_RPAREN, STATE(3563), 2, sym_line_comment, sym_block_comment, - [96092] = 4, + [96098] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7109), 1, + ACTIONS(7117), 1, sym_identifier, STATE(3564), 2, sym_line_comment, sym_block_comment, - [96106] = 4, + [96112] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7111), 1, + ACTIONS(7119), 1, anon_sym_COLON, STATE(3565), 2, sym_line_comment, sym_block_comment, - [96120] = 4, + [96126] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7113), 1, - anon_sym_COLON, + ACTIONS(7121), 1, + sym_identifier, STATE(3566), 2, sym_line_comment, sym_block_comment, - [96134] = 4, + [96140] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(6541), 1, + ACTIONS(7123), 1, anon_sym_SEMI, STATE(3567), 2, sym_line_comment, sym_block_comment, - [96148] = 4, + [96154] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5922), 1, + ACTIONS(7125), 1, anon_sym_RBRACE, STATE(3568), 2, sym_line_comment, sym_block_comment, - [96162] = 4, + [96168] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7115), 1, - anon_sym_SEMI, + ACTIONS(7127), 1, + sym_identifier, STATE(3569), 2, sym_line_comment, sym_block_comment, - [96176] = 4, + [96182] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4089), 1, - anon_sym_RPAREN, + ACTIONS(7129), 1, + anon_sym_SEMI, STATE(3570), 2, sym_line_comment, sym_block_comment, - [96190] = 4, + [96196] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7117), 1, - anon_sym_COLON, + ACTIONS(7131), 1, + anon_sym_SEMI, STATE(3571), 2, sym_line_comment, sym_block_comment, - [96204] = 4, + [96210] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7119), 1, - anon_sym_SEMI, + ACTIONS(7133), 1, + anon_sym_EQ, STATE(3572), 2, sym_line_comment, sym_block_comment, - [96218] = 4, + [96224] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(3099), 1, - anon_sym_PLUS, + ACTIONS(6448), 1, + anon_sym_RBRACE, STATE(3573), 2, sym_line_comment, sym_block_comment, - [96232] = 4, + [96238] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7121), 1, - anon_sym_SEMI, + ACTIONS(7135), 1, + anon_sym_RPAREN, STATE(3574), 2, sym_line_comment, sym_block_comment, - [96246] = 4, + [96252] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7123), 1, - anon_sym_LPAREN, + ACTIONS(5145), 1, + anon_sym_SEMI, STATE(3575), 2, sym_line_comment, sym_block_comment, - [96260] = 4, + [96266] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(5902), 1, - anon_sym_RBRACE, + ACTIONS(7137), 1, + anon_sym_SEMI, STATE(3576), 2, sym_line_comment, sym_block_comment, - [96274] = 4, + [96280] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(951), 1, - anon_sym_EQ_GT, + ACTIONS(7139), 1, + anon_sym_COLON, STATE(3577), 2, sym_line_comment, sym_block_comment, - [96288] = 4, + [96294] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7125), 1, - anon_sym_EQ, + ACTIONS(5637), 1, + anon_sym_RPAREN, STATE(3578), 2, sym_line_comment, sym_block_comment, - [96302] = 4, + [96308] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7127), 1, - sym_identifier, + ACTIONS(7141), 1, + anon_sym_COLON, STATE(3579), 2, sym_line_comment, sym_block_comment, - [96316] = 4, + [96322] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7129), 1, - anon_sym_SEMI, + ACTIONS(7143), 1, + anon_sym_LBRACK, STATE(3580), 2, sym_line_comment, sym_block_comment, - [96330] = 4, + [96336] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7131), 1, - anon_sym_SEMI, + ACTIONS(7145), 1, + anon_sym_LBRACK, STATE(3581), 2, sym_line_comment, sym_block_comment, - [96344] = 4, + [96350] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7133), 1, - anon_sym_EQ, + ACTIONS(7147), 1, + anon_sym_COLON, STATE(3582), 2, sym_line_comment, sym_block_comment, - [96358] = 4, + [96364] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7135), 1, - anon_sym_COLON, + ACTIONS(6426), 1, + anon_sym_RBRACE, STATE(3583), 2, sym_line_comment, sym_block_comment, - [96372] = 4, + [96378] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7137), 1, - sym__raw_string_literal_end, + ACTIONS(5902), 1, + anon_sym_RBRACE, STATE(3584), 2, sym_line_comment, sym_block_comment, - [96386] = 4, + [96392] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7139), 1, + ACTIONS(7149), 1, anon_sym_COLON, STATE(3585), 2, sym_line_comment, sym_block_comment, - [96400] = 4, + [96406] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7141), 1, - anon_sym_LBRACK, + ACTIONS(7151), 1, + anon_sym_COLON, STATE(3586), 2, sym_line_comment, sym_block_comment, - [96414] = 4, + [96420] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7143), 1, - anon_sym_LBRACK, + ACTIONS(7153), 1, + sym_identifier, STATE(3587), 2, sym_line_comment, sym_block_comment, - [96428] = 4, + [96434] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7145), 1, + ACTIONS(7155), 1, anon_sym_COLON, STATE(3588), 2, sym_line_comment, sym_block_comment, - [96442] = 4, + [96448] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7147), 1, - sym_identifier, + ACTIONS(7157), 1, + anon_sym_COLON, STATE(3589), 2, sym_line_comment, sym_block_comment, - [96456] = 4, + [96462] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7149), 1, - sym_identifier, + ACTIONS(7159), 1, + anon_sym_COLON, STATE(3590), 2, sym_line_comment, sym_block_comment, - [96470] = 4, + [96476] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7151), 1, + ACTIONS(7161), 1, anon_sym_COLON, STATE(3591), 2, sym_line_comment, sym_block_comment, - [96484] = 4, + [96490] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7153), 1, + ACTIONS(7163), 1, anon_sym_COLON, STATE(3592), 2, sym_line_comment, sym_block_comment, - [96498] = 4, + [96504] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7155), 1, - anon_sym_SEMI, + ACTIONS(4499), 1, + anon_sym_fn, STATE(3593), 2, sym_line_comment, sym_block_comment, - [96512] = 4, + [96518] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7157), 1, - anon_sym_COLON, + ACTIONS(7165), 1, + anon_sym_EQ_GT, STATE(3594), 2, sym_line_comment, sym_block_comment, - [96526] = 4, + [96532] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7159), 1, - anon_sym_COLON, + ACTIONS(3979), 1, + sym_identifier, STATE(3595), 2, sym_line_comment, sym_block_comment, - [96540] = 4, + [96546] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7161), 1, - anon_sym_COLON, + ACTIONS(7167), 1, + sym_identifier, STATE(3596), 2, sym_line_comment, sym_block_comment, - [96554] = 4, + [96560] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7163), 1, - anon_sym_COLON, + ACTIONS(7169), 1, + anon_sym_SEMI, STATE(3597), 2, sym_line_comment, sym_block_comment, - [96568] = 4, + [96574] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7165), 1, - sym_identifier, + ACTIONS(7171), 1, + anon_sym_SEMI, STATE(3598), 2, sym_line_comment, sym_block_comment, - [96582] = 4, + [96588] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(4511), 1, - anon_sym_fn, + ACTIONS(7173), 1, + sym_identifier, STATE(3599), 2, sym_line_comment, sym_block_comment, - [96596] = 4, + [96602] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7167), 1, - anon_sym_SEMI, + ACTIONS(7175), 1, + anon_sym_fn, STATE(3600), 2, sym_line_comment, sym_block_comment, - [96610] = 4, + [96616] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7169), 1, - sym_identifier, + ACTIONS(7177), 1, + sym_raw_string_literal_content, STATE(3601), 2, sym_line_comment, sym_block_comment, - [96624] = 4, + [96630] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7171), 1, + ACTIONS(7179), 1, sym_identifier, STATE(3602), 2, sym_line_comment, sym_block_comment, - [96638] = 4, + [96644] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7173), 1, - anon_sym_SEMI, + ACTIONS(7181), 1, + sym_identifier, STATE(3603), 2, sym_line_comment, sym_block_comment, - [96652] = 4, + [96658] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7175), 1, - anon_sym_RPAREN, + ACTIONS(7183), 1, + sym_identifier, STATE(3604), 2, sym_line_comment, sym_block_comment, - [96666] = 4, + [96672] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7177), 1, - sym_identifier, + ACTIONS(7185), 1, + anon_sym_EQ_GT, STATE(3605), 2, sym_line_comment, sym_block_comment, - [96680] = 4, + [96686] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7179), 1, - anon_sym_fn, + ACTIONS(6005), 1, + anon_sym_RBRACE, STATE(3606), 2, sym_line_comment, sym_block_comment, - [96694] = 4, + [96700] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7181), 1, + ACTIONS(7187), 1, sym_identifier, STATE(3607), 2, sym_line_comment, sym_block_comment, - [96708] = 4, + [96714] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7183), 1, - sym_identifier, + ACTIONS(7189), 1, + anon_sym_RPAREN, STATE(3608), 2, sym_line_comment, sym_block_comment, - [96722] = 4, + [96728] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7185), 1, - sym_identifier, + ACTIONS(5155), 1, + anon_sym_COLON_COLON, STATE(3609), 2, sym_line_comment, sym_block_comment, - [96736] = 4, + [96742] = 4, ACTIONS(101), 1, anon_sym_SLASH_SLASH, ACTIONS(103), 1, anon_sym_SLASH_STAR, - ACTIONS(7187), 1, - anon_sym_SEMI, + ACTIONS(915), 1, + anon_sym_RBRACK, STATE(3610), 2, sym_line_comment, sym_block_comment, - [96750] = 1, - ACTIONS(7189), 1, - ts_builtin_sym_end, - [96754] = 1, + [96756] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, ACTIONS(7191), 1, - ts_builtin_sym_end, - [96758] = 1, + sym_identifier, + STATE(3611), 2, + sym_line_comment, + sym_block_comment, + [96770] = 4, + ACTIONS(101), 1, + anon_sym_SLASH_SLASH, + ACTIONS(103), 1, + anon_sym_SLASH_STAR, + ACTIONS(6709), 1, + anon_sym_SEMI, + STATE(3612), 2, + sym_line_comment, + sym_block_comment, + [96784] = 1, ACTIONS(7193), 1, ts_builtin_sym_end, - [96762] = 1, + [96788] = 1, ACTIONS(7195), 1, ts_builtin_sym_end, - [96766] = 1, + [96792] = 1, ACTIONS(7197), 1, ts_builtin_sym_end, - [96770] = 1, + [96796] = 1, ACTIONS(7199), 1, ts_builtin_sym_end, - [96774] = 1, + [96800] = 1, ACTIONS(7201), 1, ts_builtin_sym_end, + [96804] = 1, + ACTIONS(7203), 1, + ts_builtin_sym_end, + [96808] = 1, + ACTIONS(7205), 1, + ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { @@ -186306,80 +186351,80 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1014)] = 786, [SMALL_STATE(1015)] = 860, [SMALL_STATE(1016)] = 923, - [SMALL_STATE(1017)] = 986, - [SMALL_STATE(1018)] = 1053, + [SMALL_STATE(1017)] = 990, + [SMALL_STATE(1018)] = 1057, [SMALL_STATE(1019)] = 1120, [SMALL_STATE(1020)] = 1183, - [SMALL_STATE(1021)] = 1254, - [SMALL_STATE(1022)] = 1325, + [SMALL_STATE(1021)] = 1246, + [SMALL_STATE(1022)] = 1317, [SMALL_STATE(1023)] = 1388, - [SMALL_STATE(1024)] = 1455, + [SMALL_STATE(1024)] = 1451, [SMALL_STATE(1025)] = 1518, [SMALL_STATE(1026)] = 1581, - [SMALL_STATE(1027)] = 1652, - [SMALL_STATE(1028)] = 1715, - [SMALL_STATE(1029)] = 1782, - [SMALL_STATE(1030)] = 1845, - [SMALL_STATE(1031)] = 1916, + [SMALL_STATE(1027)] = 1644, + [SMALL_STATE(1028)] = 1707, + [SMALL_STATE(1029)] = 1778, + [SMALL_STATE(1030)] = 1849, + [SMALL_STATE(1031)] = 1912, [SMALL_STATE(1032)] = 1979, - [SMALL_STATE(1033)] = 2041, - [SMALL_STATE(1034)] = 2103, - [SMALL_STATE(1035)] = 2165, - [SMALL_STATE(1036)] = 2227, - [SMALL_STATE(1037)] = 2289, - [SMALL_STATE(1038)] = 2359, - [SMALL_STATE(1039)] = 2421, - [SMALL_STATE(1040)] = 2483, - [SMALL_STATE(1041)] = 2545, - [SMALL_STATE(1042)] = 2613, + [SMALL_STATE(1033)] = 2047, + [SMALL_STATE(1034)] = 2109, + [SMALL_STATE(1035)] = 2171, + [SMALL_STATE(1036)] = 2233, + [SMALL_STATE(1037)] = 2295, + [SMALL_STATE(1038)] = 2357, + [SMALL_STATE(1039)] = 2419, + [SMALL_STATE(1040)] = 2481, + [SMALL_STATE(1041)] = 2551, + [SMALL_STATE(1042)] = 2617, [SMALL_STATE(1043)] = 2679, [SMALL_STATE(1044)] = 2741, - [SMALL_STATE(1045)] = 2840, - [SMALL_STATE(1046)] = 2939, - [SMALL_STATE(1047)] = 3000, - [SMALL_STATE(1048)] = 3063, - [SMALL_STATE(1049)] = 3128, - [SMALL_STATE(1050)] = 3189, - [SMALL_STATE(1051)] = 3252, - [SMALL_STATE(1052)] = 3313, - [SMALL_STATE(1053)] = 3374, - [SMALL_STATE(1054)] = 3437, - [SMALL_STATE(1055)] = 3500, - [SMALL_STATE(1056)] = 3563, - [SMALL_STATE(1057)] = 3624, - [SMALL_STATE(1058)] = 3685, - [SMALL_STATE(1059)] = 3750, - [SMALL_STATE(1060)] = 3813, - [SMALL_STATE(1061)] = 3876, - [SMALL_STATE(1062)] = 3939, - [SMALL_STATE(1063)] = 4002, - [SMALL_STATE(1064)] = 4065, - [SMALL_STATE(1065)] = 4128, - [SMALL_STATE(1066)] = 4189, - [SMALL_STATE(1067)] = 4250, - [SMALL_STATE(1068)] = 4311, - [SMALL_STATE(1069)] = 4372, - [SMALL_STATE(1070)] = 4437, - [SMALL_STATE(1071)] = 4502, - [SMALL_STATE(1072)] = 4607, - [SMALL_STATE(1073)] = 4670, - [SMALL_STATE(1074)] = 4733, - [SMALL_STATE(1075)] = 4796, - [SMALL_STATE(1076)] = 4859, - [SMALL_STATE(1077)] = 4920, - [SMALL_STATE(1078)] = 4981, - [SMALL_STATE(1079)] = 5042, - [SMALL_STATE(1080)] = 5105, - [SMALL_STATE(1081)] = 5210, - [SMALL_STATE(1082)] = 5315, - [SMALL_STATE(1083)] = 5378, - [SMALL_STATE(1084)] = 5439, - [SMALL_STATE(1085)] = 5500, - [SMALL_STATE(1086)] = 5563, - [SMALL_STATE(1087)] = 5624, - [SMALL_STATE(1088)] = 5685, - [SMALL_STATE(1089)] = 5790, - [SMALL_STATE(1090)] = 5895, + [SMALL_STATE(1045)] = 2802, + [SMALL_STATE(1046)] = 2867, + [SMALL_STATE(1047)] = 2930, + [SMALL_STATE(1048)] = 2991, + [SMALL_STATE(1049)] = 3052, + [SMALL_STATE(1050)] = 3115, + [SMALL_STATE(1051)] = 3180, + [SMALL_STATE(1052)] = 3243, + [SMALL_STATE(1053)] = 3304, + [SMALL_STATE(1054)] = 3365, + [SMALL_STATE(1055)] = 3470, + [SMALL_STATE(1056)] = 3535, + [SMALL_STATE(1057)] = 3598, + [SMALL_STATE(1058)] = 3659, + [SMALL_STATE(1059)] = 3720, + [SMALL_STATE(1060)] = 3781, + [SMALL_STATE(1061)] = 3844, + [SMALL_STATE(1062)] = 3905, + [SMALL_STATE(1063)] = 4010, + [SMALL_STATE(1064)] = 4071, + [SMALL_STATE(1065)] = 4132, + [SMALL_STATE(1066)] = 4197, + [SMALL_STATE(1067)] = 4258, + [SMALL_STATE(1068)] = 4321, + [SMALL_STATE(1069)] = 4426, + [SMALL_STATE(1070)] = 4489, + [SMALL_STATE(1071)] = 4552, + [SMALL_STATE(1072)] = 4613, + [SMALL_STATE(1073)] = 4674, + [SMALL_STATE(1074)] = 4737, + [SMALL_STATE(1075)] = 4842, + [SMALL_STATE(1076)] = 4903, + [SMALL_STATE(1077)] = 4966, + [SMALL_STATE(1078)] = 5065, + [SMALL_STATE(1079)] = 5128, + [SMALL_STATE(1080)] = 5233, + [SMALL_STATE(1081)] = 5294, + [SMALL_STATE(1082)] = 5355, + [SMALL_STATE(1083)] = 5454, + [SMALL_STATE(1084)] = 5517, + [SMALL_STATE(1085)] = 5622, + [SMALL_STATE(1086)] = 5685, + [SMALL_STATE(1087)] = 5748, + [SMALL_STATE(1088)] = 5811, + [SMALL_STATE(1089)] = 5874, + [SMALL_STATE(1090)] = 5937, [SMALL_STATE(1091)] = 6000, [SMALL_STATE(1092)] = 6060, [SMALL_STATE(1093)] = 6120, @@ -186506,251 +186551,251 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1214)] = 13380, [SMALL_STATE(1215)] = 13440, [SMALL_STATE(1216)] = 13500, - [SMALL_STATE(1217)] = 13560, - [SMALL_STATE(1218)] = 13620, - [SMALL_STATE(1219)] = 13680, - [SMALL_STATE(1220)] = 13740, - [SMALL_STATE(1221)] = 13800, - [SMALL_STATE(1222)] = 13860, - [SMALL_STATE(1223)] = 13920, - [SMALL_STATE(1224)] = 13980, - [SMALL_STATE(1225)] = 14040, - [SMALL_STATE(1226)] = 14100, - [SMALL_STATE(1227)] = 14160, - [SMALL_STATE(1228)] = 14220, - [SMALL_STATE(1229)] = 14280, - [SMALL_STATE(1230)] = 14340, - [SMALL_STATE(1231)] = 14400, - [SMALL_STATE(1232)] = 14460, - [SMALL_STATE(1233)] = 14520, - [SMALL_STATE(1234)] = 14580, - [SMALL_STATE(1235)] = 14640, - [SMALL_STATE(1236)] = 14700, - [SMALL_STATE(1237)] = 14760, - [SMALL_STATE(1238)] = 14820, - [SMALL_STATE(1239)] = 14880, - [SMALL_STATE(1240)] = 14940, - [SMALL_STATE(1241)] = 15000, - [SMALL_STATE(1242)] = 15060, - [SMALL_STATE(1243)] = 15120, - [SMALL_STATE(1244)] = 15180, - [SMALL_STATE(1245)] = 15240, - [SMALL_STATE(1246)] = 15300, - [SMALL_STATE(1247)] = 15360, - [SMALL_STATE(1248)] = 15420, - [SMALL_STATE(1249)] = 15480, - [SMALL_STATE(1250)] = 15540, - [SMALL_STATE(1251)] = 15600, - [SMALL_STATE(1252)] = 15660, - [SMALL_STATE(1253)] = 15720, - [SMALL_STATE(1254)] = 15780, - [SMALL_STATE(1255)] = 15840, - [SMALL_STATE(1256)] = 15900, - [SMALL_STATE(1257)] = 15960, - [SMALL_STATE(1258)] = 16020, - [SMALL_STATE(1259)] = 16080, - [SMALL_STATE(1260)] = 16140, - [SMALL_STATE(1261)] = 16200, - [SMALL_STATE(1262)] = 16260, - [SMALL_STATE(1263)] = 16320, - [SMALL_STATE(1264)] = 16380, - [SMALL_STATE(1265)] = 16440, - [SMALL_STATE(1266)] = 16500, - [SMALL_STATE(1267)] = 16560, - [SMALL_STATE(1268)] = 16620, - [SMALL_STATE(1269)] = 16680, - [SMALL_STATE(1270)] = 16740, - [SMALL_STATE(1271)] = 16800, - [SMALL_STATE(1272)] = 16860, - [SMALL_STATE(1273)] = 16920, - [SMALL_STATE(1274)] = 16980, - [SMALL_STATE(1275)] = 17040, - [SMALL_STATE(1276)] = 17100, - [SMALL_STATE(1277)] = 17160, - [SMALL_STATE(1278)] = 17220, - [SMALL_STATE(1279)] = 17280, - [SMALL_STATE(1280)] = 17340, - [SMALL_STATE(1281)] = 17400, - [SMALL_STATE(1282)] = 17462, - [SMALL_STATE(1283)] = 17522, - [SMALL_STATE(1284)] = 17582, - [SMALL_STATE(1285)] = 17642, - [SMALL_STATE(1286)] = 17702, - [SMALL_STATE(1287)] = 17762, - [SMALL_STATE(1288)] = 17822, - [SMALL_STATE(1289)] = 17882, - [SMALL_STATE(1290)] = 17942, - [SMALL_STATE(1291)] = 18002, - [SMALL_STATE(1292)] = 18062, - [SMALL_STATE(1293)] = 18122, - [SMALL_STATE(1294)] = 18182, - [SMALL_STATE(1295)] = 18242, - [SMALL_STATE(1296)] = 18302, - [SMALL_STATE(1297)] = 18362, - [SMALL_STATE(1298)] = 18422, - [SMALL_STATE(1299)] = 18482, - [SMALL_STATE(1300)] = 18542, - [SMALL_STATE(1301)] = 18602, - [SMALL_STATE(1302)] = 18662, - [SMALL_STATE(1303)] = 18722, - [SMALL_STATE(1304)] = 18782, - [SMALL_STATE(1305)] = 18842, - [SMALL_STATE(1306)] = 18902, - [SMALL_STATE(1307)] = 18962, - [SMALL_STATE(1308)] = 19022, - [SMALL_STATE(1309)] = 19082, - [SMALL_STATE(1310)] = 19142, - [SMALL_STATE(1311)] = 19202, - [SMALL_STATE(1312)] = 19262, - [SMALL_STATE(1313)] = 19322, - [SMALL_STATE(1314)] = 19382, - [SMALL_STATE(1315)] = 19442, - [SMALL_STATE(1316)] = 19502, - [SMALL_STATE(1317)] = 19562, - [SMALL_STATE(1318)] = 19622, - [SMALL_STATE(1319)] = 19682, - [SMALL_STATE(1320)] = 19742, - [SMALL_STATE(1321)] = 19802, - [SMALL_STATE(1322)] = 19862, - [SMALL_STATE(1323)] = 19922, - [SMALL_STATE(1324)] = 19982, - [SMALL_STATE(1325)] = 20042, - [SMALL_STATE(1326)] = 20102, - [SMALL_STATE(1327)] = 20162, - [SMALL_STATE(1328)] = 20222, - [SMALL_STATE(1329)] = 20314, - [SMALL_STATE(1330)] = 20374, - [SMALL_STATE(1331)] = 20434, - [SMALL_STATE(1332)] = 20494, - [SMALL_STATE(1333)] = 20554, - [SMALL_STATE(1334)] = 20614, - [SMALL_STATE(1335)] = 20674, - [SMALL_STATE(1336)] = 20734, - [SMALL_STATE(1337)] = 20794, - [SMALL_STATE(1338)] = 20886, - [SMALL_STATE(1339)] = 20946, - [SMALL_STATE(1340)] = 21006, - [SMALL_STATE(1341)] = 21066, - [SMALL_STATE(1342)] = 21126, - [SMALL_STATE(1343)] = 21186, - [SMALL_STATE(1344)] = 21246, - [SMALL_STATE(1345)] = 21306, - [SMALL_STATE(1346)] = 21366, - [SMALL_STATE(1347)] = 21426, - [SMALL_STATE(1348)] = 21486, - [SMALL_STATE(1349)] = 21546, - [SMALL_STATE(1350)] = 21610, - [SMALL_STATE(1351)] = 21670, - [SMALL_STATE(1352)] = 21730, - [SMALL_STATE(1353)] = 21790, - [SMALL_STATE(1354)] = 21850, - [SMALL_STATE(1355)] = 21916, - [SMALL_STATE(1356)] = 21976, - [SMALL_STATE(1357)] = 22036, - [SMALL_STATE(1358)] = 22102, - [SMALL_STATE(1359)] = 22162, - [SMALL_STATE(1360)] = 22222, - [SMALL_STATE(1361)] = 22282, - [SMALL_STATE(1362)] = 22342, - [SMALL_STATE(1363)] = 22402, - [SMALL_STATE(1364)] = 22462, - [SMALL_STATE(1365)] = 22522, - [SMALL_STATE(1366)] = 22582, - [SMALL_STATE(1367)] = 22642, - [SMALL_STATE(1368)] = 22702, - [SMALL_STATE(1369)] = 22762, - [SMALL_STATE(1370)] = 22822, - [SMALL_STATE(1371)] = 22882, - [SMALL_STATE(1372)] = 22942, - [SMALL_STATE(1373)] = 23002, - [SMALL_STATE(1374)] = 23062, - [SMALL_STATE(1375)] = 23122, - [SMALL_STATE(1376)] = 23182, - [SMALL_STATE(1377)] = 23242, - [SMALL_STATE(1378)] = 23302, - [SMALL_STATE(1379)] = 23362, - [SMALL_STATE(1380)] = 23422, - [SMALL_STATE(1381)] = 23482, - [SMALL_STATE(1382)] = 23542, - [SMALL_STATE(1383)] = 23602, - [SMALL_STATE(1384)] = 23664, - [SMALL_STATE(1385)] = 23724, - [SMALL_STATE(1386)] = 23784, - [SMALL_STATE(1387)] = 23844, - [SMALL_STATE(1388)] = 23904, - [SMALL_STATE(1389)] = 23964, - [SMALL_STATE(1390)] = 24024, - [SMALL_STATE(1391)] = 24084, - [SMALL_STATE(1392)] = 24144, - [SMALL_STATE(1393)] = 24204, - [SMALL_STATE(1394)] = 24264, - [SMALL_STATE(1395)] = 24324, - [SMALL_STATE(1396)] = 24384, - [SMALL_STATE(1397)] = 24444, - [SMALL_STATE(1398)] = 24504, - [SMALL_STATE(1399)] = 24564, - [SMALL_STATE(1400)] = 24624, - [SMALL_STATE(1401)] = 24684, - [SMALL_STATE(1402)] = 24744, - [SMALL_STATE(1403)] = 24804, - [SMALL_STATE(1404)] = 24864, - [SMALL_STATE(1405)] = 24924, - [SMALL_STATE(1406)] = 24984, - [SMALL_STATE(1407)] = 25044, - [SMALL_STATE(1408)] = 25104, - [SMALL_STATE(1409)] = 25164, - [SMALL_STATE(1410)] = 25224, - [SMALL_STATE(1411)] = 25284, - [SMALL_STATE(1412)] = 25344, - [SMALL_STATE(1413)] = 25404, - [SMALL_STATE(1414)] = 25464, - [SMALL_STATE(1415)] = 25526, - [SMALL_STATE(1416)] = 25586, - [SMALL_STATE(1417)] = 25646, - [SMALL_STATE(1418)] = 25706, - [SMALL_STATE(1419)] = 25766, - [SMALL_STATE(1420)] = 25826, - [SMALL_STATE(1421)] = 25886, - [SMALL_STATE(1422)] = 25946, - [SMALL_STATE(1423)] = 26006, - [SMALL_STATE(1424)] = 26066, - [SMALL_STATE(1425)] = 26126, - [SMALL_STATE(1426)] = 26192, - [SMALL_STATE(1427)] = 26252, - [SMALL_STATE(1428)] = 26312, - [SMALL_STATE(1429)] = 26372, - [SMALL_STATE(1430)] = 26432, - [SMALL_STATE(1431)] = 26492, - [SMALL_STATE(1432)] = 26552, - [SMALL_STATE(1433)] = 26612, - [SMALL_STATE(1434)] = 26672, - [SMALL_STATE(1435)] = 26732, - [SMALL_STATE(1436)] = 26792, - [SMALL_STATE(1437)] = 26852, - [SMALL_STATE(1438)] = 26914, - [SMALL_STATE(1439)] = 26974, - [SMALL_STATE(1440)] = 27034, - [SMALL_STATE(1441)] = 27102, - [SMALL_STATE(1442)] = 27162, - [SMALL_STATE(1443)] = 27222, - [SMALL_STATE(1444)] = 27282, - [SMALL_STATE(1445)] = 27342, - [SMALL_STATE(1446)] = 27402, - [SMALL_STATE(1447)] = 27462, - [SMALL_STATE(1448)] = 27522, - [SMALL_STATE(1449)] = 27582, - [SMALL_STATE(1450)] = 27642, - [SMALL_STATE(1451)] = 27702, - [SMALL_STATE(1452)] = 27762, - [SMALL_STATE(1453)] = 27822, - [SMALL_STATE(1454)] = 27882, - [SMALL_STATE(1455)] = 27942, - [SMALL_STATE(1456)] = 28002, - [SMALL_STATE(1457)] = 28062, - [SMALL_STATE(1458)] = 28122, - [SMALL_STATE(1459)] = 28182, - [SMALL_STATE(1460)] = 28242, - [SMALL_STATE(1461)] = 28302, + [SMALL_STATE(1217)] = 13592, + [SMALL_STATE(1218)] = 13652, + [SMALL_STATE(1219)] = 13712, + [SMALL_STATE(1220)] = 13772, + [SMALL_STATE(1221)] = 13832, + [SMALL_STATE(1222)] = 13892, + [SMALL_STATE(1223)] = 13952, + [SMALL_STATE(1224)] = 14012, + [SMALL_STATE(1225)] = 14072, + [SMALL_STATE(1226)] = 14132, + [SMALL_STATE(1227)] = 14192, + [SMALL_STATE(1228)] = 14252, + [SMALL_STATE(1229)] = 14312, + [SMALL_STATE(1230)] = 14372, + [SMALL_STATE(1231)] = 14432, + [SMALL_STATE(1232)] = 14492, + [SMALL_STATE(1233)] = 14552, + [SMALL_STATE(1234)] = 14612, + [SMALL_STATE(1235)] = 14672, + [SMALL_STATE(1236)] = 14732, + [SMALL_STATE(1237)] = 14792, + [SMALL_STATE(1238)] = 14852, + [SMALL_STATE(1239)] = 14916, + [SMALL_STATE(1240)] = 14976, + [SMALL_STATE(1241)] = 15036, + [SMALL_STATE(1242)] = 15096, + [SMALL_STATE(1243)] = 15156, + [SMALL_STATE(1244)] = 15218, + [SMALL_STATE(1245)] = 15278, + [SMALL_STATE(1246)] = 15338, + [SMALL_STATE(1247)] = 15398, + [SMALL_STATE(1248)] = 15458, + [SMALL_STATE(1249)] = 15518, + [SMALL_STATE(1250)] = 15578, + [SMALL_STATE(1251)] = 15638, + [SMALL_STATE(1252)] = 15706, + [SMALL_STATE(1253)] = 15766, + [SMALL_STATE(1254)] = 15826, + [SMALL_STATE(1255)] = 15886, + [SMALL_STATE(1256)] = 15946, + [SMALL_STATE(1257)] = 16006, + [SMALL_STATE(1258)] = 16066, + [SMALL_STATE(1259)] = 16126, + [SMALL_STATE(1260)] = 16186, + [SMALL_STATE(1261)] = 16246, + [SMALL_STATE(1262)] = 16306, + [SMALL_STATE(1263)] = 16366, + [SMALL_STATE(1264)] = 16426, + [SMALL_STATE(1265)] = 16486, + [SMALL_STATE(1266)] = 16546, + [SMALL_STATE(1267)] = 16606, + [SMALL_STATE(1268)] = 16666, + [SMALL_STATE(1269)] = 16726, + [SMALL_STATE(1270)] = 16786, + [SMALL_STATE(1271)] = 16846, + [SMALL_STATE(1272)] = 16906, + [SMALL_STATE(1273)] = 16966, + [SMALL_STATE(1274)] = 17026, + [SMALL_STATE(1275)] = 17086, + [SMALL_STATE(1276)] = 17146, + [SMALL_STATE(1277)] = 17206, + [SMALL_STATE(1278)] = 17266, + [SMALL_STATE(1279)] = 17326, + [SMALL_STATE(1280)] = 17386, + [SMALL_STATE(1281)] = 17446, + [SMALL_STATE(1282)] = 17506, + [SMALL_STATE(1283)] = 17566, + [SMALL_STATE(1284)] = 17626, + [SMALL_STATE(1285)] = 17686, + [SMALL_STATE(1286)] = 17746, + [SMALL_STATE(1287)] = 17806, + [SMALL_STATE(1288)] = 17866, + [SMALL_STATE(1289)] = 17928, + [SMALL_STATE(1290)] = 17988, + [SMALL_STATE(1291)] = 18048, + [SMALL_STATE(1292)] = 18108, + [SMALL_STATE(1293)] = 18168, + [SMALL_STATE(1294)] = 18228, + [SMALL_STATE(1295)] = 18288, + [SMALL_STATE(1296)] = 18348, + [SMALL_STATE(1297)] = 18408, + [SMALL_STATE(1298)] = 18468, + [SMALL_STATE(1299)] = 18528, + [SMALL_STATE(1300)] = 18588, + [SMALL_STATE(1301)] = 18648, + [SMALL_STATE(1302)] = 18708, + [SMALL_STATE(1303)] = 18768, + [SMALL_STATE(1304)] = 18860, + [SMALL_STATE(1305)] = 18920, + [SMALL_STATE(1306)] = 18980, + [SMALL_STATE(1307)] = 19040, + [SMALL_STATE(1308)] = 19100, + [SMALL_STATE(1309)] = 19160, + [SMALL_STATE(1310)] = 19220, + [SMALL_STATE(1311)] = 19280, + [SMALL_STATE(1312)] = 19340, + [SMALL_STATE(1313)] = 19400, + [SMALL_STATE(1314)] = 19460, + [SMALL_STATE(1315)] = 19520, + [SMALL_STATE(1316)] = 19580, + [SMALL_STATE(1317)] = 19640, + [SMALL_STATE(1318)] = 19700, + [SMALL_STATE(1319)] = 19760, + [SMALL_STATE(1320)] = 19820, + [SMALL_STATE(1321)] = 19880, + [SMALL_STATE(1322)] = 19940, + [SMALL_STATE(1323)] = 20000, + [SMALL_STATE(1324)] = 20066, + [SMALL_STATE(1325)] = 20126, + [SMALL_STATE(1326)] = 20186, + [SMALL_STATE(1327)] = 20246, + [SMALL_STATE(1328)] = 20306, + [SMALL_STATE(1329)] = 20366, + [SMALL_STATE(1330)] = 20426, + [SMALL_STATE(1331)] = 20486, + [SMALL_STATE(1332)] = 20546, + [SMALL_STATE(1333)] = 20606, + [SMALL_STATE(1334)] = 20666, + [SMALL_STATE(1335)] = 20726, + [SMALL_STATE(1336)] = 20786, + [SMALL_STATE(1337)] = 20846, + [SMALL_STATE(1338)] = 20912, + [SMALL_STATE(1339)] = 20972, + [SMALL_STATE(1340)] = 21032, + [SMALL_STATE(1341)] = 21092, + [SMALL_STATE(1342)] = 21152, + [SMALL_STATE(1343)] = 21212, + [SMALL_STATE(1344)] = 21272, + [SMALL_STATE(1345)] = 21332, + [SMALL_STATE(1346)] = 21392, + [SMALL_STATE(1347)] = 21452, + [SMALL_STATE(1348)] = 21512, + [SMALL_STATE(1349)] = 21572, + [SMALL_STATE(1350)] = 21632, + [SMALL_STATE(1351)] = 21692, + [SMALL_STATE(1352)] = 21752, + [SMALL_STATE(1353)] = 21812, + [SMALL_STATE(1354)] = 21878, + [SMALL_STATE(1355)] = 21938, + [SMALL_STATE(1356)] = 21998, + [SMALL_STATE(1357)] = 22058, + [SMALL_STATE(1358)] = 22118, + [SMALL_STATE(1359)] = 22178, + [SMALL_STATE(1360)] = 22238, + [SMALL_STATE(1361)] = 22298, + [SMALL_STATE(1362)] = 22358, + [SMALL_STATE(1363)] = 22418, + [SMALL_STATE(1364)] = 22478, + [SMALL_STATE(1365)] = 22538, + [SMALL_STATE(1366)] = 22598, + [SMALL_STATE(1367)] = 22658, + [SMALL_STATE(1368)] = 22718, + [SMALL_STATE(1369)] = 22778, + [SMALL_STATE(1370)] = 22838, + [SMALL_STATE(1371)] = 22898, + [SMALL_STATE(1372)] = 22958, + [SMALL_STATE(1373)] = 23018, + [SMALL_STATE(1374)] = 23078, + [SMALL_STATE(1375)] = 23138, + [SMALL_STATE(1376)] = 23198, + [SMALL_STATE(1377)] = 23258, + [SMALL_STATE(1378)] = 23320, + [SMALL_STATE(1379)] = 23380, + [SMALL_STATE(1380)] = 23440, + [SMALL_STATE(1381)] = 23500, + [SMALL_STATE(1382)] = 23560, + [SMALL_STATE(1383)] = 23620, + [SMALL_STATE(1384)] = 23680, + [SMALL_STATE(1385)] = 23740, + [SMALL_STATE(1386)] = 23800, + [SMALL_STATE(1387)] = 23860, + [SMALL_STATE(1388)] = 23920, + [SMALL_STATE(1389)] = 23980, + [SMALL_STATE(1390)] = 24040, + [SMALL_STATE(1391)] = 24100, + [SMALL_STATE(1392)] = 24160, + [SMALL_STATE(1393)] = 24220, + [SMALL_STATE(1394)] = 24284, + [SMALL_STATE(1395)] = 24344, + [SMALL_STATE(1396)] = 24404, + [SMALL_STATE(1397)] = 24464, + [SMALL_STATE(1398)] = 24524, + [SMALL_STATE(1399)] = 24584, + [SMALL_STATE(1400)] = 24644, + [SMALL_STATE(1401)] = 24704, + [SMALL_STATE(1402)] = 24764, + [SMALL_STATE(1403)] = 24824, + [SMALL_STATE(1404)] = 24884, + [SMALL_STATE(1405)] = 24944, + [SMALL_STATE(1406)] = 25004, + [SMALL_STATE(1407)] = 25064, + [SMALL_STATE(1408)] = 25124, + [SMALL_STATE(1409)] = 25184, + [SMALL_STATE(1410)] = 25244, + [SMALL_STATE(1411)] = 25304, + [SMALL_STATE(1412)] = 25364, + [SMALL_STATE(1413)] = 25424, + [SMALL_STATE(1414)] = 25484, + [SMALL_STATE(1415)] = 25544, + [SMALL_STATE(1416)] = 25604, + [SMALL_STATE(1417)] = 25664, + [SMALL_STATE(1418)] = 25724, + [SMALL_STATE(1419)] = 25784, + [SMALL_STATE(1420)] = 25846, + [SMALL_STATE(1421)] = 25906, + [SMALL_STATE(1422)] = 25966, + [SMALL_STATE(1423)] = 26026, + [SMALL_STATE(1424)] = 26086, + [SMALL_STATE(1425)] = 26146, + [SMALL_STATE(1426)] = 26206, + [SMALL_STATE(1427)] = 26266, + [SMALL_STATE(1428)] = 26326, + [SMALL_STATE(1429)] = 26386, + [SMALL_STATE(1430)] = 26446, + [SMALL_STATE(1431)] = 26506, + [SMALL_STATE(1432)] = 26566, + [SMALL_STATE(1433)] = 26626, + [SMALL_STATE(1434)] = 26686, + [SMALL_STATE(1435)] = 26746, + [SMALL_STATE(1436)] = 26806, + [SMALL_STATE(1437)] = 26866, + [SMALL_STATE(1438)] = 26926, + [SMALL_STATE(1439)] = 26986, + [SMALL_STATE(1440)] = 27046, + [SMALL_STATE(1441)] = 27106, + [SMALL_STATE(1442)] = 27166, + [SMALL_STATE(1443)] = 27226, + [SMALL_STATE(1444)] = 27286, + [SMALL_STATE(1445)] = 27346, + [SMALL_STATE(1446)] = 27406, + [SMALL_STATE(1447)] = 27466, + [SMALL_STATE(1448)] = 27526, + [SMALL_STATE(1449)] = 27586, + [SMALL_STATE(1450)] = 27646, + [SMALL_STATE(1451)] = 27706, + [SMALL_STATE(1452)] = 27766, + [SMALL_STATE(1453)] = 27826, + [SMALL_STATE(1454)] = 27886, + [SMALL_STATE(1455)] = 27946, + [SMALL_STATE(1456)] = 28006, + [SMALL_STATE(1457)] = 28066, + [SMALL_STATE(1458)] = 28126, + [SMALL_STATE(1459)] = 28186, + [SMALL_STATE(1460)] = 28246, + [SMALL_STATE(1461)] = 28306, [SMALL_STATE(1462)] = 28366, [SMALL_STATE(1463)] = 28426, [SMALL_STATE(1464)] = 28486, @@ -186762,392 +186807,392 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1470)] = 28846, [SMALL_STATE(1471)] = 28906, [SMALL_STATE(1472)] = 28965, - [SMALL_STATE(1473)] = 29026, - [SMALL_STATE(1474)] = 29085, - [SMALL_STATE(1475)] = 29180, - [SMALL_STATE(1476)] = 29239, - [SMALL_STATE(1477)] = 29298, - [SMALL_STATE(1478)] = 29359, - [SMALL_STATE(1479)] = 29418, - [SMALL_STATE(1480)] = 29513, - [SMALL_STATE(1481)] = 29572, + [SMALL_STATE(1473)] = 29024, + [SMALL_STATE(1474)] = 29083, + [SMALL_STATE(1475)] = 29142, + [SMALL_STATE(1476)] = 29203, + [SMALL_STATE(1477)] = 29262, + [SMALL_STATE(1478)] = 29321, + [SMALL_STATE(1479)] = 29382, + [SMALL_STATE(1480)] = 29441, + [SMALL_STATE(1481)] = 29536, [SMALL_STATE(1482)] = 29631, [SMALL_STATE(1483)] = 29717, - [SMALL_STATE(1484)] = 29809, - [SMALL_STATE(1485)] = 29881, - [SMALL_STATE(1486)] = 29957, - [SMALL_STATE(1487)] = 30039, - [SMALL_STATE(1488)] = 30123, - [SMALL_STATE(1489)] = 30213, - [SMALL_STATE(1490)] = 30303, - [SMALL_STATE(1491)] = 30381, - [SMALL_STATE(1492)] = 30471, - [SMALL_STATE(1493)] = 30561, - [SMALL_STATE(1494)] = 30635, - [SMALL_STATE(1495)] = 30721, - [SMALL_STATE(1496)] = 30819, - [SMALL_STATE(1497)] = 30917, - [SMALL_STATE(1498)] = 31007, - [SMALL_STATE(1499)] = 31077, - [SMALL_STATE(1500)] = 31169, - [SMALL_STATE(1501)] = 31237, - [SMALL_STATE(1502)] = 31303, - [SMALL_STATE(1503)] = 31393, - [SMALL_STATE(1504)] = 31485, - [SMALL_STATE(1505)] = 31583, + [SMALL_STATE(1484)] = 29807, + [SMALL_STATE(1485)] = 29873, + [SMALL_STATE(1486)] = 29947, + [SMALL_STATE(1487)] = 30019, + [SMALL_STATE(1488)] = 30111, + [SMALL_STATE(1489)] = 30187, + [SMALL_STATE(1490)] = 30277, + [SMALL_STATE(1491)] = 30359, + [SMALL_STATE(1492)] = 30457, + [SMALL_STATE(1493)] = 30527, + [SMALL_STATE(1494)] = 30613, + [SMALL_STATE(1495)] = 30703, + [SMALL_STATE(1496)] = 30771, + [SMALL_STATE(1497)] = 30863, + [SMALL_STATE(1498)] = 30941, + [SMALL_STATE(1499)] = 31039, + [SMALL_STATE(1500)] = 31129, + [SMALL_STATE(1501)] = 31213, + [SMALL_STATE(1502)] = 31283, + [SMALL_STATE(1503)] = 31373, + [SMALL_STATE(1504)] = 31463, + [SMALL_STATE(1505)] = 31561, [SMALL_STATE(1506)] = 31653, - [SMALL_STATE(1507)] = 31718, + [SMALL_STATE(1507)] = 31720, [SMALL_STATE(1508)] = 31785, [SMALL_STATE(1509)] = 31852, [SMALL_STATE(1510)] = 31915, [SMALL_STATE(1511)] = 32000, - [SMALL_STATE(1512)] = 32085, - [SMALL_STATE(1513)] = 32152, - [SMALL_STATE(1514)] = 32237, - [SMALL_STATE(1515)] = 32322, + [SMALL_STATE(1512)] = 32063, + [SMALL_STATE(1513)] = 32148, + [SMALL_STATE(1514)] = 32215, + [SMALL_STATE(1515)] = 32300, [SMALL_STATE(1516)] = 32385, - [SMALL_STATE(1517)] = 32443, + [SMALL_STATE(1517)] = 32441, [SMALL_STATE(1518)] = 32499, - [SMALL_STATE(1519)] = 32559, - [SMALL_STATE(1520)] = 32619, - [SMALL_STATE(1521)] = 32677, + [SMALL_STATE(1519)] = 32557, + [SMALL_STATE(1520)] = 32617, + [SMALL_STATE(1521)] = 32681, [SMALL_STATE(1522)] = 32737, - [SMALL_STATE(1523)] = 32793, - [SMALL_STATE(1524)] = 32853, - [SMALL_STATE(1525)] = 32913, - [SMALL_STATE(1526)] = 32971, + [SMALL_STATE(1523)] = 32795, + [SMALL_STATE(1524)] = 32851, + [SMALL_STATE(1525)] = 32909, + [SMALL_STATE(1526)] = 32965, [SMALL_STATE(1527)] = 33029, - [SMALL_STATE(1528)] = 33093, - [SMALL_STATE(1529)] = 33149, + [SMALL_STATE(1528)] = 33089, + [SMALL_STATE(1529)] = 33145, [SMALL_STATE(1530)] = 33205, [SMALL_STATE(1531)] = 33269, - [SMALL_STATE(1532)] = 33333, - [SMALL_STATE(1533)] = 33397, - [SMALL_STATE(1534)] = 33453, - [SMALL_STATE(1535)] = 33513, + [SMALL_STATE(1532)] = 33327, + [SMALL_STATE(1533)] = 33391, + [SMALL_STATE(1534)] = 33451, + [SMALL_STATE(1535)] = 33511, [SMALL_STATE(1536)] = 33571, - [SMALL_STATE(1537)] = 33629, - [SMALL_STATE(1538)] = 33689, + [SMALL_STATE(1537)] = 33627, + [SMALL_STATE(1538)] = 33687, [SMALL_STATE(1539)] = 33745, [SMALL_STATE(1540)] = 33801, [SMALL_STATE(1541)] = 33857, [SMALL_STATE(1542)] = 33913, - [SMALL_STATE(1543)] = 34008, - [SMALL_STATE(1544)] = 34063, - [SMALL_STATE(1545)] = 34118, - [SMALL_STATE(1546)] = 34213, - [SMALL_STATE(1547)] = 34308, - [SMALL_STATE(1548)] = 34365, - [SMALL_STATE(1549)] = 34420, - [SMALL_STATE(1550)] = 34477, - [SMALL_STATE(1551)] = 34532, - [SMALL_STATE(1552)] = 34587, - [SMALL_STATE(1553)] = 34646, - [SMALL_STATE(1554)] = 34741, - [SMALL_STATE(1555)] = 34836, - [SMALL_STATE(1556)] = 34931, - [SMALL_STATE(1557)] = 35026, - [SMALL_STATE(1558)] = 35085, - [SMALL_STATE(1559)] = 35144, - [SMALL_STATE(1560)] = 35201, - [SMALL_STATE(1561)] = 35256, - [SMALL_STATE(1562)] = 35351, - [SMALL_STATE(1563)] = 35408, - [SMALL_STATE(1564)] = 35503, - [SMALL_STATE(1565)] = 35560, - [SMALL_STATE(1566)] = 35655, - [SMALL_STATE(1567)] = 35712, - [SMALL_STATE(1568)] = 35807, - [SMALL_STATE(1569)] = 35862, - [SMALL_STATE(1570)] = 35957, - [SMALL_STATE(1571)] = 36012, - [SMALL_STATE(1572)] = 36069, + [SMALL_STATE(1543)] = 33970, + [SMALL_STATE(1544)] = 34065, + [SMALL_STATE(1545)] = 34124, + [SMALL_STATE(1546)] = 34179, + [SMALL_STATE(1547)] = 34238, + [SMALL_STATE(1548)] = 34293, + [SMALL_STATE(1549)] = 34352, + [SMALL_STATE(1550)] = 34447, + [SMALL_STATE(1551)] = 34502, + [SMALL_STATE(1552)] = 34597, + [SMALL_STATE(1553)] = 34654, + [SMALL_STATE(1554)] = 34711, + [SMALL_STATE(1555)] = 34770, + [SMALL_STATE(1556)] = 34865, + [SMALL_STATE(1557)] = 34920, + [SMALL_STATE(1558)] = 34975, + [SMALL_STATE(1559)] = 35032, + [SMALL_STATE(1560)] = 35087, + [SMALL_STATE(1561)] = 35182, + [SMALL_STATE(1562)] = 35237, + [SMALL_STATE(1563)] = 35332, + [SMALL_STATE(1564)] = 35427, + [SMALL_STATE(1565)] = 35482, + [SMALL_STATE(1566)] = 35539, + [SMALL_STATE(1567)] = 35634, + [SMALL_STATE(1568)] = 35729, + [SMALL_STATE(1569)] = 35786, + [SMALL_STATE(1570)] = 35881, + [SMALL_STATE(1571)] = 35938, + [SMALL_STATE(1572)] = 36033, [SMALL_STATE(1573)] = 36128, [SMALL_STATE(1574)] = 36216, [SMALL_STATE(1575)] = 36308, - [SMALL_STATE(1576)] = 36364, - [SMALL_STATE(1577)] = 36418, - [SMALL_STATE(1578)] = 36472, - [SMALL_STATE(1579)] = 36526, - [SMALL_STATE(1580)] = 36580, - [SMALL_STATE(1581)] = 36634, - [SMALL_STATE(1582)] = 36690, - [SMALL_STATE(1583)] = 36744, - [SMALL_STATE(1584)] = 36798, - [SMALL_STATE(1585)] = 36852, - [SMALL_STATE(1586)] = 36906, - [SMALL_STATE(1587)] = 36960, - [SMALL_STATE(1588)] = 37042, - [SMALL_STATE(1589)] = 37096, - [SMALL_STATE(1590)] = 37150, - [SMALL_STATE(1591)] = 37224, - [SMALL_STATE(1592)] = 37310, - [SMALL_STATE(1593)] = 37396, - [SMALL_STATE(1594)] = 37488, - [SMALL_STATE(1595)] = 37554, - [SMALL_STATE(1596)] = 37634, - [SMALL_STATE(1597)] = 37712, - [SMALL_STATE(1598)] = 37784, - [SMALL_STATE(1599)] = 37852, - [SMALL_STATE(1600)] = 37922, - [SMALL_STATE(1601)] = 37986, - [SMALL_STATE(1602)] = 38042, - [SMALL_STATE(1603)] = 38098, - [SMALL_STATE(1604)] = 38186, - [SMALL_STATE(1605)] = 38242, - [SMALL_STATE(1606)] = 38330, - [SMALL_STATE(1607)] = 38384, - [SMALL_STATE(1608)] = 38438, - [SMALL_STATE(1609)] = 38524, - [SMALL_STATE(1610)] = 38606, - [SMALL_STATE(1611)] = 38692, - [SMALL_STATE(1612)] = 38746, - [SMALL_STATE(1613)] = 38834, - [SMALL_STATE(1614)] = 38920, - [SMALL_STATE(1615)] = 39006, - [SMALL_STATE(1616)] = 39062, - [SMALL_STATE(1617)] = 39118, - [SMALL_STATE(1618)] = 39206, - [SMALL_STATE(1619)] = 39298, - [SMALL_STATE(1620)] = 39354, - [SMALL_STATE(1621)] = 39410, - [SMALL_STATE(1622)] = 39466, - [SMALL_STATE(1623)] = 39558, - [SMALL_STATE(1624)] = 39646, - [SMALL_STATE(1625)] = 39734, - [SMALL_STATE(1626)] = 39790, - [SMALL_STATE(1627)] = 39846, - [SMALL_STATE(1628)] = 39900, - [SMALL_STATE(1629)] = 39992, - [SMALL_STATE(1630)] = 40084, - [SMALL_STATE(1631)] = 40172, - [SMALL_STATE(1632)] = 40228, - [SMALL_STATE(1633)] = 40284, - [SMALL_STATE(1634)] = 40340, - [SMALL_STATE(1635)] = 40396, + [SMALL_STATE(1576)] = 36394, + [SMALL_STATE(1577)] = 36486, + [SMALL_STATE(1578)] = 36572, + [SMALL_STATE(1579)] = 36664, + [SMALL_STATE(1580)] = 36746, + [SMALL_STATE(1581)] = 36814, + [SMALL_STATE(1582)] = 36868, + [SMALL_STATE(1583)] = 36922, + [SMALL_STATE(1584)] = 36976, + [SMALL_STATE(1585)] = 37030, + [SMALL_STATE(1586)] = 37118, + [SMALL_STATE(1587)] = 37172, + [SMALL_STATE(1588)] = 37226, + [SMALL_STATE(1589)] = 37298, + [SMALL_STATE(1590)] = 37390, + [SMALL_STATE(1591)] = 37468, + [SMALL_STATE(1592)] = 37524, + [SMALL_STATE(1593)] = 37612, + [SMALL_STATE(1594)] = 37692, + [SMALL_STATE(1595)] = 37748, + [SMALL_STATE(1596)] = 37802, + [SMALL_STATE(1597)] = 37858, + [SMALL_STATE(1598)] = 37914, + [SMALL_STATE(1599)] = 37970, + [SMALL_STATE(1600)] = 38024, + [SMALL_STATE(1601)] = 38080, + [SMALL_STATE(1602)] = 38166, + [SMALL_STATE(1603)] = 38222, + [SMALL_STATE(1604)] = 38276, + [SMALL_STATE(1605)] = 38334, + [SMALL_STATE(1606)] = 38388, + [SMALL_STATE(1607)] = 38454, + [SMALL_STATE(1608)] = 38542, + [SMALL_STATE(1609)] = 38598, + [SMALL_STATE(1610)] = 38652, + [SMALL_STATE(1611)] = 38740, + [SMALL_STATE(1612)] = 38794, + [SMALL_STATE(1613)] = 38850, + [SMALL_STATE(1614)] = 38938, + [SMALL_STATE(1615)] = 38994, + [SMALL_STATE(1616)] = 39080, + [SMALL_STATE(1617)] = 39166, + [SMALL_STATE(1618)] = 39220, + [SMALL_STATE(1619)] = 39308, + [SMALL_STATE(1620)] = 39382, + [SMALL_STATE(1621)] = 39438, + [SMALL_STATE(1622)] = 39492, + [SMALL_STATE(1623)] = 39548, + [SMALL_STATE(1624)] = 39604, + [SMALL_STATE(1625)] = 39658, + [SMALL_STATE(1626)] = 39744, + [SMALL_STATE(1627)] = 39800, + [SMALL_STATE(1628)] = 39882, + [SMALL_STATE(1629)] = 39974, + [SMALL_STATE(1630)] = 40038, + [SMALL_STATE(1631)] = 40108, + [SMALL_STATE(1632)] = 40162, + [SMALL_STATE(1633)] = 40254, + [SMALL_STATE(1634)] = 40310, + [SMALL_STATE(1635)] = 40398, [SMALL_STATE(1636)] = 40454, - [SMALL_STATE(1637)] = 40507, - [SMALL_STATE(1638)] = 40560, - [SMALL_STATE(1639)] = 40613, - [SMALL_STATE(1640)] = 40678, - [SMALL_STATE(1641)] = 40765, - [SMALL_STATE(1642)] = 40818, - [SMALL_STATE(1643)] = 40907, - [SMALL_STATE(1644)] = 40996, - [SMALL_STATE(1645)] = 41085, - [SMALL_STATE(1646)] = 41138, - [SMALL_STATE(1647)] = 41227, - [SMALL_STATE(1648)] = 41314, - [SMALL_STATE(1649)] = 41403, - [SMALL_STATE(1650)] = 41492, - [SMALL_STATE(1651)] = 41571, - [SMALL_STATE(1652)] = 41660, - [SMALL_STATE(1653)] = 41713, - [SMALL_STATE(1654)] = 41802, - [SMALL_STATE(1655)] = 41879, - [SMALL_STATE(1656)] = 41950, - [SMALL_STATE(1657)] = 42039, - [SMALL_STATE(1658)] = 42126, - [SMALL_STATE(1659)] = 42179, - [SMALL_STATE(1660)] = 42232, - [SMALL_STATE(1661)] = 42285, - [SMALL_STATE(1662)] = 42374, - [SMALL_STATE(1663)] = 42427, - [SMALL_STATE(1664)] = 42480, - [SMALL_STATE(1665)] = 42547, - [SMALL_STATE(1666)] = 42600, - [SMALL_STATE(1667)] = 42687, - [SMALL_STATE(1668)] = 42740, - [SMALL_STATE(1669)] = 42827, - [SMALL_STATE(1670)] = 42880, - [SMALL_STATE(1671)] = 42967, - [SMALL_STATE(1672)] = 43020, - [SMALL_STATE(1673)] = 43073, - [SMALL_STATE(1674)] = 43126, - [SMALL_STATE(1675)] = 43215, - [SMALL_STATE(1676)] = 43294, - [SMALL_STATE(1677)] = 43363, - [SMALL_STATE(1678)] = 43426, - [SMALL_STATE(1679)] = 43489, - [SMALL_STATE(1680)] = 43574, - [SMALL_STATE(1681)] = 43627, - [SMALL_STATE(1682)] = 43716, - [SMALL_STATE(1683)] = 43805, - [SMALL_STATE(1684)] = 43890, - [SMALL_STATE(1685)] = 43979, - [SMALL_STATE(1686)] = 44032, - [SMALL_STATE(1687)] = 44121, - [SMALL_STATE(1688)] = 44208, - [SMALL_STATE(1689)] = 44297, - [SMALL_STATE(1690)] = 44384, - [SMALL_STATE(1691)] = 44473, - [SMALL_STATE(1692)] = 44562, - [SMALL_STATE(1693)] = 44649, - [SMALL_STATE(1694)] = 44718, - [SMALL_STATE(1695)] = 44785, - [SMALL_STATE(1696)] = 44838, - [SMALL_STATE(1697)] = 44923, - [SMALL_STATE(1698)] = 44976, - [SMALL_STATE(1699)] = 45029, - [SMALL_STATE(1700)] = 45100, - [SMALL_STATE(1701)] = 45153, - [SMALL_STATE(1702)] = 45206, - [SMALL_STATE(1703)] = 45283, - [SMALL_STATE(1704)] = 45336, - [SMALL_STATE(1705)] = 45389, - [SMALL_STATE(1706)] = 45442, - [SMALL_STATE(1707)] = 45501, - [SMALL_STATE(1708)] = 45588, - [SMALL_STATE(1709)] = 45647, - [SMALL_STATE(1710)] = 45700, - [SMALL_STATE(1711)] = 45789, - [SMALL_STATE(1712)] = 45878, - [SMALL_STATE(1713)] = 45965, - [SMALL_STATE(1714)] = 46052, - [SMALL_STATE(1715)] = 46141, - [SMALL_STATE(1716)] = 46220, - [SMALL_STATE(1717)] = 46273, - [SMALL_STATE(1718)] = 46362, - [SMALL_STATE(1719)] = 46415, - [SMALL_STATE(1720)] = 46480, - [SMALL_STATE(1721)] = 46569, - [SMALL_STATE(1722)] = 46656, - [SMALL_STATE(1723)] = 46741, - [SMALL_STATE(1724)] = 46826, - [SMALL_STATE(1725)] = 46915, - [SMALL_STATE(1726)] = 46968, - [SMALL_STATE(1727)] = 47021, - [SMALL_STATE(1728)] = 47102, - [SMALL_STATE(1729)] = 47187, - [SMALL_STATE(1730)] = 47240, - [SMALL_STATE(1731)] = 47293, - [SMALL_STATE(1732)] = 47346, - [SMALL_STATE(1733)] = 47431, - [SMALL_STATE(1734)] = 47520, - [SMALL_STATE(1735)] = 47573, - [SMALL_STATE(1736)] = 47626, - [SMALL_STATE(1737)] = 47679, - [SMALL_STATE(1738)] = 47760, - [SMALL_STATE(1739)] = 47845, - [SMALL_STATE(1740)] = 47898, - [SMALL_STATE(1741)] = 47983, - [SMALL_STATE(1742)] = 48036, - [SMALL_STATE(1743)] = 48089, - [SMALL_STATE(1744)] = 48174, - [SMALL_STATE(1745)] = 48263, - [SMALL_STATE(1746)] = 48316, - [SMALL_STATE(1747)] = 48369, - [SMALL_STATE(1748)] = 48458, - [SMALL_STATE(1749)] = 48511, - [SMALL_STATE(1750)] = 48564, - [SMALL_STATE(1751)] = 48617, - [SMALL_STATE(1752)] = 48670, - [SMALL_STATE(1753)] = 48723, - [SMALL_STATE(1754)] = 48776, - [SMALL_STATE(1755)] = 48865, - [SMALL_STATE(1756)] = 48952, - [SMALL_STATE(1757)] = 49041, - [SMALL_STATE(1758)] = 49122, - [SMALL_STATE(1759)] = 49211, - [SMALL_STATE(1760)] = 49264, - [SMALL_STATE(1761)] = 49353, - [SMALL_STATE(1762)] = 49406, - [SMALL_STATE(1763)] = 49495, - [SMALL_STATE(1764)] = 49548, - [SMALL_STATE(1765)] = 49621, - [SMALL_STATE(1766)] = 49674, - [SMALL_STATE(1767)] = 49759, - [SMALL_STATE(1768)] = 49812, - [SMALL_STATE(1769)] = 49865, - [SMALL_STATE(1770)] = 49918, - [SMALL_STATE(1771)] = 49971, - [SMALL_STATE(1772)] = 50024, - [SMALL_STATE(1773)] = 50077, - [SMALL_STATE(1774)] = 50166, - [SMALL_STATE(1775)] = 50255, - [SMALL_STATE(1776)] = 50314, - [SMALL_STATE(1777)] = 50367, - [SMALL_STATE(1778)] = 50456, - [SMALL_STATE(1779)] = 50545, - [SMALL_STATE(1780)] = 50598, - [SMALL_STATE(1781)] = 50651, - [SMALL_STATE(1782)] = 50704, - [SMALL_STATE(1783)] = 50757, - [SMALL_STATE(1784)] = 50810, - [SMALL_STATE(1785)] = 50863, - [SMALL_STATE(1786)] = 50916, - [SMALL_STATE(1787)] = 51001, - [SMALL_STATE(1788)] = 51054, - [SMALL_STATE(1789)] = 51107, - [SMALL_STATE(1790)] = 51196, - [SMALL_STATE(1791)] = 51249, - [SMALL_STATE(1792)] = 51302, - [SMALL_STATE(1793)] = 51355, - [SMALL_STATE(1794)] = 51444, - [SMALL_STATE(1795)] = 51533, - [SMALL_STATE(1796)] = 51620, - [SMALL_STATE(1797)] = 51673, - [SMALL_STATE(1798)] = 51726, - [SMALL_STATE(1799)] = 51779, - [SMALL_STATE(1800)] = 51864, - [SMALL_STATE(1801)] = 51917, - [SMALL_STATE(1802)] = 51970, - [SMALL_STATE(1803)] = 52023, - [SMALL_STATE(1804)] = 52076, - [SMALL_STATE(1805)] = 52163, - [SMALL_STATE(1806)] = 52252, - [SMALL_STATE(1807)] = 52305, - [SMALL_STATE(1808)] = 52394, - [SMALL_STATE(1809)] = 52447, - [SMALL_STATE(1810)] = 52500, - [SMALL_STATE(1811)] = 52553, - [SMALL_STATE(1812)] = 52606, - [SMALL_STATE(1813)] = 52693, - [SMALL_STATE(1814)] = 52746, - [SMALL_STATE(1815)] = 52831, - [SMALL_STATE(1816)] = 52920, - [SMALL_STATE(1817)] = 52973, - [SMALL_STATE(1818)] = 53026, - [SMALL_STATE(1819)] = 53099, - [SMALL_STATE(1820)] = 53152, - [SMALL_STATE(1821)] = 53205, - [SMALL_STATE(1822)] = 53258, - [SMALL_STATE(1823)] = 53347, - [SMALL_STATE(1824)] = 53400, - [SMALL_STATE(1825)] = 53489, - [SMALL_STATE(1826)] = 53542, - [SMALL_STATE(1827)] = 53631, - [SMALL_STATE(1828)] = 53720, - [SMALL_STATE(1829)] = 53773, - [SMALL_STATE(1830)] = 53826, - [SMALL_STATE(1831)] = 53915, - [SMALL_STATE(1832)] = 53968, - [SMALL_STATE(1833)] = 54021, - [SMALL_STATE(1834)] = 54110, - [SMALL_STATE(1835)] = 54199, - [SMALL_STATE(1836)] = 54286, - [SMALL_STATE(1837)] = 54339, - [SMALL_STATE(1838)] = 54428, - [SMALL_STATE(1839)] = 54489, - [SMALL_STATE(1840)] = 54542, - [SMALL_STATE(1841)] = 54629, + [SMALL_STATE(1637)] = 40543, + [SMALL_STATE(1638)] = 40596, + [SMALL_STATE(1639)] = 40681, + [SMALL_STATE(1640)] = 40734, + [SMALL_STATE(1641)] = 40787, + [SMALL_STATE(1642)] = 40840, + [SMALL_STATE(1643)] = 40893, + [SMALL_STATE(1644)] = 40952, + [SMALL_STATE(1645)] = 41011, + [SMALL_STATE(1646)] = 41092, + [SMALL_STATE(1647)] = 41177, + [SMALL_STATE(1648)] = 41230, + [SMALL_STATE(1649)] = 41315, + [SMALL_STATE(1650)] = 41400, + [SMALL_STATE(1651)] = 41453, + [SMALL_STATE(1652)] = 41506, + [SMALL_STATE(1653)] = 41559, + [SMALL_STATE(1654)] = 41612, + [SMALL_STATE(1655)] = 41701, + [SMALL_STATE(1656)] = 41754, + [SMALL_STATE(1657)] = 41807, + [SMALL_STATE(1658)] = 41860, + [SMALL_STATE(1659)] = 41913, + [SMALL_STATE(1660)] = 41972, + [SMALL_STATE(1661)] = 42061, + [SMALL_STATE(1662)] = 42114, + [SMALL_STATE(1663)] = 42167, + [SMALL_STATE(1664)] = 42220, + [SMALL_STATE(1665)] = 42273, + [SMALL_STATE(1666)] = 42334, + [SMALL_STATE(1667)] = 42387, + [SMALL_STATE(1668)] = 42440, + [SMALL_STATE(1669)] = 42493, + [SMALL_STATE(1670)] = 42546, + [SMALL_STATE(1671)] = 42599, + [SMALL_STATE(1672)] = 42686, + [SMALL_STATE(1673)] = 42739, + [SMALL_STATE(1674)] = 42792, + [SMALL_STATE(1675)] = 42881, + [SMALL_STATE(1676)] = 42934, + [SMALL_STATE(1677)] = 42987, + [SMALL_STATE(1678)] = 43040, + [SMALL_STATE(1679)] = 43093, + [SMALL_STATE(1680)] = 43146, + [SMALL_STATE(1681)] = 43199, + [SMALL_STATE(1682)] = 43252, + [SMALL_STATE(1683)] = 43341, + [SMALL_STATE(1684)] = 43394, + [SMALL_STATE(1685)] = 43447, + [SMALL_STATE(1686)] = 43500, + [SMALL_STATE(1687)] = 43553, + [SMALL_STATE(1688)] = 43606, + [SMALL_STATE(1689)] = 43659, + [SMALL_STATE(1690)] = 43712, + [SMALL_STATE(1691)] = 43797, + [SMALL_STATE(1692)] = 43850, + [SMALL_STATE(1693)] = 43903, + [SMALL_STATE(1694)] = 43956, + [SMALL_STATE(1695)] = 44009, + [SMALL_STATE(1696)] = 44098, + [SMALL_STATE(1697)] = 44151, + [SMALL_STATE(1698)] = 44238, + [SMALL_STATE(1699)] = 44325, + [SMALL_STATE(1700)] = 44412, + [SMALL_STATE(1701)] = 44465, + [SMALL_STATE(1702)] = 44518, + [SMALL_STATE(1703)] = 44607, + [SMALL_STATE(1704)] = 44694, + [SMALL_STATE(1705)] = 44783, + [SMALL_STATE(1706)] = 44836, + [SMALL_STATE(1707)] = 44889, + [SMALL_STATE(1708)] = 44942, + [SMALL_STATE(1709)] = 44995, + [SMALL_STATE(1710)] = 45048, + [SMALL_STATE(1711)] = 45133, + [SMALL_STATE(1712)] = 45220, + [SMALL_STATE(1713)] = 45283, + [SMALL_STATE(1714)] = 45352, + [SMALL_STATE(1715)] = 45419, + [SMALL_STATE(1716)] = 45490, + [SMALL_STATE(1717)] = 45567, + [SMALL_STATE(1718)] = 45646, + [SMALL_STATE(1719)] = 45711, + [SMALL_STATE(1720)] = 45796, + [SMALL_STATE(1721)] = 45881, + [SMALL_STATE(1722)] = 45954, + [SMALL_STATE(1723)] = 46035, + [SMALL_STATE(1724)] = 46088, + [SMALL_STATE(1725)] = 46141, + [SMALL_STATE(1726)] = 46194, + [SMALL_STATE(1727)] = 46247, + [SMALL_STATE(1728)] = 46334, + [SMALL_STATE(1729)] = 46387, + [SMALL_STATE(1730)] = 46440, + [SMALL_STATE(1731)] = 46493, + [SMALL_STATE(1732)] = 46546, + [SMALL_STATE(1733)] = 46599, + [SMALL_STATE(1734)] = 46686, + [SMALL_STATE(1735)] = 46739, + [SMALL_STATE(1736)] = 46792, + [SMALL_STATE(1737)] = 46845, + [SMALL_STATE(1738)] = 46898, + [SMALL_STATE(1739)] = 46951, + [SMALL_STATE(1740)] = 47004, + [SMALL_STATE(1741)] = 47093, + [SMALL_STATE(1742)] = 47146, + [SMALL_STATE(1743)] = 47199, + [SMALL_STATE(1744)] = 47252, + [SMALL_STATE(1745)] = 47305, + [SMALL_STATE(1746)] = 47358, + [SMALL_STATE(1747)] = 47445, + [SMALL_STATE(1748)] = 47498, + [SMALL_STATE(1749)] = 47587, + [SMALL_STATE(1750)] = 47672, + [SMALL_STATE(1751)] = 47725, + [SMALL_STATE(1752)] = 47812, + [SMALL_STATE(1753)] = 47865, + [SMALL_STATE(1754)] = 47928, + [SMALL_STATE(1755)] = 47997, + [SMALL_STATE(1756)] = 48064, + [SMALL_STATE(1757)] = 48135, + [SMALL_STATE(1758)] = 48212, + [SMALL_STATE(1759)] = 48291, + [SMALL_STATE(1760)] = 48356, + [SMALL_STATE(1761)] = 48441, + [SMALL_STATE(1762)] = 48526, + [SMALL_STATE(1763)] = 48599, + [SMALL_STATE(1764)] = 48680, + [SMALL_STATE(1765)] = 48733, + [SMALL_STATE(1766)] = 48786, + [SMALL_STATE(1767)] = 48839, + [SMALL_STATE(1768)] = 48892, + [SMALL_STATE(1769)] = 48979, + [SMALL_STATE(1770)] = 49032, + [SMALL_STATE(1771)] = 49085, + [SMALL_STATE(1772)] = 49138, + [SMALL_STATE(1773)] = 49191, + [SMALL_STATE(1774)] = 49244, + [SMALL_STATE(1775)] = 49297, + [SMALL_STATE(1776)] = 49350, + [SMALL_STATE(1777)] = 49403, + [SMALL_STATE(1778)] = 49456, + [SMALL_STATE(1779)] = 49509, + [SMALL_STATE(1780)] = 49562, + [SMALL_STATE(1781)] = 49615, + [SMALL_STATE(1782)] = 49668, + [SMALL_STATE(1783)] = 49757, + [SMALL_STATE(1784)] = 49844, + [SMALL_STATE(1785)] = 49897, + [SMALL_STATE(1786)] = 49950, + [SMALL_STATE(1787)] = 50039, + [SMALL_STATE(1788)] = 50126, + [SMALL_STATE(1789)] = 50179, + [SMALL_STATE(1790)] = 50232, + [SMALL_STATE(1791)] = 50319, + [SMALL_STATE(1792)] = 50372, + [SMALL_STATE(1793)] = 50425, + [SMALL_STATE(1794)] = 50514, + [SMALL_STATE(1795)] = 50603, + [SMALL_STATE(1796)] = 50682, + [SMALL_STATE(1797)] = 50771, + [SMALL_STATE(1798)] = 50860, + [SMALL_STATE(1799)] = 50947, + [SMALL_STATE(1800)] = 51034, + [SMALL_STATE(1801)] = 51123, + [SMALL_STATE(1802)] = 51212, + [SMALL_STATE(1803)] = 51301, + [SMALL_STATE(1804)] = 51390, + [SMALL_STATE(1805)] = 51479, + [SMALL_STATE(1806)] = 51568, + [SMALL_STATE(1807)] = 51657, + [SMALL_STATE(1808)] = 51746, + [SMALL_STATE(1809)] = 51835, + [SMALL_STATE(1810)] = 51924, + [SMALL_STATE(1811)] = 52013, + [SMALL_STATE(1812)] = 52094, + [SMALL_STATE(1813)] = 52179, + [SMALL_STATE(1814)] = 52268, + [SMALL_STATE(1815)] = 52353, + [SMALL_STATE(1816)] = 52438, + [SMALL_STATE(1817)] = 52527, + [SMALL_STATE(1818)] = 52614, + [SMALL_STATE(1819)] = 52701, + [SMALL_STATE(1820)] = 52790, + [SMALL_STATE(1821)] = 52879, + [SMALL_STATE(1822)] = 52968, + [SMALL_STATE(1823)] = 53057, + [SMALL_STATE(1824)] = 53146, + [SMALL_STATE(1825)] = 53235, + [SMALL_STATE(1826)] = 53324, + [SMALL_STATE(1827)] = 53413, + [SMALL_STATE(1828)] = 53502, + [SMALL_STATE(1829)] = 53591, + [SMALL_STATE(1830)] = 53680, + [SMALL_STATE(1831)] = 53769, + [SMALL_STATE(1832)] = 53858, + [SMALL_STATE(1833)] = 53947, + [SMALL_STATE(1834)] = 54036, + [SMALL_STATE(1835)] = 54125, + [SMALL_STATE(1836)] = 54214, + [SMALL_STATE(1837)] = 54303, + [SMALL_STATE(1838)] = 54392, + [SMALL_STATE(1839)] = 54481, + [SMALL_STATE(1840)] = 54568, + [SMALL_STATE(1841)] = 54657, [SMALL_STATE(1842)] = 54710, [SMALL_STATE(1843)] = 54796, [SMALL_STATE(1844)] = 54882, [SMALL_STATE(1845)] = 54968, [SMALL_STATE(1846)] = 55054, - [SMALL_STATE(1847)] = 55140, - [SMALL_STATE(1848)] = 55224, - [SMALL_STATE(1849)] = 55310, - [SMALL_STATE(1850)] = 55396, - [SMALL_STATE(1851)] = 55482, - [SMALL_STATE(1852)] = 55568, - [SMALL_STATE(1853)] = 55654, - [SMALL_STATE(1854)] = 55740, - [SMALL_STATE(1855)] = 55826, - [SMALL_STATE(1856)] = 55912, - [SMALL_STATE(1857)] = 55998, - [SMALL_STATE(1858)] = 56084, + [SMALL_STATE(1847)] = 55130, + [SMALL_STATE(1848)] = 55214, + [SMALL_STATE(1849)] = 55300, + [SMALL_STATE(1850)] = 55386, + [SMALL_STATE(1851)] = 55472, + [SMALL_STATE(1852)] = 55558, + [SMALL_STATE(1853)] = 55644, + [SMALL_STATE(1854)] = 55730, + [SMALL_STATE(1855)] = 55816, + [SMALL_STATE(1856)] = 55902, + [SMALL_STATE(1857)] = 55988, + [SMALL_STATE(1858)] = 56074, [SMALL_STATE(1859)] = 56160, [SMALL_STATE(1860)] = 56246, [SMALL_STATE(1861)] = 56332, @@ -187155,15 +187200,15 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1863)] = 56504, [SMALL_STATE(1864)] = 56590, [SMALL_STATE(1865)] = 56676, - [SMALL_STATE(1866)] = 56762, - [SMALL_STATE(1867)] = 56848, - [SMALL_STATE(1868)] = 56924, - [SMALL_STATE(1869)] = 57010, - [SMALL_STATE(1870)] = 57096, - [SMALL_STATE(1871)] = 57180, - [SMALL_STATE(1872)] = 57266, - [SMALL_STATE(1873)] = 57352, - [SMALL_STATE(1874)] = 57438, + [SMALL_STATE(1866)] = 56760, + [SMALL_STATE(1867)] = 56846, + [SMALL_STATE(1868)] = 56932, + [SMALL_STATE(1869)] = 57018, + [SMALL_STATE(1870)] = 57104, + [SMALL_STATE(1871)] = 57190, + [SMALL_STATE(1872)] = 57276, + [SMALL_STATE(1873)] = 57362, + [SMALL_STATE(1874)] = 57448, [SMALL_STATE(1875)] = 57524, [SMALL_STATE(1876)] = 57610, [SMALL_STATE(1877)] = 57683, @@ -187193,9 +187238,9 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1901)] = 59251, [SMALL_STATE(1902)] = 59309, [SMALL_STATE(1903)] = 59345, - [SMALL_STATE(1904)] = 59381, + [SMALL_STATE(1904)] = 59393, [SMALL_STATE(1905)] = 59429, - [SMALL_STATE(1906)] = 59466, + [SMALL_STATE(1906)] = 59474, [SMALL_STATE(1907)] = 59511, [SMALL_STATE(1908)] = 59556, [SMALL_STATE(1909)] = 59593, @@ -187205,78 +187250,78 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1913)] = 59765, [SMALL_STATE(1914)] = 59801, [SMALL_STATE(1915)] = 59841, - [SMALL_STATE(1916)] = 59881, - [SMALL_STATE(1917)] = 59921, - [SMALL_STATE(1918)] = 59961, - [SMALL_STATE(1919)] = 59997, - [SMALL_STATE(1920)] = 60033, + [SMALL_STATE(1916)] = 59877, + [SMALL_STATE(1917)] = 59917, + [SMALL_STATE(1918)] = 59957, + [SMALL_STATE(1919)] = 59993, + [SMALL_STATE(1920)] = 60029, [SMALL_STATE(1921)] = 60069, [SMALL_STATE(1922)] = 60102, [SMALL_STATE(1923)] = 60135, [SMALL_STATE(1924)] = 60168, [SMALL_STATE(1925)] = 60201, - [SMALL_STATE(1926)] = 60232, + [SMALL_STATE(1926)] = 60234, [SMALL_STATE(1927)] = 60265, [SMALL_STATE(1928)] = 60298, [SMALL_STATE(1929)] = 60331, [SMALL_STATE(1930)] = 60364, - [SMALL_STATE(1931)] = 60408, - [SMALL_STATE(1932)] = 60468, - [SMALL_STATE(1933)] = 60528, - [SMALL_STATE(1934)] = 60560, - [SMALL_STATE(1935)] = 60592, + [SMALL_STATE(1931)] = 60396, + [SMALL_STATE(1932)] = 60428, + [SMALL_STATE(1933)] = 60488, + [SMALL_STATE(1934)] = 60520, + [SMALL_STATE(1935)] = 60580, [SMALL_STATE(1936)] = 60624, [SMALL_STATE(1937)] = 60670, - [SMALL_STATE(1938)] = 60699, - [SMALL_STATE(1939)] = 60742, - [SMALL_STATE(1940)] = 60773, - [SMALL_STATE(1941)] = 60826, - [SMALL_STATE(1942)] = 60859, - [SMALL_STATE(1943)] = 60888, - [SMALL_STATE(1944)] = 60917, - [SMALL_STATE(1945)] = 60950, - [SMALL_STATE(1946)] = 61003, - [SMALL_STATE(1947)] = 61032, - [SMALL_STATE(1948)] = 61061, - [SMALL_STATE(1949)] = 61092, - [SMALL_STATE(1950)] = 61125, - [SMALL_STATE(1951)] = 61156, - [SMALL_STATE(1952)] = 61189, - [SMALL_STATE(1953)] = 61218, - [SMALL_STATE(1954)] = 61249, - [SMALL_STATE(1955)] = 61280, - [SMALL_STATE(1956)] = 61309, - [SMALL_STATE(1957)] = 61340, - [SMALL_STATE(1958)] = 61373, - [SMALL_STATE(1959)] = 61402, - [SMALL_STATE(1960)] = 61433, - [SMALL_STATE(1961)] = 61462, - [SMALL_STATE(1962)] = 61517, - [SMALL_STATE(1963)] = 61550, - [SMALL_STATE(1964)] = 61581, + [SMALL_STATE(1938)] = 60713, + [SMALL_STATE(1939)] = 60746, + [SMALL_STATE(1940)] = 60775, + [SMALL_STATE(1941)] = 60808, + [SMALL_STATE(1942)] = 60839, + [SMALL_STATE(1943)] = 60894, + [SMALL_STATE(1944)] = 60923, + [SMALL_STATE(1945)] = 60956, + [SMALL_STATE(1946)] = 60987, + [SMALL_STATE(1947)] = 61016, + [SMALL_STATE(1948)] = 61047, + [SMALL_STATE(1949)] = 61078, + [SMALL_STATE(1950)] = 61111, + [SMALL_STATE(1951)] = 61140, + [SMALL_STATE(1952)] = 61173, + [SMALL_STATE(1953)] = 61206, + [SMALL_STATE(1954)] = 61235, + [SMALL_STATE(1955)] = 61264, + [SMALL_STATE(1956)] = 61317, + [SMALL_STATE(1957)] = 61346, + [SMALL_STATE(1958)] = 61375, + [SMALL_STATE(1959)] = 61428, + [SMALL_STATE(1960)] = 61457, + [SMALL_STATE(1961)] = 61488, + [SMALL_STATE(1962)] = 61529, + [SMALL_STATE(1963)] = 61560, + [SMALL_STATE(1964)] = 61591, [SMALL_STATE(1965)] = 61622, [SMALL_STATE(1966)] = 61650, [SMALL_STATE(1967)] = 61678, [SMALL_STATE(1968)] = 61706, [SMALL_STATE(1969)] = 61734, - [SMALL_STATE(1970)] = 61764, - [SMALL_STATE(1971)] = 61792, - [SMALL_STATE(1972)] = 61820, - [SMALL_STATE(1973)] = 61848, - [SMALL_STATE(1974)] = 61876, - [SMALL_STATE(1975)] = 61920, - [SMALL_STATE(1976)] = 61948, - [SMALL_STATE(1977)] = 61976, - [SMALL_STATE(1978)] = 62004, - [SMALL_STATE(1979)] = 62034, - [SMALL_STATE(1980)] = 62062, - [SMALL_STATE(1981)] = 62090, - [SMALL_STATE(1982)] = 62118, - [SMALL_STATE(1983)] = 62146, - [SMALL_STATE(1984)] = 62174, - [SMALL_STATE(1985)] = 62202, - [SMALL_STATE(1986)] = 62230, - [SMALL_STATE(1987)] = 62258, + [SMALL_STATE(1970)] = 61762, + [SMALL_STATE(1971)] = 61790, + [SMALL_STATE(1972)] = 61818, + [SMALL_STATE(1973)] = 61846, + [SMALL_STATE(1974)] = 61874, + [SMALL_STATE(1975)] = 61902, + [SMALL_STATE(1976)] = 61930, + [SMALL_STATE(1977)] = 61958, + [SMALL_STATE(1978)] = 61986, + [SMALL_STATE(1979)] = 62014, + [SMALL_STATE(1980)] = 62042, + [SMALL_STATE(1981)] = 62070, + [SMALL_STATE(1982)] = 62114, + [SMALL_STATE(1983)] = 62144, + [SMALL_STATE(1984)] = 62172, + [SMALL_STATE(1985)] = 62200, + [SMALL_STATE(1986)] = 62228, + [SMALL_STATE(1987)] = 62256, [SMALL_STATE(1988)] = 62286, [SMALL_STATE(1989)] = 62314, [SMALL_STATE(1990)] = 62342, @@ -187288,25 +187333,25 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(1996)] = 62510, [SMALL_STATE(1997)] = 62538, [SMALL_STATE(1998)] = 62567, - [SMALL_STATE(1999)] = 62618, - [SMALL_STATE(2000)] = 62649, + [SMALL_STATE(1999)] = 62598, + [SMALL_STATE(2000)] = 62633, [SMALL_STATE(2001)] = 62684, [SMALL_STATE(2002)] = 62713, [SMALL_STATE(2003)] = 62745, [SMALL_STATE(2004)] = 62777, - [SMALL_STATE(2005)] = 62809, - [SMALL_STATE(2006)] = 62841, - [SMALL_STATE(2007)] = 62873, - [SMALL_STATE(2008)] = 62903, - [SMALL_STATE(2009)] = 62931, - [SMALL_STATE(2010)] = 62963, - [SMALL_STATE(2011)] = 62995, - [SMALL_STATE(2012)] = 63027, - [SMALL_STATE(2013)] = 63071, - [SMALL_STATE(2014)] = 63103, - [SMALL_STATE(2015)] = 63135, - [SMALL_STATE(2016)] = 63167, - [SMALL_STATE(2017)] = 63199, + [SMALL_STATE(2005)] = 62805, + [SMALL_STATE(2006)] = 62835, + [SMALL_STATE(2007)] = 62867, + [SMALL_STATE(2008)] = 62911, + [SMALL_STATE(2009)] = 62943, + [SMALL_STATE(2010)] = 62975, + [SMALL_STATE(2011)] = 63007, + [SMALL_STATE(2012)] = 63035, + [SMALL_STATE(2013)] = 63067, + [SMALL_STATE(2014)] = 63099, + [SMALL_STATE(2015)] = 63131, + [SMALL_STATE(2016)] = 63163, + [SMALL_STATE(2017)] = 63195, [SMALL_STATE(2018)] = 63227, [SMALL_STATE(2019)] = 63272, [SMALL_STATE(2020)] = 63317, @@ -187316,1022 +187361,1022 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2024)] = 63497, [SMALL_STATE(2025)] = 63542, [SMALL_STATE(2026)] = 63587, - [SMALL_STATE(2027)] = 63632, - [SMALL_STATE(2028)] = 63677, - [SMALL_STATE(2029)] = 63722, + [SMALL_STATE(2027)] = 63624, + [SMALL_STATE(2028)] = 63669, + [SMALL_STATE(2029)] = 63714, [SMALL_STATE(2030)] = 63759, [SMALL_STATE(2031)] = 63804, [SMALL_STATE(2032)] = 63849, [SMALL_STATE(2033)] = 63894, [SMALL_STATE(2034)] = 63939, - [SMALL_STATE(2035)] = 63981, - [SMALL_STATE(2036)] = 64021, - [SMALL_STATE(2037)] = 64049, - [SMALL_STATE(2038)] = 64073, - [SMALL_STATE(2039)] = 64101, - [SMALL_STATE(2040)] = 64139, - [SMALL_STATE(2041)] = 64169, - [SMALL_STATE(2042)] = 64199, - [SMALL_STATE(2043)] = 64237, - [SMALL_STATE(2044)] = 64261, - [SMALL_STATE(2045)] = 64289, - [SMALL_STATE(2046)] = 64317, - [SMALL_STATE(2047)] = 64347, - [SMALL_STATE(2048)] = 64371, - [SMALL_STATE(2049)] = 64395, - [SMALL_STATE(2050)] = 64437, - [SMALL_STATE(2051)] = 64479, - [SMALL_STATE(2052)] = 64521, - [SMALL_STATE(2053)] = 64563, - [SMALL_STATE(2054)] = 64597, - [SMALL_STATE(2055)] = 64637, - [SMALL_STATE(2056)] = 64671, - [SMALL_STATE(2057)] = 64699, - [SMALL_STATE(2058)] = 64737, - [SMALL_STATE(2059)] = 64775, - [SMALL_STATE(2060)] = 64813, - [SMALL_STATE(2061)] = 64837, - [SMALL_STATE(2062)] = 64875, - [SMALL_STATE(2063)] = 64913, - [SMALL_STATE(2064)] = 64941, - [SMALL_STATE(2065)] = 64979, - [SMALL_STATE(2066)] = 65007, - [SMALL_STATE(2067)] = 65035, - [SMALL_STATE(2068)] = 65063, - [SMALL_STATE(2069)] = 65091, - [SMALL_STATE(2070)] = 65121, - [SMALL_STATE(2071)] = 65163, - [SMALL_STATE(2072)] = 65191, - [SMALL_STATE(2073)] = 65231, - [SMALL_STATE(2074)] = 65273, - [SMALL_STATE(2075)] = 65301, + [SMALL_STATE(2035)] = 63977, + [SMALL_STATE(2036)] = 64005, + [SMALL_STATE(2037)] = 64033, + [SMALL_STATE(2038)] = 64071, + [SMALL_STATE(2039)] = 64111, + [SMALL_STATE(2040)] = 64135, + [SMALL_STATE(2041)] = 64163, + [SMALL_STATE(2042)] = 64191, + [SMALL_STATE(2043)] = 64231, + [SMALL_STATE(2044)] = 64259, + [SMALL_STATE(2045)] = 64297, + [SMALL_STATE(2046)] = 64325, + [SMALL_STATE(2047)] = 64353, + [SMALL_STATE(2048)] = 64377, + [SMALL_STATE(2049)] = 64405, + [SMALL_STATE(2050)] = 64445, + [SMALL_STATE(2051)] = 64475, + [SMALL_STATE(2052)] = 64517, + [SMALL_STATE(2053)] = 64559, + [SMALL_STATE(2054)] = 64583, + [SMALL_STATE(2055)] = 64611, + [SMALL_STATE(2056)] = 64653, + [SMALL_STATE(2057)] = 64677, + [SMALL_STATE(2058)] = 64719, + [SMALL_STATE(2059)] = 64757, + [SMALL_STATE(2060)] = 64781, + [SMALL_STATE(2061)] = 64823, + [SMALL_STATE(2062)] = 64857, + [SMALL_STATE(2063)] = 64899, + [SMALL_STATE(2064)] = 64933, + [SMALL_STATE(2065)] = 64963, + [SMALL_STATE(2066)] = 65001, + [SMALL_STATE(2067)] = 65029, + [SMALL_STATE(2068)] = 65057, + [SMALL_STATE(2069)] = 65087, + [SMALL_STATE(2070)] = 65115, + [SMALL_STATE(2071)] = 65153, + [SMALL_STATE(2072)] = 65183, + [SMALL_STATE(2073)] = 65221, + [SMALL_STATE(2074)] = 65259, + [SMALL_STATE(2075)] = 65297, [SMALL_STATE(2076)] = 65339, - [SMALL_STATE(2077)] = 65380, - [SMALL_STATE(2078)] = 65417, - [SMALL_STATE(2079)] = 65448, - [SMALL_STATE(2080)] = 65471, - [SMALL_STATE(2081)] = 65494, - [SMALL_STATE(2082)] = 65535, - [SMALL_STATE(2083)] = 65576, - [SMALL_STATE(2084)] = 65599, - [SMALL_STATE(2085)] = 65622, - [SMALL_STATE(2086)] = 65645, - [SMALL_STATE(2087)] = 65668, - [SMALL_STATE(2088)] = 65691, - [SMALL_STATE(2089)] = 65714, - [SMALL_STATE(2090)] = 65737, - [SMALL_STATE(2091)] = 65760, - [SMALL_STATE(2092)] = 65783, - [SMALL_STATE(2093)] = 65806, - [SMALL_STATE(2094)] = 65837, - [SMALL_STATE(2095)] = 65860, - [SMALL_STATE(2096)] = 65883, - [SMALL_STATE(2097)] = 65906, - [SMALL_STATE(2098)] = 65929, - [SMALL_STATE(2099)] = 65952, - [SMALL_STATE(2100)] = 65975, - [SMALL_STATE(2101)] = 65998, - [SMALL_STATE(2102)] = 66021, - [SMALL_STATE(2103)] = 66044, - [SMALL_STATE(2104)] = 66067, - [SMALL_STATE(2105)] = 66090, - [SMALL_STATE(2106)] = 66113, - [SMALL_STATE(2107)] = 66150, - [SMALL_STATE(2108)] = 66173, - [SMALL_STATE(2109)] = 66196, - [SMALL_STATE(2110)] = 66219, - [SMALL_STATE(2111)] = 66242, - [SMALL_STATE(2112)] = 66265, - [SMALL_STATE(2113)] = 66288, - [SMALL_STATE(2114)] = 66325, - [SMALL_STATE(2115)] = 66348, - [SMALL_STATE(2116)] = 66371, - [SMALL_STATE(2117)] = 66394, - [SMALL_STATE(2118)] = 66417, - [SMALL_STATE(2119)] = 66452, - [SMALL_STATE(2120)] = 66483, - [SMALL_STATE(2121)] = 66506, - [SMALL_STATE(2122)] = 66529, - [SMALL_STATE(2123)] = 66566, - [SMALL_STATE(2124)] = 66597, - [SMALL_STATE(2125)] = 66632, - [SMALL_STATE(2126)] = 66673, - [SMALL_STATE(2127)] = 66708, + [SMALL_STATE(2077)] = 65362, + [SMALL_STATE(2078)] = 65385, + [SMALL_STATE(2079)] = 65408, + [SMALL_STATE(2080)] = 65431, + [SMALL_STATE(2081)] = 65454, + [SMALL_STATE(2082)] = 65477, + [SMALL_STATE(2083)] = 65500, + [SMALL_STATE(2084)] = 65523, + [SMALL_STATE(2085)] = 65546, + [SMALL_STATE(2086)] = 65569, + [SMALL_STATE(2087)] = 65592, + [SMALL_STATE(2088)] = 65629, + [SMALL_STATE(2089)] = 65652, + [SMALL_STATE(2090)] = 65693, + [SMALL_STATE(2091)] = 65734, + [SMALL_STATE(2092)] = 65757, + [SMALL_STATE(2093)] = 65780, + [SMALL_STATE(2094)] = 65803, + [SMALL_STATE(2095)] = 65826, + [SMALL_STATE(2096)] = 65849, + [SMALL_STATE(2097)] = 65872, + [SMALL_STATE(2098)] = 65895, + [SMALL_STATE(2099)] = 65918, + [SMALL_STATE(2100)] = 65941, + [SMALL_STATE(2101)] = 65964, + [SMALL_STATE(2102)] = 65987, + [SMALL_STATE(2103)] = 66010, + [SMALL_STATE(2104)] = 66033, + [SMALL_STATE(2105)] = 66056, + [SMALL_STATE(2106)] = 66093, + [SMALL_STATE(2107)] = 66116, + [SMALL_STATE(2108)] = 66139, + [SMALL_STATE(2109)] = 66180, + [SMALL_STATE(2110)] = 66211, + [SMALL_STATE(2111)] = 66234, + [SMALL_STATE(2112)] = 66271, + [SMALL_STATE(2113)] = 66294, + [SMALL_STATE(2114)] = 66329, + [SMALL_STATE(2115)] = 66362, + [SMALL_STATE(2116)] = 66385, + [SMALL_STATE(2117)] = 66426, + [SMALL_STATE(2118)] = 66461, + [SMALL_STATE(2119)] = 66492, + [SMALL_STATE(2120)] = 66523, + [SMALL_STATE(2121)] = 66558, + [SMALL_STATE(2122)] = 66581, + [SMALL_STATE(2123)] = 66604, + [SMALL_STATE(2124)] = 66641, + [SMALL_STATE(2125)] = 66672, + [SMALL_STATE(2126)] = 66695, + [SMALL_STATE(2127)] = 66718, [SMALL_STATE(2128)] = 66741, - [SMALL_STATE(2129)] = 66775, - [SMALL_STATE(2130)] = 66807, - [SMALL_STATE(2131)] = 66845, - [SMALL_STATE(2132)] = 66869, - [SMALL_STATE(2133)] = 66907, - [SMALL_STATE(2134)] = 66939, - [SMALL_STATE(2135)] = 66965, - [SMALL_STATE(2136)] = 67003, - [SMALL_STATE(2137)] = 67035, - [SMALL_STATE(2138)] = 67067, - [SMALL_STATE(2139)] = 67105, - [SMALL_STATE(2140)] = 67133, - [SMALL_STATE(2141)] = 67171, - [SMALL_STATE(2142)] = 67209, - [SMALL_STATE(2143)] = 67237, - [SMALL_STATE(2144)] = 67275, - [SMALL_STATE(2145)] = 67303, + [SMALL_STATE(2129)] = 66765, + [SMALL_STATE(2130)] = 66799, + [SMALL_STATE(2131)] = 66831, + [SMALL_STATE(2132)] = 66863, + [SMALL_STATE(2133)] = 66901, + [SMALL_STATE(2134)] = 66929, + [SMALL_STATE(2135)] = 66953, + [SMALL_STATE(2136)] = 66987, + [SMALL_STATE(2137)] = 67019, + [SMALL_STATE(2138)] = 67047, + [SMALL_STATE(2139)] = 67071, + [SMALL_STATE(2140)] = 67109, + [SMALL_STATE(2141)] = 67141, + [SMALL_STATE(2142)] = 67179, + [SMALL_STATE(2143)] = 67217, + [SMALL_STATE(2144)] = 67255, + [SMALL_STATE(2145)] = 67293, [SMALL_STATE(2146)] = 67331, - [SMALL_STATE(2147)] = 67363, - [SMALL_STATE(2148)] = 67395, - [SMALL_STATE(2149)] = 67433, - [SMALL_STATE(2150)] = 67465, - [SMALL_STATE(2151)] = 67499, - [SMALL_STATE(2152)] = 67527, - [SMALL_STATE(2153)] = 67563, - [SMALL_STATE(2154)] = 67601, - [SMALL_STATE(2155)] = 67633, - [SMALL_STATE(2156)] = 67665, - [SMALL_STATE(2157)] = 67689, - [SMALL_STATE(2158)] = 67727, - [SMALL_STATE(2159)] = 67759, - [SMALL_STATE(2160)] = 67787, - [SMALL_STATE(2161)] = 67815, - [SMALL_STATE(2162)] = 67853, - [SMALL_STATE(2163)] = 67885, - [SMALL_STATE(2164)] = 67923, - [SMALL_STATE(2165)] = 67961, - [SMALL_STATE(2166)] = 67985, - [SMALL_STATE(2167)] = 68011, - [SMALL_STATE(2168)] = 68035, - [SMALL_STATE(2169)] = 68061, - [SMALL_STATE(2170)] = 68087, - [SMALL_STATE(2171)] = 68125, - [SMALL_STATE(2172)] = 68149, - [SMALL_STATE(2173)] = 68187, - [SMALL_STATE(2174)] = 68219, - [SMALL_STATE(2175)] = 68257, + [SMALL_STATE(2147)] = 67357, + [SMALL_STATE(2148)] = 67389, + [SMALL_STATE(2149)] = 67427, + [SMALL_STATE(2150)] = 67451, + [SMALL_STATE(2151)] = 67487, + [SMALL_STATE(2152)] = 67515, + [SMALL_STATE(2153)] = 67547, + [SMALL_STATE(2154)] = 67573, + [SMALL_STATE(2155)] = 67601, + [SMALL_STATE(2156)] = 67633, + [SMALL_STATE(2157)] = 67657, + [SMALL_STATE(2158)] = 67689, + [SMALL_STATE(2159)] = 67727, + [SMALL_STATE(2160)] = 67765, + [SMALL_STATE(2161)] = 67793, + [SMALL_STATE(2162)] = 67831, + [SMALL_STATE(2163)] = 67859, + [SMALL_STATE(2164)] = 67885, + [SMALL_STATE(2165)] = 67923, + [SMALL_STATE(2166)] = 67955, + [SMALL_STATE(2167)] = 67993, + [SMALL_STATE(2168)] = 68031, + [SMALL_STATE(2169)] = 68063, + [SMALL_STATE(2170)] = 68101, + [SMALL_STATE(2171)] = 68133, + [SMALL_STATE(2172)] = 68171, + [SMALL_STATE(2173)] = 68203, + [SMALL_STATE(2174)] = 68229, + [SMALL_STATE(2175)] = 68261, [SMALL_STATE(2176)] = 68289, [SMALL_STATE(2177)] = 68324, - [SMALL_STATE(2178)] = 68359, - [SMALL_STATE(2179)] = 68394, - [SMALL_STATE(2180)] = 68429, - [SMALL_STATE(2181)] = 68464, - [SMALL_STATE(2182)] = 68499, - [SMALL_STATE(2183)] = 68534, - [SMALL_STATE(2184)] = 68569, - [SMALL_STATE(2185)] = 68604, - [SMALL_STATE(2186)] = 68639, - [SMALL_STATE(2187)] = 68674, - [SMALL_STATE(2188)] = 68709, - [SMALL_STATE(2189)] = 68744, - [SMALL_STATE(2190)] = 68779, - [SMALL_STATE(2191)] = 68806, - [SMALL_STATE(2192)] = 68841, - [SMALL_STATE(2193)] = 68874, - [SMALL_STATE(2194)] = 68909, - [SMALL_STATE(2195)] = 68934, - [SMALL_STATE(2196)] = 68969, - [SMALL_STATE(2197)] = 69004, - [SMALL_STATE(2198)] = 69039, - [SMALL_STATE(2199)] = 69074, - [SMALL_STATE(2200)] = 69107, - [SMALL_STATE(2201)] = 69142, - [SMALL_STATE(2202)] = 69175, - [SMALL_STATE(2203)] = 69210, - [SMALL_STATE(2204)] = 69231, - [SMALL_STATE(2205)] = 69266, - [SMALL_STATE(2206)] = 69301, - [SMALL_STATE(2207)] = 69334, - [SMALL_STATE(2208)] = 69369, - [SMALL_STATE(2209)] = 69394, - [SMALL_STATE(2210)] = 69429, - [SMALL_STATE(2211)] = 69464, - [SMALL_STATE(2212)] = 69499, - [SMALL_STATE(2213)] = 69534, - [SMALL_STATE(2214)] = 69569, - [SMALL_STATE(2215)] = 69594, - [SMALL_STATE(2216)] = 69629, - [SMALL_STATE(2217)] = 69662, - [SMALL_STATE(2218)] = 69697, - [SMALL_STATE(2219)] = 69732, - [SMALL_STATE(2220)] = 69753, - [SMALL_STATE(2221)] = 69788, - [SMALL_STATE(2222)] = 69809, - [SMALL_STATE(2223)] = 69844, - [SMALL_STATE(2224)] = 69865, - [SMALL_STATE(2225)] = 69894, - [SMALL_STATE(2226)] = 69915, - [SMALL_STATE(2227)] = 69950, - [SMALL_STATE(2228)] = 69971, - [SMALL_STATE(2229)] = 70006, - [SMALL_STATE(2230)] = 70041, + [SMALL_STATE(2178)] = 68345, + [SMALL_STATE(2179)] = 68366, + [SMALL_STATE(2180)] = 68387, + [SMALL_STATE(2181)] = 68422, + [SMALL_STATE(2182)] = 68457, + [SMALL_STATE(2183)] = 68492, + [SMALL_STATE(2184)] = 68527, + [SMALL_STATE(2185)] = 68562, + [SMALL_STATE(2186)] = 68597, + [SMALL_STATE(2187)] = 68632, + [SMALL_STATE(2188)] = 68667, + [SMALL_STATE(2189)] = 68702, + [SMALL_STATE(2190)] = 68737, + [SMALL_STATE(2191)] = 68772, + [SMALL_STATE(2192)] = 68807, + [SMALL_STATE(2193)] = 68842, + [SMALL_STATE(2194)] = 68877, + [SMALL_STATE(2195)] = 68912, + [SMALL_STATE(2196)] = 68947, + [SMALL_STATE(2197)] = 68982, + [SMALL_STATE(2198)] = 69017, + [SMALL_STATE(2199)] = 69052, + [SMALL_STATE(2200)] = 69087, + [SMALL_STATE(2201)] = 69122, + [SMALL_STATE(2202)] = 69147, + [SMALL_STATE(2203)] = 69182, + [SMALL_STATE(2204)] = 69207, + [SMALL_STATE(2205)] = 69242, + [SMALL_STATE(2206)] = 69277, + [SMALL_STATE(2207)] = 69306, + [SMALL_STATE(2208)] = 69327, + [SMALL_STATE(2209)] = 69348, + [SMALL_STATE(2210)] = 69383, + [SMALL_STATE(2211)] = 69418, + [SMALL_STATE(2212)] = 69451, + [SMALL_STATE(2213)] = 69486, + [SMALL_STATE(2214)] = 69511, + [SMALL_STATE(2215)] = 69546, + [SMALL_STATE(2216)] = 69581, + [SMALL_STATE(2217)] = 69614, + [SMALL_STATE(2218)] = 69649, + [SMALL_STATE(2219)] = 69684, + [SMALL_STATE(2220)] = 69719, + [SMALL_STATE(2221)] = 69746, + [SMALL_STATE(2222)] = 69779, + [SMALL_STATE(2223)] = 69812, + [SMALL_STATE(2224)] = 69833, + [SMALL_STATE(2225)] = 69868, + [SMALL_STATE(2226)] = 69903, + [SMALL_STATE(2227)] = 69938, + [SMALL_STATE(2228)] = 69973, + [SMALL_STATE(2229)] = 70008, + [SMALL_STATE(2230)] = 70043, [SMALL_STATE(2231)] = 70076, [SMALL_STATE(2232)] = 70111, - [SMALL_STATE(2233)] = 70143, - [SMALL_STATE(2234)] = 70173, - [SMALL_STATE(2235)] = 70205, - [SMALL_STATE(2236)] = 70237, - [SMALL_STATE(2237)] = 70269, - [SMALL_STATE(2238)] = 70301, - [SMALL_STATE(2239)] = 70333, - [SMALL_STATE(2240)] = 70365, - [SMALL_STATE(2241)] = 70397, - [SMALL_STATE(2242)] = 70427, - [SMALL_STATE(2243)] = 70453, - [SMALL_STATE(2244)] = 70485, - [SMALL_STATE(2245)] = 70507, - [SMALL_STATE(2246)] = 70535, - [SMALL_STATE(2247)] = 70567, - [SMALL_STATE(2248)] = 70597, - [SMALL_STATE(2249)] = 70625, - [SMALL_STATE(2250)] = 70655, - [SMALL_STATE(2251)] = 70687, + [SMALL_STATE(2233)] = 70137, + [SMALL_STATE(2234)] = 70163, + [SMALL_STATE(2235)] = 70193, + [SMALL_STATE(2236)] = 70223, + [SMALL_STATE(2237)] = 70253, + [SMALL_STATE(2238)] = 70283, + [SMALL_STATE(2239)] = 70311, + [SMALL_STATE(2240)] = 70343, + [SMALL_STATE(2241)] = 70365, + [SMALL_STATE(2242)] = 70397, + [SMALL_STATE(2243)] = 70429, + [SMALL_STATE(2244)] = 70461, + [SMALL_STATE(2245)] = 70493, + [SMALL_STATE(2246)] = 70525, + [SMALL_STATE(2247)] = 70557, + [SMALL_STATE(2248)] = 70589, + [SMALL_STATE(2249)] = 70621, + [SMALL_STATE(2250)] = 70651, + [SMALL_STATE(2251)] = 70681, [SMALL_STATE(2252)] = 70713, - [SMALL_STATE(2253)] = 70741, - [SMALL_STATE(2254)] = 70771, - [SMALL_STATE(2255)] = 70803, - [SMALL_STATE(2256)] = 70829, - [SMALL_STATE(2257)] = 70857, - [SMALL_STATE(2258)] = 70887, - [SMALL_STATE(2259)] = 70909, - [SMALL_STATE(2260)] = 70939, - [SMALL_STATE(2261)] = 70969, - [SMALL_STATE(2262)] = 71001, - [SMALL_STATE(2263)] = 71033, - [SMALL_STATE(2264)] = 71065, - [SMALL_STATE(2265)] = 71087, - [SMALL_STATE(2266)] = 71119, - [SMALL_STATE(2267)] = 71149, - [SMALL_STATE(2268)] = 71181, - [SMALL_STATE(2269)] = 71213, - [SMALL_STATE(2270)] = 71245, - [SMALL_STATE(2271)] = 71277, - [SMALL_STATE(2272)] = 71299, - [SMALL_STATE(2273)] = 71331, - [SMALL_STATE(2274)] = 71363, - [SMALL_STATE(2275)] = 71395, - [SMALL_STATE(2276)] = 71417, - [SMALL_STATE(2277)] = 71449, - [SMALL_STATE(2278)] = 71481, - [SMALL_STATE(2279)] = 71513, - [SMALL_STATE(2280)] = 71545, - [SMALL_STATE(2281)] = 71577, - [SMALL_STATE(2282)] = 71609, - [SMALL_STATE(2283)] = 71637, - [SMALL_STATE(2284)] = 71669, - [SMALL_STATE(2285)] = 71699, - [SMALL_STATE(2286)] = 71725, - [SMALL_STATE(2287)] = 71757, + [SMALL_STATE(2253)] = 70745, + [SMALL_STATE(2254)] = 70777, + [SMALL_STATE(2255)] = 70809, + [SMALL_STATE(2256)] = 70841, + [SMALL_STATE(2257)] = 70873, + [SMALL_STATE(2258)] = 70901, + [SMALL_STATE(2259)] = 70933, + [SMALL_STATE(2260)] = 70965, + [SMALL_STATE(2261)] = 70997, + [SMALL_STATE(2262)] = 71027, + [SMALL_STATE(2263)] = 71057, + [SMALL_STATE(2264)] = 71089, + [SMALL_STATE(2265)] = 71119, + [SMALL_STATE(2266)] = 71149, + [SMALL_STATE(2267)] = 71171, + [SMALL_STATE(2268)] = 71203, + [SMALL_STATE(2269)] = 71235, + [SMALL_STATE(2270)] = 71267, + [SMALL_STATE(2271)] = 71295, + [SMALL_STATE(2272)] = 71327, + [SMALL_STATE(2273)] = 71349, + [SMALL_STATE(2274)] = 71381, + [SMALL_STATE(2275)] = 71413, + [SMALL_STATE(2276)] = 71445, + [SMALL_STATE(2277)] = 71477, + [SMALL_STATE(2278)] = 71509, + [SMALL_STATE(2279)] = 71541, + [SMALL_STATE(2280)] = 71573, + [SMALL_STATE(2281)] = 71605, + [SMALL_STATE(2282)] = 71633, + [SMALL_STATE(2283)] = 71659, + [SMALL_STATE(2284)] = 71681, + [SMALL_STATE(2285)] = 71709, + [SMALL_STATE(2286)] = 71735, + [SMALL_STATE(2287)] = 71767, [SMALL_STATE(2288)] = 71789, [SMALL_STATE(2289)] = 71811, - [SMALL_STATE(2290)] = 71840, - [SMALL_STATE(2291)] = 71869, - [SMALL_STATE(2292)] = 71898, - [SMALL_STATE(2293)] = 71927, - [SMALL_STATE(2294)] = 71956, - [SMALL_STATE(2295)] = 71985, - [SMALL_STATE(2296)] = 72014, - [SMALL_STATE(2297)] = 72043, - [SMALL_STATE(2298)] = 72066, - [SMALL_STATE(2299)] = 72095, - [SMALL_STATE(2300)] = 72124, - [SMALL_STATE(2301)] = 72153, - [SMALL_STATE(2302)] = 72182, - [SMALL_STATE(2303)] = 72211, - [SMALL_STATE(2304)] = 72240, - [SMALL_STATE(2305)] = 72269, - [SMALL_STATE(2306)] = 72298, - [SMALL_STATE(2307)] = 72327, - [SMALL_STATE(2308)] = 72356, - [SMALL_STATE(2309)] = 72379, - [SMALL_STATE(2310)] = 72400, - [SMALL_STATE(2311)] = 72423, - [SMALL_STATE(2312)] = 72452, - [SMALL_STATE(2313)] = 72475, - [SMALL_STATE(2314)] = 72494, - [SMALL_STATE(2315)] = 72523, - [SMALL_STATE(2316)] = 72552, - [SMALL_STATE(2317)] = 72581, - [SMALL_STATE(2318)] = 72604, - [SMALL_STATE(2319)] = 72633, - [SMALL_STATE(2320)] = 72656, - [SMALL_STATE(2321)] = 72677, - [SMALL_STATE(2322)] = 72706, - [SMALL_STATE(2323)] = 72731, - [SMALL_STATE(2324)] = 72760, - [SMALL_STATE(2325)] = 72785, - [SMALL_STATE(2326)] = 72808, - [SMALL_STATE(2327)] = 72837, - [SMALL_STATE(2328)] = 72866, - [SMALL_STATE(2329)] = 72895, - [SMALL_STATE(2330)] = 72924, - [SMALL_STATE(2331)] = 72947, - [SMALL_STATE(2332)] = 72968, - [SMALL_STATE(2333)] = 72997, - [SMALL_STATE(2334)] = 73026, - [SMALL_STATE(2335)] = 73055, - [SMALL_STATE(2336)] = 73082, - [SMALL_STATE(2337)] = 73111, - [SMALL_STATE(2338)] = 73140, - [SMALL_STATE(2339)] = 73163, - [SMALL_STATE(2340)] = 73186, - [SMALL_STATE(2341)] = 73209, - [SMALL_STATE(2342)] = 73232, - [SMALL_STATE(2343)] = 73259, - [SMALL_STATE(2344)] = 73288, - [SMALL_STATE(2345)] = 73317, - [SMALL_STATE(2346)] = 73346, - [SMALL_STATE(2347)] = 73375, - [SMALL_STATE(2348)] = 73400, - [SMALL_STATE(2349)] = 73429, - [SMALL_STATE(2350)] = 73458, - [SMALL_STATE(2351)] = 73479, - [SMALL_STATE(2352)] = 73498, - [SMALL_STATE(2353)] = 73527, - [SMALL_STATE(2354)] = 73556, - [SMALL_STATE(2355)] = 73583, - [SMALL_STATE(2356)] = 73612, - [SMALL_STATE(2357)] = 73641, - [SMALL_STATE(2358)] = 73662, - [SMALL_STATE(2359)] = 73685, - [SMALL_STATE(2360)] = 73706, - [SMALL_STATE(2361)] = 73731, - [SMALL_STATE(2362)] = 73760, - [SMALL_STATE(2363)] = 73783, - [SMALL_STATE(2364)] = 73812, - [SMALL_STATE(2365)] = 73833, - [SMALL_STATE(2366)] = 73862, - [SMALL_STATE(2367)] = 73891, - [SMALL_STATE(2368)] = 73918, - [SMALL_STATE(2369)] = 73947, - [SMALL_STATE(2370)] = 73976, - [SMALL_STATE(2371)] = 74005, - [SMALL_STATE(2372)] = 74026, - [SMALL_STATE(2373)] = 74055, - [SMALL_STATE(2374)] = 74084, - [SMALL_STATE(2375)] = 74113, - [SMALL_STATE(2376)] = 74142, - [SMALL_STATE(2377)] = 74171, - [SMALL_STATE(2378)] = 74200, - [SMALL_STATE(2379)] = 74229, - [SMALL_STATE(2380)] = 74258, - [SMALL_STATE(2381)] = 74285, - [SMALL_STATE(2382)] = 74312, - [SMALL_STATE(2383)] = 74341, - [SMALL_STATE(2384)] = 74370, - [SMALL_STATE(2385)] = 74399, - [SMALL_STATE(2386)] = 74428, - [SMALL_STATE(2387)] = 74457, - [SMALL_STATE(2388)] = 74486, - [SMALL_STATE(2389)] = 74512, - [SMALL_STATE(2390)] = 74538, - [SMALL_STATE(2391)] = 74564, - [SMALL_STATE(2392)] = 74590, - [SMALL_STATE(2393)] = 74608, - [SMALL_STATE(2394)] = 74632, - [SMALL_STATE(2395)] = 74654, - [SMALL_STATE(2396)] = 74676, - [SMALL_STATE(2397)] = 74702, - [SMALL_STATE(2398)] = 74720, - [SMALL_STATE(2399)] = 74742, - [SMALL_STATE(2400)] = 74768, - [SMALL_STATE(2401)] = 74790, - [SMALL_STATE(2402)] = 74812, - [SMALL_STATE(2403)] = 74836, - [SMALL_STATE(2404)] = 74862, - [SMALL_STATE(2405)] = 74888, - [SMALL_STATE(2406)] = 74906, - [SMALL_STATE(2407)] = 74932, - [SMALL_STATE(2408)] = 74958, - [SMALL_STATE(2409)] = 74980, - [SMALL_STATE(2410)] = 74998, - [SMALL_STATE(2411)] = 75024, - [SMALL_STATE(2412)] = 75046, - [SMALL_STATE(2413)] = 75072, - [SMALL_STATE(2414)] = 75096, - [SMALL_STATE(2415)] = 75120, - [SMALL_STATE(2416)] = 75146, - [SMALL_STATE(2417)] = 75172, - [SMALL_STATE(2418)] = 75196, - [SMALL_STATE(2419)] = 75222, - [SMALL_STATE(2420)] = 75248, - [SMALL_STATE(2421)] = 75270, - [SMALL_STATE(2422)] = 75294, - [SMALL_STATE(2423)] = 75320, - [SMALL_STATE(2424)] = 75344, - [SMALL_STATE(2425)] = 75370, - [SMALL_STATE(2426)] = 75396, - [SMALL_STATE(2427)] = 75416, - [SMALL_STATE(2428)] = 75442, - [SMALL_STATE(2429)] = 75468, - [SMALL_STATE(2430)] = 75494, - [SMALL_STATE(2431)] = 75514, - [SMALL_STATE(2432)] = 75540, - [SMALL_STATE(2433)] = 75566, - [SMALL_STATE(2434)] = 75590, - [SMALL_STATE(2435)] = 75608, - [SMALL_STATE(2436)] = 75634, - [SMALL_STATE(2437)] = 75658, - [SMALL_STATE(2438)] = 75680, - [SMALL_STATE(2439)] = 75706, - [SMALL_STATE(2440)] = 75724, - [SMALL_STATE(2441)] = 75742, - [SMALL_STATE(2442)] = 75768, - [SMALL_STATE(2443)] = 75794, - [SMALL_STATE(2444)] = 75820, - [SMALL_STATE(2445)] = 75846, - [SMALL_STATE(2446)] = 75872, - [SMALL_STATE(2447)] = 75890, - [SMALL_STATE(2448)] = 75916, - [SMALL_STATE(2449)] = 75934, - [SMALL_STATE(2450)] = 75958, - [SMALL_STATE(2451)] = 75976, - [SMALL_STATE(2452)] = 76002, - [SMALL_STATE(2453)] = 76020, - [SMALL_STATE(2454)] = 76038, - [SMALL_STATE(2455)] = 76056, - [SMALL_STATE(2456)] = 76074, - [SMALL_STATE(2457)] = 76098, - [SMALL_STATE(2458)] = 76122, - [SMALL_STATE(2459)] = 76148, - [SMALL_STATE(2460)] = 76172, - [SMALL_STATE(2461)] = 76198, - [SMALL_STATE(2462)] = 76224, - [SMALL_STATE(2463)] = 76242, - [SMALL_STATE(2464)] = 76268, - [SMALL_STATE(2465)] = 76286, - [SMALL_STATE(2466)] = 76310, - [SMALL_STATE(2467)] = 76336, - [SMALL_STATE(2468)] = 76362, - [SMALL_STATE(2469)] = 76388, - [SMALL_STATE(2470)] = 76406, + [SMALL_STATE(2290)] = 71843, + [SMALL_STATE(2291)] = 71872, + [SMALL_STATE(2292)] = 71901, + [SMALL_STATE(2293)] = 71922, + [SMALL_STATE(2294)] = 71951, + [SMALL_STATE(2295)] = 71980, + [SMALL_STATE(2296)] = 72009, + [SMALL_STATE(2297)] = 72038, + [SMALL_STATE(2298)] = 72067, + [SMALL_STATE(2299)] = 72096, + [SMALL_STATE(2300)] = 72117, + [SMALL_STATE(2301)] = 72146, + [SMALL_STATE(2302)] = 72175, + [SMALL_STATE(2303)] = 72198, + [SMALL_STATE(2304)] = 72227, + [SMALL_STATE(2305)] = 72252, + [SMALL_STATE(2306)] = 72279, + [SMALL_STATE(2307)] = 72308, + [SMALL_STATE(2308)] = 72337, + [SMALL_STATE(2309)] = 72366, + [SMALL_STATE(2310)] = 72395, + [SMALL_STATE(2311)] = 72424, + [SMALL_STATE(2312)] = 72447, + [SMALL_STATE(2313)] = 72476, + [SMALL_STATE(2314)] = 72505, + [SMALL_STATE(2315)] = 72534, + [SMALL_STATE(2316)] = 72555, + [SMALL_STATE(2317)] = 72584, + [SMALL_STATE(2318)] = 72613, + [SMALL_STATE(2319)] = 72642, + [SMALL_STATE(2320)] = 72665, + [SMALL_STATE(2321)] = 72684, + [SMALL_STATE(2322)] = 72713, + [SMALL_STATE(2323)] = 72742, + [SMALL_STATE(2324)] = 72771, + [SMALL_STATE(2325)] = 72800, + [SMALL_STATE(2326)] = 72829, + [SMALL_STATE(2327)] = 72858, + [SMALL_STATE(2328)] = 72887, + [SMALL_STATE(2329)] = 72916, + [SMALL_STATE(2330)] = 72945, + [SMALL_STATE(2331)] = 72974, + [SMALL_STATE(2332)] = 73003, + [SMALL_STATE(2333)] = 73032, + [SMALL_STATE(2334)] = 73061, + [SMALL_STATE(2335)] = 73090, + [SMALL_STATE(2336)] = 73119, + [SMALL_STATE(2337)] = 73142, + [SMALL_STATE(2338)] = 73169, + [SMALL_STATE(2339)] = 73198, + [SMALL_STATE(2340)] = 73227, + [SMALL_STATE(2341)] = 73246, + [SMALL_STATE(2342)] = 73269, + [SMALL_STATE(2343)] = 73294, + [SMALL_STATE(2344)] = 73323, + [SMALL_STATE(2345)] = 73344, + [SMALL_STATE(2346)] = 73373, + [SMALL_STATE(2347)] = 73402, + [SMALL_STATE(2348)] = 73431, + [SMALL_STATE(2349)] = 73458, + [SMALL_STATE(2350)] = 73487, + [SMALL_STATE(2351)] = 73516, + [SMALL_STATE(2352)] = 73545, + [SMALL_STATE(2353)] = 73574, + [SMALL_STATE(2354)] = 73603, + [SMALL_STATE(2355)] = 73630, + [SMALL_STATE(2356)] = 73659, + [SMALL_STATE(2357)] = 73682, + [SMALL_STATE(2358)] = 73711, + [SMALL_STATE(2359)] = 73740, + [SMALL_STATE(2360)] = 73769, + [SMALL_STATE(2361)] = 73790, + [SMALL_STATE(2362)] = 73811, + [SMALL_STATE(2363)] = 73832, + [SMALL_STATE(2364)] = 73853, + [SMALL_STATE(2365)] = 73882, + [SMALL_STATE(2366)] = 73905, + [SMALL_STATE(2367)] = 73934, + [SMALL_STATE(2368)] = 73963, + [SMALL_STATE(2369)] = 73992, + [SMALL_STATE(2370)] = 74021, + [SMALL_STATE(2371)] = 74050, + [SMALL_STATE(2372)] = 74077, + [SMALL_STATE(2373)] = 74102, + [SMALL_STATE(2374)] = 74131, + [SMALL_STATE(2375)] = 74156, + [SMALL_STATE(2376)] = 74185, + [SMALL_STATE(2377)] = 74214, + [SMALL_STATE(2378)] = 74241, + [SMALL_STATE(2379)] = 74270, + [SMALL_STATE(2380)] = 74293, + [SMALL_STATE(2381)] = 74316, + [SMALL_STATE(2382)] = 74345, + [SMALL_STATE(2383)] = 74368, + [SMALL_STATE(2384)] = 74397, + [SMALL_STATE(2385)] = 74420, + [SMALL_STATE(2386)] = 74443, + [SMALL_STATE(2387)] = 74466, + [SMALL_STATE(2388)] = 74489, + [SMALL_STATE(2389)] = 74518, + [SMALL_STATE(2390)] = 74544, + [SMALL_STATE(2391)] = 74570, + [SMALL_STATE(2392)] = 74594, + [SMALL_STATE(2393)] = 74618, + [SMALL_STATE(2394)] = 74644, + [SMALL_STATE(2395)] = 74670, + [SMALL_STATE(2396)] = 74696, + [SMALL_STATE(2397)] = 74720, + [SMALL_STATE(2398)] = 74746, + [SMALL_STATE(2399)] = 74772, + [SMALL_STATE(2400)] = 74798, + [SMALL_STATE(2401)] = 74822, + [SMALL_STATE(2402)] = 74848, + [SMALL_STATE(2403)] = 74874, + [SMALL_STATE(2404)] = 74892, + [SMALL_STATE(2405)] = 74918, + [SMALL_STATE(2406)] = 74944, + [SMALL_STATE(2407)] = 74964, + [SMALL_STATE(2408)] = 74986, + [SMALL_STATE(2409)] = 75012, + [SMALL_STATE(2410)] = 75038, + [SMALL_STATE(2411)] = 75064, + [SMALL_STATE(2412)] = 75090, + [SMALL_STATE(2413)] = 75116, + [SMALL_STATE(2414)] = 75142, + [SMALL_STATE(2415)] = 75168, + [SMALL_STATE(2416)] = 75194, + [SMALL_STATE(2417)] = 75212, + [SMALL_STATE(2418)] = 75230, + [SMALL_STATE(2419)] = 75248, + [SMALL_STATE(2420)] = 75274, + [SMALL_STATE(2421)] = 75300, + [SMALL_STATE(2422)] = 75320, + [SMALL_STATE(2423)] = 75346, + [SMALL_STATE(2424)] = 75372, + [SMALL_STATE(2425)] = 75394, + [SMALL_STATE(2426)] = 75420, + [SMALL_STATE(2427)] = 75446, + [SMALL_STATE(2428)] = 75470, + [SMALL_STATE(2429)] = 75492, + [SMALL_STATE(2430)] = 75518, + [SMALL_STATE(2431)] = 75542, + [SMALL_STATE(2432)] = 75568, + [SMALL_STATE(2433)] = 75594, + [SMALL_STATE(2434)] = 75618, + [SMALL_STATE(2435)] = 75644, + [SMALL_STATE(2436)] = 75662, + [SMALL_STATE(2437)] = 75688, + [SMALL_STATE(2438)] = 75714, + [SMALL_STATE(2439)] = 75736, + [SMALL_STATE(2440)] = 75754, + [SMALL_STATE(2441)] = 75778, + [SMALL_STATE(2442)] = 75804, + [SMALL_STATE(2443)] = 75822, + [SMALL_STATE(2444)] = 75840, + [SMALL_STATE(2445)] = 75858, + [SMALL_STATE(2446)] = 75884, + [SMALL_STATE(2447)] = 75902, + [SMALL_STATE(2448)] = 75928, + [SMALL_STATE(2449)] = 75946, + [SMALL_STATE(2450)] = 75964, + [SMALL_STATE(2451)] = 75990, + [SMALL_STATE(2452)] = 76016, + [SMALL_STATE(2453)] = 76034, + [SMALL_STATE(2454)] = 76052, + [SMALL_STATE(2455)] = 76070, + [SMALL_STATE(2456)] = 76088, + [SMALL_STATE(2457)] = 76106, + [SMALL_STATE(2458)] = 76132, + [SMALL_STATE(2459)] = 76154, + [SMALL_STATE(2460)] = 76180, + [SMALL_STATE(2461)] = 76204, + [SMALL_STATE(2462)] = 76222, + [SMALL_STATE(2463)] = 76244, + [SMALL_STATE(2464)] = 76262, + [SMALL_STATE(2465)] = 76288, + [SMALL_STATE(2466)] = 76314, + [SMALL_STATE(2467)] = 76340, + [SMALL_STATE(2468)] = 76366, + [SMALL_STATE(2469)] = 76390, + [SMALL_STATE(2470)] = 76414, [SMALL_STATE(2471)] = 76432, - [SMALL_STATE(2472)] = 76458, - [SMALL_STATE(2473)] = 76480, - [SMALL_STATE(2474)] = 76506, - [SMALL_STATE(2475)] = 76532, - [SMALL_STATE(2476)] = 76550, + [SMALL_STATE(2472)] = 76456, + [SMALL_STATE(2473)] = 76474, + [SMALL_STATE(2474)] = 76498, + [SMALL_STATE(2475)] = 76524, + [SMALL_STATE(2476)] = 76546, [SMALL_STATE(2477)] = 76568, [SMALL_STATE(2478)] = 76586, - [SMALL_STATE(2479)] = 76612, - [SMALL_STATE(2480)] = 76630, - [SMALL_STATE(2481)] = 76648, + [SMALL_STATE(2479)] = 76604, + [SMALL_STATE(2480)] = 76622, + [SMALL_STATE(2481)] = 76642, [SMALL_STATE(2482)] = 76666, - [SMALL_STATE(2483)] = 76692, - [SMALL_STATE(2484)] = 76718, - [SMALL_STATE(2485)] = 76738, - [SMALL_STATE(2486)] = 76764, - [SMALL_STATE(2487)] = 76790, + [SMALL_STATE(2483)] = 76690, + [SMALL_STATE(2484)] = 76716, + [SMALL_STATE(2485)] = 76742, + [SMALL_STATE(2486)] = 76768, + [SMALL_STATE(2487)] = 76794, [SMALL_STATE(2488)] = 76816, - [SMALL_STATE(2489)] = 76834, - [SMALL_STATE(2490)] = 76860, - [SMALL_STATE(2491)] = 76884, - [SMALL_STATE(2492)] = 76910, - [SMALL_STATE(2493)] = 76936, - [SMALL_STATE(2494)] = 76954, - [SMALL_STATE(2495)] = 76977, - [SMALL_STATE(2496)] = 77000, - [SMALL_STATE(2497)] = 77023, - [SMALL_STATE(2498)] = 77044, - [SMALL_STATE(2499)] = 77067, - [SMALL_STATE(2500)] = 77090, - [SMALL_STATE(2501)] = 77113, - [SMALL_STATE(2502)] = 77136, - [SMALL_STATE(2503)] = 77159, - [SMALL_STATE(2504)] = 77182, - [SMALL_STATE(2505)] = 77205, - [SMALL_STATE(2506)] = 77228, - [SMALL_STATE(2507)] = 77251, - [SMALL_STATE(2508)] = 77274, + [SMALL_STATE(2489)] = 76838, + [SMALL_STATE(2490)] = 76864, + [SMALL_STATE(2491)] = 76890, + [SMALL_STATE(2492)] = 76916, + [SMALL_STATE(2493)] = 76942, + [SMALL_STATE(2494)] = 76960, + [SMALL_STATE(2495)] = 76981, + [SMALL_STATE(2496)] = 77004, + [SMALL_STATE(2497)] = 77025, + [SMALL_STATE(2498)] = 77048, + [SMALL_STATE(2499)] = 77071, + [SMALL_STATE(2500)] = 77094, + [SMALL_STATE(2501)] = 77117, + [SMALL_STATE(2502)] = 77140, + [SMALL_STATE(2503)] = 77163, + [SMALL_STATE(2504)] = 77186, + [SMALL_STATE(2505)] = 77209, + [SMALL_STATE(2506)] = 77232, + [SMALL_STATE(2507)] = 77255, + [SMALL_STATE(2508)] = 77278, [SMALL_STATE(2509)] = 77297, - [SMALL_STATE(2510)] = 77318, - [SMALL_STATE(2511)] = 77341, - [SMALL_STATE(2512)] = 77364, - [SMALL_STATE(2513)] = 77387, - [SMALL_STATE(2514)] = 77410, - [SMALL_STATE(2515)] = 77433, - [SMALL_STATE(2516)] = 77456, - [SMALL_STATE(2517)] = 77479, - [SMALL_STATE(2518)] = 77502, - [SMALL_STATE(2519)] = 77525, - [SMALL_STATE(2520)] = 77548, - [SMALL_STATE(2521)] = 77571, - [SMALL_STATE(2522)] = 77594, - [SMALL_STATE(2523)] = 77617, - [SMALL_STATE(2524)] = 77640, - [SMALL_STATE(2525)] = 77663, - [SMALL_STATE(2526)] = 77684, - [SMALL_STATE(2527)] = 77703, - [SMALL_STATE(2528)] = 77720, + [SMALL_STATE(2510)] = 77320, + [SMALL_STATE(2511)] = 77339, + [SMALL_STATE(2512)] = 77362, + [SMALL_STATE(2513)] = 77385, + [SMALL_STATE(2514)] = 77408, + [SMALL_STATE(2515)] = 77431, + [SMALL_STATE(2516)] = 77454, + [SMALL_STATE(2517)] = 77473, + [SMALL_STATE(2518)] = 77496, + [SMALL_STATE(2519)] = 77519, + [SMALL_STATE(2520)] = 77542, + [SMALL_STATE(2521)] = 77563, + [SMALL_STATE(2522)] = 77586, + [SMALL_STATE(2523)] = 77609, + [SMALL_STATE(2524)] = 77632, + [SMALL_STATE(2525)] = 77655, + [SMALL_STATE(2526)] = 77678, + [SMALL_STATE(2527)] = 77701, + [SMALL_STATE(2528)] = 77722, [SMALL_STATE(2529)] = 77743, - [SMALL_STATE(2530)] = 77766, - [SMALL_STATE(2531)] = 77789, - [SMALL_STATE(2532)] = 77812, - [SMALL_STATE(2533)] = 77835, - [SMALL_STATE(2534)] = 77858, - [SMALL_STATE(2535)] = 77881, - [SMALL_STATE(2536)] = 77904, - [SMALL_STATE(2537)] = 77927, - [SMALL_STATE(2538)] = 77950, - [SMALL_STATE(2539)] = 77969, - [SMALL_STATE(2540)] = 77988, - [SMALL_STATE(2541)] = 78005, - [SMALL_STATE(2542)] = 78028, - [SMALL_STATE(2543)] = 78047, - [SMALL_STATE(2544)] = 78070, - [SMALL_STATE(2545)] = 78093, - [SMALL_STATE(2546)] = 78112, - [SMALL_STATE(2547)] = 78131, - [SMALL_STATE(2548)] = 78150, - [SMALL_STATE(2549)] = 78173, - [SMALL_STATE(2550)] = 78196, - [SMALL_STATE(2551)] = 78219, + [SMALL_STATE(2530)] = 77764, + [SMALL_STATE(2531)] = 77787, + [SMALL_STATE(2532)] = 77810, + [SMALL_STATE(2533)] = 77833, + [SMALL_STATE(2534)] = 77850, + [SMALL_STATE(2535)] = 77873, + [SMALL_STATE(2536)] = 77894, + [SMALL_STATE(2537)] = 77917, + [SMALL_STATE(2538)] = 77938, + [SMALL_STATE(2539)] = 77961, + [SMALL_STATE(2540)] = 77984, + [SMALL_STATE(2541)] = 78007, + [SMALL_STATE(2542)] = 78030, + [SMALL_STATE(2543)] = 78053, + [SMALL_STATE(2544)] = 78076, + [SMALL_STATE(2545)] = 78099, + [SMALL_STATE(2546)] = 78122, + [SMALL_STATE(2547)] = 78139, + [SMALL_STATE(2548)] = 78162, + [SMALL_STATE(2549)] = 78185, + [SMALL_STATE(2550)] = 78204, + [SMALL_STATE(2551)] = 78223, [SMALL_STATE(2552)] = 78242, - [SMALL_STATE(2553)] = 78265, - [SMALL_STATE(2554)] = 78284, - [SMALL_STATE(2555)] = 78301, - [SMALL_STATE(2556)] = 78324, - [SMALL_STATE(2557)] = 78347, - [SMALL_STATE(2558)] = 78370, - [SMALL_STATE(2559)] = 78389, - [SMALL_STATE(2560)] = 78412, - [SMALL_STATE(2561)] = 78431, - [SMALL_STATE(2562)] = 78454, - [SMALL_STATE(2563)] = 78477, - [SMALL_STATE(2564)] = 78500, - [SMALL_STATE(2565)] = 78523, - [SMALL_STATE(2566)] = 78540, - [SMALL_STATE(2567)] = 78563, - [SMALL_STATE(2568)] = 78586, - [SMALL_STATE(2569)] = 78609, - [SMALL_STATE(2570)] = 78626, - [SMALL_STATE(2571)] = 78647, - [SMALL_STATE(2572)] = 78670, - [SMALL_STATE(2573)] = 78693, - [SMALL_STATE(2574)] = 78710, - [SMALL_STATE(2575)] = 78731, - [SMALL_STATE(2576)] = 78754, - [SMALL_STATE(2577)] = 78777, - [SMALL_STATE(2578)] = 78800, - [SMALL_STATE(2579)] = 78823, - [SMALL_STATE(2580)] = 78842, - [SMALL_STATE(2581)] = 78865, - [SMALL_STATE(2582)] = 78888, - [SMALL_STATE(2583)] = 78911, - [SMALL_STATE(2584)] = 78932, - [SMALL_STATE(2585)] = 78955, - [SMALL_STATE(2586)] = 78978, - [SMALL_STATE(2587)] = 79001, - [SMALL_STATE(2588)] = 79024, - [SMALL_STATE(2589)] = 79047, - [SMALL_STATE(2590)] = 79070, - [SMALL_STATE(2591)] = 79093, - [SMALL_STATE(2592)] = 79116, - [SMALL_STATE(2593)] = 79137, - [SMALL_STATE(2594)] = 79160, - [SMALL_STATE(2595)] = 79179, - [SMALL_STATE(2596)] = 79200, - [SMALL_STATE(2597)] = 79223, - [SMALL_STATE(2598)] = 79242, - [SMALL_STATE(2599)] = 79265, - [SMALL_STATE(2600)] = 79288, - [SMALL_STATE(2601)] = 79311, - [SMALL_STATE(2602)] = 79332, - [SMALL_STATE(2603)] = 79355, - [SMALL_STATE(2604)] = 79378, - [SMALL_STATE(2605)] = 79401, - [SMALL_STATE(2606)] = 79424, - [SMALL_STATE(2607)] = 79447, - [SMALL_STATE(2608)] = 79470, - [SMALL_STATE(2609)] = 79493, - [SMALL_STATE(2610)] = 79516, - [SMALL_STATE(2611)] = 79539, - [SMALL_STATE(2612)] = 79560, - [SMALL_STATE(2613)] = 79581, - [SMALL_STATE(2614)] = 79604, - [SMALL_STATE(2615)] = 79627, - [SMALL_STATE(2616)] = 79650, - [SMALL_STATE(2617)] = 79673, - [SMALL_STATE(2618)] = 79696, - [SMALL_STATE(2619)] = 79719, - [SMALL_STATE(2620)] = 79742, - [SMALL_STATE(2621)] = 79765, - [SMALL_STATE(2622)] = 79786, - [SMALL_STATE(2623)] = 79809, - [SMALL_STATE(2624)] = 79832, - [SMALL_STATE(2625)] = 79853, - [SMALL_STATE(2626)] = 79876, - [SMALL_STATE(2627)] = 79899, - [SMALL_STATE(2628)] = 79922, - [SMALL_STATE(2629)] = 79941, - [SMALL_STATE(2630)] = 79964, - [SMALL_STATE(2631)] = 79987, - [SMALL_STATE(2632)] = 80010, - [SMALL_STATE(2633)] = 80033, - [SMALL_STATE(2634)] = 80056, - [SMALL_STATE(2635)] = 80079, - [SMALL_STATE(2636)] = 80098, - [SMALL_STATE(2637)] = 80121, - [SMALL_STATE(2638)] = 80144, - [SMALL_STATE(2639)] = 80167, - [SMALL_STATE(2640)] = 80190, - [SMALL_STATE(2641)] = 80213, - [SMALL_STATE(2642)] = 80236, - [SMALL_STATE(2643)] = 80259, - [SMALL_STATE(2644)] = 80278, - [SMALL_STATE(2645)] = 80301, - [SMALL_STATE(2646)] = 80320, - [SMALL_STATE(2647)] = 80341, - [SMALL_STATE(2648)] = 80364, - [SMALL_STATE(2649)] = 80385, - [SMALL_STATE(2650)] = 80404, - [SMALL_STATE(2651)] = 80423, - [SMALL_STATE(2652)] = 80446, - [SMALL_STATE(2653)] = 80469, - [SMALL_STATE(2654)] = 80490, - [SMALL_STATE(2655)] = 80511, - [SMALL_STATE(2656)] = 80532, - [SMALL_STATE(2657)] = 80555, - [SMALL_STATE(2658)] = 80578, - [SMALL_STATE(2659)] = 80601, - [SMALL_STATE(2660)] = 80624, - [SMALL_STATE(2661)] = 80643, - [SMALL_STATE(2662)] = 80666, - [SMALL_STATE(2663)] = 80689, - [SMALL_STATE(2664)] = 80708, - [SMALL_STATE(2665)] = 80729, - [SMALL_STATE(2666)] = 80748, - [SMALL_STATE(2667)] = 80771, - [SMALL_STATE(2668)] = 80794, - [SMALL_STATE(2669)] = 80817, - [SMALL_STATE(2670)] = 80840, - [SMALL_STATE(2671)] = 80863, - [SMALL_STATE(2672)] = 80886, - [SMALL_STATE(2673)] = 80909, - [SMALL_STATE(2674)] = 80928, - [SMALL_STATE(2675)] = 80951, - [SMALL_STATE(2676)] = 80968, - [SMALL_STATE(2677)] = 80989, - [SMALL_STATE(2678)] = 81010, - [SMALL_STATE(2679)] = 81033, - [SMALL_STATE(2680)] = 81056, - [SMALL_STATE(2681)] = 81075, - [SMALL_STATE(2682)] = 81098, - [SMALL_STATE(2683)] = 81121, - [SMALL_STATE(2684)] = 81144, - [SMALL_STATE(2685)] = 81167, - [SMALL_STATE(2686)] = 81190, - [SMALL_STATE(2687)] = 81211, - [SMALL_STATE(2688)] = 81230, - [SMALL_STATE(2689)] = 81251, - [SMALL_STATE(2690)] = 81274, - [SMALL_STATE(2691)] = 81297, - [SMALL_STATE(2692)] = 81318, - [SMALL_STATE(2693)] = 81341, - [SMALL_STATE(2694)] = 81364, - [SMALL_STATE(2695)] = 81385, - [SMALL_STATE(2696)] = 81406, - [SMALL_STATE(2697)] = 81429, - [SMALL_STATE(2698)] = 81452, - [SMALL_STATE(2699)] = 81471, - [SMALL_STATE(2700)] = 81494, - [SMALL_STATE(2701)] = 81517, - [SMALL_STATE(2702)] = 81540, - [SMALL_STATE(2703)] = 81563, - [SMALL_STATE(2704)] = 81586, - [SMALL_STATE(2705)] = 81609, - [SMALL_STATE(2706)] = 81632, - [SMALL_STATE(2707)] = 81655, - [SMALL_STATE(2708)] = 81678, - [SMALL_STATE(2709)] = 81701, - [SMALL_STATE(2710)] = 81724, - [SMALL_STATE(2711)] = 81747, - [SMALL_STATE(2712)] = 81770, - [SMALL_STATE(2713)] = 81793, - [SMALL_STATE(2714)] = 81816, - [SMALL_STATE(2715)] = 81839, - [SMALL_STATE(2716)] = 81862, - [SMALL_STATE(2717)] = 81879, - [SMALL_STATE(2718)] = 81902, - [SMALL_STATE(2719)] = 81925, - [SMALL_STATE(2720)] = 81948, - [SMALL_STATE(2721)] = 81971, - [SMALL_STATE(2722)] = 81992, - [SMALL_STATE(2723)] = 82015, - [SMALL_STATE(2724)] = 82038, - [SMALL_STATE(2725)] = 82061, - [SMALL_STATE(2726)] = 82084, - [SMALL_STATE(2727)] = 82105, - [SMALL_STATE(2728)] = 82128, - [SMALL_STATE(2729)] = 82151, - [SMALL_STATE(2730)] = 82174, - [SMALL_STATE(2731)] = 82197, - [SMALL_STATE(2732)] = 82217, - [SMALL_STATE(2733)] = 82237, - [SMALL_STATE(2734)] = 82253, - [SMALL_STATE(2735)] = 82271, - [SMALL_STATE(2736)] = 82291, - [SMALL_STATE(2737)] = 82307, - [SMALL_STATE(2738)] = 82323, - [SMALL_STATE(2739)] = 82343, - [SMALL_STATE(2740)] = 82359, - [SMALL_STATE(2741)] = 82375, - [SMALL_STATE(2742)] = 82395, - [SMALL_STATE(2743)] = 82411, - [SMALL_STATE(2744)] = 82431, - [SMALL_STATE(2745)] = 82451, - [SMALL_STATE(2746)] = 82471, - [SMALL_STATE(2747)] = 82491, - [SMALL_STATE(2748)] = 82507, - [SMALL_STATE(2749)] = 82527, - [SMALL_STATE(2750)] = 82543, - [SMALL_STATE(2751)] = 82563, - [SMALL_STATE(2752)] = 82583, - [SMALL_STATE(2753)] = 82603, - [SMALL_STATE(2754)] = 82619, - [SMALL_STATE(2755)] = 82635, - [SMALL_STATE(2756)] = 82655, - [SMALL_STATE(2757)] = 82673, - [SMALL_STATE(2758)] = 82693, - [SMALL_STATE(2759)] = 82709, - [SMALL_STATE(2760)] = 82725, - [SMALL_STATE(2761)] = 82741, - [SMALL_STATE(2762)] = 82757, - [SMALL_STATE(2763)] = 82773, - [SMALL_STATE(2764)] = 82789, - [SMALL_STATE(2765)] = 82807, - [SMALL_STATE(2766)] = 82823, - [SMALL_STATE(2767)] = 82839, - [SMALL_STATE(2768)] = 82859, - [SMALL_STATE(2769)] = 82879, - [SMALL_STATE(2770)] = 82899, - [SMALL_STATE(2771)] = 82919, - [SMALL_STATE(2772)] = 82939, - [SMALL_STATE(2773)] = 82959, - [SMALL_STATE(2774)] = 82979, - [SMALL_STATE(2775)] = 82995, - [SMALL_STATE(2776)] = 83011, - [SMALL_STATE(2777)] = 83029, - [SMALL_STATE(2778)] = 83045, - [SMALL_STATE(2779)] = 83063, - [SMALL_STATE(2780)] = 83079, - [SMALL_STATE(2781)] = 83099, - [SMALL_STATE(2782)] = 83115, - [SMALL_STATE(2783)] = 83135, - [SMALL_STATE(2784)] = 83151, - [SMALL_STATE(2785)] = 83171, - [SMALL_STATE(2786)] = 83187, - [SMALL_STATE(2787)] = 83207, - [SMALL_STATE(2788)] = 83227, - [SMALL_STATE(2789)] = 83247, - [SMALL_STATE(2790)] = 83263, - [SMALL_STATE(2791)] = 83283, - [SMALL_STATE(2792)] = 83303, - [SMALL_STATE(2793)] = 83319, - [SMALL_STATE(2794)] = 83335, - [SMALL_STATE(2795)] = 83355, - [SMALL_STATE(2796)] = 83371, - [SMALL_STATE(2797)] = 83387, - [SMALL_STATE(2798)] = 83407, - [SMALL_STATE(2799)] = 83423, - [SMALL_STATE(2800)] = 83439, - [SMALL_STATE(2801)] = 83459, - [SMALL_STATE(2802)] = 83477, - [SMALL_STATE(2803)] = 83493, - [SMALL_STATE(2804)] = 83513, - [SMALL_STATE(2805)] = 83529, - [SMALL_STATE(2806)] = 83549, - [SMALL_STATE(2807)] = 83565, - [SMALL_STATE(2808)] = 83585, - [SMALL_STATE(2809)] = 83601, - [SMALL_STATE(2810)] = 83621, - [SMALL_STATE(2811)] = 83641, - [SMALL_STATE(2812)] = 83657, - [SMALL_STATE(2813)] = 83677, - [SMALL_STATE(2814)] = 83697, - [SMALL_STATE(2815)] = 83717, - [SMALL_STATE(2816)] = 83737, - [SMALL_STATE(2817)] = 83757, - [SMALL_STATE(2818)] = 83777, - [SMALL_STATE(2819)] = 83797, - [SMALL_STATE(2820)] = 83815, - [SMALL_STATE(2821)] = 83833, - [SMALL_STATE(2822)] = 83849, - [SMALL_STATE(2823)] = 83869, - [SMALL_STATE(2824)] = 83889, - [SMALL_STATE(2825)] = 83909, - [SMALL_STATE(2826)] = 83929, - [SMALL_STATE(2827)] = 83949, - [SMALL_STATE(2828)] = 83969, - [SMALL_STATE(2829)] = 83989, - [SMALL_STATE(2830)] = 84007, - [SMALL_STATE(2831)] = 84025, - [SMALL_STATE(2832)] = 84043, - [SMALL_STATE(2833)] = 84063, - [SMALL_STATE(2834)] = 84083, - [SMALL_STATE(2835)] = 84101, - [SMALL_STATE(2836)] = 84121, - [SMALL_STATE(2837)] = 84141, - [SMALL_STATE(2838)] = 84161, - [SMALL_STATE(2839)] = 84181, - [SMALL_STATE(2840)] = 84197, - [SMALL_STATE(2841)] = 84217, - [SMALL_STATE(2842)] = 84237, - [SMALL_STATE(2843)] = 84255, - [SMALL_STATE(2844)] = 84273, - [SMALL_STATE(2845)] = 84289, - [SMALL_STATE(2846)] = 84309, - [SMALL_STATE(2847)] = 84325, - [SMALL_STATE(2848)] = 84345, - [SMALL_STATE(2849)] = 84361, - [SMALL_STATE(2850)] = 84379, - [SMALL_STATE(2851)] = 84397, - [SMALL_STATE(2852)] = 84415, - [SMALL_STATE(2853)] = 84435, - [SMALL_STATE(2854)] = 84455, - [SMALL_STATE(2855)] = 84473, - [SMALL_STATE(2856)] = 84493, - [SMALL_STATE(2857)] = 84509, - [SMALL_STATE(2858)] = 84529, - [SMALL_STATE(2859)] = 84549, - [SMALL_STATE(2860)] = 84569, - [SMALL_STATE(2861)] = 84589, - [SMALL_STATE(2862)] = 84609, - [SMALL_STATE(2863)] = 84629, - [SMALL_STATE(2864)] = 84649, - [SMALL_STATE(2865)] = 84667, - [SMALL_STATE(2866)] = 84687, - [SMALL_STATE(2867)] = 84707, - [SMALL_STATE(2868)] = 84727, - [SMALL_STATE(2869)] = 84747, - [SMALL_STATE(2870)] = 84765, - [SMALL_STATE(2871)] = 84785, - [SMALL_STATE(2872)] = 84805, - [SMALL_STATE(2873)] = 84825, - [SMALL_STATE(2874)] = 84843, - [SMALL_STATE(2875)] = 84861, - [SMALL_STATE(2876)] = 84879, - [SMALL_STATE(2877)] = 84899, - [SMALL_STATE(2878)] = 84915, - [SMALL_STATE(2879)] = 84935, - [SMALL_STATE(2880)] = 84953, - [SMALL_STATE(2881)] = 84971, - [SMALL_STATE(2882)] = 84991, - [SMALL_STATE(2883)] = 85009, - [SMALL_STATE(2884)] = 85027, - [SMALL_STATE(2885)] = 85045, - [SMALL_STATE(2886)] = 85065, - [SMALL_STATE(2887)] = 85085, - [SMALL_STATE(2888)] = 85103, - [SMALL_STATE(2889)] = 85123, - [SMALL_STATE(2890)] = 85143, - [SMALL_STATE(2891)] = 85163, - [SMALL_STATE(2892)] = 85181, - [SMALL_STATE(2893)] = 85201, - [SMALL_STATE(2894)] = 85221, - [SMALL_STATE(2895)] = 85241, - [SMALL_STATE(2896)] = 85261, - [SMALL_STATE(2897)] = 85281, - [SMALL_STATE(2898)] = 85301, - [SMALL_STATE(2899)] = 85321, - [SMALL_STATE(2900)] = 85341, - [SMALL_STATE(2901)] = 85361, - [SMALL_STATE(2902)] = 85381, - [SMALL_STATE(2903)] = 85401, - [SMALL_STATE(2904)] = 85421, - [SMALL_STATE(2905)] = 85441, - [SMALL_STATE(2906)] = 85461, - [SMALL_STATE(2907)] = 85481, - [SMALL_STATE(2908)] = 85501, - [SMALL_STATE(2909)] = 85521, - [SMALL_STATE(2910)] = 85541, - [SMALL_STATE(2911)] = 85559, - [SMALL_STATE(2912)] = 85579, - [SMALL_STATE(2913)] = 85597, - [SMALL_STATE(2914)] = 85613, - [SMALL_STATE(2915)] = 85633, - [SMALL_STATE(2916)] = 85653, - [SMALL_STATE(2917)] = 85673, - [SMALL_STATE(2918)] = 85691, - [SMALL_STATE(2919)] = 85711, - [SMALL_STATE(2920)] = 85731, - [SMALL_STATE(2921)] = 85751, - [SMALL_STATE(2922)] = 85771, - [SMALL_STATE(2923)] = 85791, - [SMALL_STATE(2924)] = 85811, - [SMALL_STATE(2925)] = 85831, - [SMALL_STATE(2926)] = 85851, - [SMALL_STATE(2927)] = 85871, - [SMALL_STATE(2928)] = 85891, - [SMALL_STATE(2929)] = 85911, - [SMALL_STATE(2930)] = 85931, - [SMALL_STATE(2931)] = 85951, - [SMALL_STATE(2932)] = 85971, - [SMALL_STATE(2933)] = 85991, - [SMALL_STATE(2934)] = 86011, - [SMALL_STATE(2935)] = 86031, - [SMALL_STATE(2936)] = 86051, - [SMALL_STATE(2937)] = 86071, - [SMALL_STATE(2938)] = 86091, - [SMALL_STATE(2939)] = 86111, - [SMALL_STATE(2940)] = 86131, - [SMALL_STATE(2941)] = 86151, - [SMALL_STATE(2942)] = 86167, - [SMALL_STATE(2943)] = 86187, - [SMALL_STATE(2944)] = 86207, - [SMALL_STATE(2945)] = 86227, - [SMALL_STATE(2946)] = 86247, - [SMALL_STATE(2947)] = 86267, - [SMALL_STATE(2948)] = 86287, - [SMALL_STATE(2949)] = 86305, - [SMALL_STATE(2950)] = 86323, - [SMALL_STATE(2951)] = 86343, - [SMALL_STATE(2952)] = 86359, - [SMALL_STATE(2953)] = 86379, - [SMALL_STATE(2954)] = 86399, - [SMALL_STATE(2955)] = 86419, - [SMALL_STATE(2956)] = 86439, - [SMALL_STATE(2957)] = 86459, - [SMALL_STATE(2958)] = 86475, - [SMALL_STATE(2959)] = 86495, - [SMALL_STATE(2960)] = 86513, - [SMALL_STATE(2961)] = 86531, - [SMALL_STATE(2962)] = 86551, - [SMALL_STATE(2963)] = 86571, - [SMALL_STATE(2964)] = 86591, - [SMALL_STATE(2965)] = 86611, - [SMALL_STATE(2966)] = 86629, - [SMALL_STATE(2967)] = 86649, - [SMALL_STATE(2968)] = 86669, - [SMALL_STATE(2969)] = 86689, - [SMALL_STATE(2970)] = 86709, - [SMALL_STATE(2971)] = 86729, - [SMALL_STATE(2972)] = 86749, - [SMALL_STATE(2973)] = 86769, - [SMALL_STATE(2974)] = 86789, - [SMALL_STATE(2975)] = 86809, - [SMALL_STATE(2976)] = 86829, - [SMALL_STATE(2977)] = 86849, - [SMALL_STATE(2978)] = 86869, + [SMALL_STATE(2553)] = 78259, + [SMALL_STATE(2554)] = 78282, + [SMALL_STATE(2555)] = 78305, + [SMALL_STATE(2556)] = 78328, + [SMALL_STATE(2557)] = 78351, + [SMALL_STATE(2558)] = 78374, + [SMALL_STATE(2559)] = 78397, + [SMALL_STATE(2560)] = 78420, + [SMALL_STATE(2561)] = 78443, + [SMALL_STATE(2562)] = 78466, + [SMALL_STATE(2563)] = 78489, + [SMALL_STATE(2564)] = 78510, + [SMALL_STATE(2565)] = 78531, + [SMALL_STATE(2566)] = 78550, + [SMALL_STATE(2567)] = 78573, + [SMALL_STATE(2568)] = 78596, + [SMALL_STATE(2569)] = 78619, + [SMALL_STATE(2570)] = 78638, + [SMALL_STATE(2571)] = 78661, + [SMALL_STATE(2572)] = 78684, + [SMALL_STATE(2573)] = 78707, + [SMALL_STATE(2574)] = 78730, + [SMALL_STATE(2575)] = 78753, + [SMALL_STATE(2576)] = 78774, + [SMALL_STATE(2577)] = 78797, + [SMALL_STATE(2578)] = 78820, + [SMALL_STATE(2579)] = 78843, + [SMALL_STATE(2580)] = 78866, + [SMALL_STATE(2581)] = 78889, + [SMALL_STATE(2582)] = 78908, + [SMALL_STATE(2583)] = 78931, + [SMALL_STATE(2584)] = 78954, + [SMALL_STATE(2585)] = 78975, + [SMALL_STATE(2586)] = 78998, + [SMALL_STATE(2587)] = 79021, + [SMALL_STATE(2588)] = 79040, + [SMALL_STATE(2589)] = 79061, + [SMALL_STATE(2590)] = 79080, + [SMALL_STATE(2591)] = 79103, + [SMALL_STATE(2592)] = 79126, + [SMALL_STATE(2593)] = 79149, + [SMALL_STATE(2594)] = 79172, + [SMALL_STATE(2595)] = 79195, + [SMALL_STATE(2596)] = 79216, + [SMALL_STATE(2597)] = 79239, + [SMALL_STATE(2598)] = 79262, + [SMALL_STATE(2599)] = 79285, + [SMALL_STATE(2600)] = 79308, + [SMALL_STATE(2601)] = 79331, + [SMALL_STATE(2602)] = 79354, + [SMALL_STATE(2603)] = 79377, + [SMALL_STATE(2604)] = 79400, + [SMALL_STATE(2605)] = 79417, + [SMALL_STATE(2606)] = 79438, + [SMALL_STATE(2607)] = 79455, + [SMALL_STATE(2608)] = 79478, + [SMALL_STATE(2609)] = 79501, + [SMALL_STATE(2610)] = 79524, + [SMALL_STATE(2611)] = 79547, + [SMALL_STATE(2612)] = 79570, + [SMALL_STATE(2613)] = 79593, + [SMALL_STATE(2614)] = 79616, + [SMALL_STATE(2615)] = 79639, + [SMALL_STATE(2616)] = 79662, + [SMALL_STATE(2617)] = 79685, + [SMALL_STATE(2618)] = 79706, + [SMALL_STATE(2619)] = 79729, + [SMALL_STATE(2620)] = 79752, + [SMALL_STATE(2621)] = 79775, + [SMALL_STATE(2622)] = 79798, + [SMALL_STATE(2623)] = 79817, + [SMALL_STATE(2624)] = 79838, + [SMALL_STATE(2625)] = 79861, + [SMALL_STATE(2626)] = 79884, + [SMALL_STATE(2627)] = 79907, + [SMALL_STATE(2628)] = 79930, + [SMALL_STATE(2629)] = 79953, + [SMALL_STATE(2630)] = 79976, + [SMALL_STATE(2631)] = 79997, + [SMALL_STATE(2632)] = 80020, + [SMALL_STATE(2633)] = 80041, + [SMALL_STATE(2634)] = 80064, + [SMALL_STATE(2635)] = 80085, + [SMALL_STATE(2636)] = 80108, + [SMALL_STATE(2637)] = 80131, + [SMALL_STATE(2638)] = 80154, + [SMALL_STATE(2639)] = 80177, + [SMALL_STATE(2640)] = 80200, + [SMALL_STATE(2641)] = 80223, + [SMALL_STATE(2642)] = 80244, + [SMALL_STATE(2643)] = 80265, + [SMALL_STATE(2644)] = 80288, + [SMALL_STATE(2645)] = 80311, + [SMALL_STATE(2646)] = 80334, + [SMALL_STATE(2647)] = 80357, + [SMALL_STATE(2648)] = 80380, + [SMALL_STATE(2649)] = 80403, + [SMALL_STATE(2650)] = 80426, + [SMALL_STATE(2651)] = 80449, + [SMALL_STATE(2652)] = 80472, + [SMALL_STATE(2653)] = 80495, + [SMALL_STATE(2654)] = 80518, + [SMALL_STATE(2655)] = 80541, + [SMALL_STATE(2656)] = 80564, + [SMALL_STATE(2657)] = 80587, + [SMALL_STATE(2658)] = 80610, + [SMALL_STATE(2659)] = 80633, + [SMALL_STATE(2660)] = 80656, + [SMALL_STATE(2661)] = 80679, + [SMALL_STATE(2662)] = 80698, + [SMALL_STATE(2663)] = 80715, + [SMALL_STATE(2664)] = 80736, + [SMALL_STATE(2665)] = 80755, + [SMALL_STATE(2666)] = 80778, + [SMALL_STATE(2667)] = 80797, + [SMALL_STATE(2668)] = 80816, + [SMALL_STATE(2669)] = 80839, + [SMALL_STATE(2670)] = 80862, + [SMALL_STATE(2671)] = 80881, + [SMALL_STATE(2672)] = 80904, + [SMALL_STATE(2673)] = 80927, + [SMALL_STATE(2674)] = 80950, + [SMALL_STATE(2675)] = 80973, + [SMALL_STATE(2676)] = 80996, + [SMALL_STATE(2677)] = 81019, + [SMALL_STATE(2678)] = 81042, + [SMALL_STATE(2679)] = 81065, + [SMALL_STATE(2680)] = 81084, + [SMALL_STATE(2681)] = 81103, + [SMALL_STATE(2682)] = 81120, + [SMALL_STATE(2683)] = 81139, + [SMALL_STATE(2684)] = 81162, + [SMALL_STATE(2685)] = 81185, + [SMALL_STATE(2686)] = 81208, + [SMALL_STATE(2687)] = 81231, + [SMALL_STATE(2688)] = 81254, + [SMALL_STATE(2689)] = 81275, + [SMALL_STATE(2690)] = 81298, + [SMALL_STATE(2691)] = 81321, + [SMALL_STATE(2692)] = 81340, + [SMALL_STATE(2693)] = 81357, + [SMALL_STATE(2694)] = 81380, + [SMALL_STATE(2695)] = 81403, + [SMALL_STATE(2696)] = 81426, + [SMALL_STATE(2697)] = 81445, + [SMALL_STATE(2698)] = 81468, + [SMALL_STATE(2699)] = 81491, + [SMALL_STATE(2700)] = 81514, + [SMALL_STATE(2701)] = 81537, + [SMALL_STATE(2702)] = 81560, + [SMALL_STATE(2703)] = 81583, + [SMALL_STATE(2704)] = 81606, + [SMALL_STATE(2705)] = 81629, + [SMALL_STATE(2706)] = 81652, + [SMALL_STATE(2707)] = 81675, + [SMALL_STATE(2708)] = 81696, + [SMALL_STATE(2709)] = 81717, + [SMALL_STATE(2710)] = 81740, + [SMALL_STATE(2711)] = 81763, + [SMALL_STATE(2712)] = 81784, + [SMALL_STATE(2713)] = 81807, + [SMALL_STATE(2714)] = 81828, + [SMALL_STATE(2715)] = 81851, + [SMALL_STATE(2716)] = 81874, + [SMALL_STATE(2717)] = 81893, + [SMALL_STATE(2718)] = 81916, + [SMALL_STATE(2719)] = 81935, + [SMALL_STATE(2720)] = 81958, + [SMALL_STATE(2721)] = 81981, + [SMALL_STATE(2722)] = 82004, + [SMALL_STATE(2723)] = 82027, + [SMALL_STATE(2724)] = 82046, + [SMALL_STATE(2725)] = 82069, + [SMALL_STATE(2726)] = 82092, + [SMALL_STATE(2727)] = 82111, + [SMALL_STATE(2728)] = 82134, + [SMALL_STATE(2729)] = 82157, + [SMALL_STATE(2730)] = 82180, + [SMALL_STATE(2731)] = 82203, + [SMALL_STATE(2732)] = 82219, + [SMALL_STATE(2733)] = 82239, + [SMALL_STATE(2734)] = 82259, + [SMALL_STATE(2735)] = 82279, + [SMALL_STATE(2736)] = 82299, + [SMALL_STATE(2737)] = 82319, + [SMALL_STATE(2738)] = 82339, + [SMALL_STATE(2739)] = 82359, + [SMALL_STATE(2740)] = 82379, + [SMALL_STATE(2741)] = 82395, + [SMALL_STATE(2742)] = 82415, + [SMALL_STATE(2743)] = 82435, + [SMALL_STATE(2744)] = 82455, + [SMALL_STATE(2745)] = 82475, + [SMALL_STATE(2746)] = 82495, + [SMALL_STATE(2747)] = 82511, + [SMALL_STATE(2748)] = 82531, + [SMALL_STATE(2749)] = 82549, + [SMALL_STATE(2750)] = 82567, + [SMALL_STATE(2751)] = 82585, + [SMALL_STATE(2752)] = 82605, + [SMALL_STATE(2753)] = 82625, + [SMALL_STATE(2754)] = 82645, + [SMALL_STATE(2755)] = 82663, + [SMALL_STATE(2756)] = 82683, + [SMALL_STATE(2757)] = 82699, + [SMALL_STATE(2758)] = 82719, + [SMALL_STATE(2759)] = 82739, + [SMALL_STATE(2760)] = 82755, + [SMALL_STATE(2761)] = 82773, + [SMALL_STATE(2762)] = 82789, + [SMALL_STATE(2763)] = 82809, + [SMALL_STATE(2764)] = 82827, + [SMALL_STATE(2765)] = 82847, + [SMALL_STATE(2766)] = 82865, + [SMALL_STATE(2767)] = 82881, + [SMALL_STATE(2768)] = 82901, + [SMALL_STATE(2769)] = 82919, + [SMALL_STATE(2770)] = 82937, + [SMALL_STATE(2771)] = 82957, + [SMALL_STATE(2772)] = 82977, + [SMALL_STATE(2773)] = 82997, + [SMALL_STATE(2774)] = 83017, + [SMALL_STATE(2775)] = 83037, + [SMALL_STATE(2776)] = 83057, + [SMALL_STATE(2777)] = 83073, + [SMALL_STATE(2778)] = 83093, + [SMALL_STATE(2779)] = 83113, + [SMALL_STATE(2780)] = 83129, + [SMALL_STATE(2781)] = 83149, + [SMALL_STATE(2782)] = 83169, + [SMALL_STATE(2783)] = 83189, + [SMALL_STATE(2784)] = 83209, + [SMALL_STATE(2785)] = 83229, + [SMALL_STATE(2786)] = 83245, + [SMALL_STATE(2787)] = 83265, + [SMALL_STATE(2788)] = 83285, + [SMALL_STATE(2789)] = 83305, + [SMALL_STATE(2790)] = 83325, + [SMALL_STATE(2791)] = 83345, + [SMALL_STATE(2792)] = 83365, + [SMALL_STATE(2793)] = 83385, + [SMALL_STATE(2794)] = 83405, + [SMALL_STATE(2795)] = 83421, + [SMALL_STATE(2796)] = 83441, + [SMALL_STATE(2797)] = 83459, + [SMALL_STATE(2798)] = 83475, + [SMALL_STATE(2799)] = 83495, + [SMALL_STATE(2800)] = 83513, + [SMALL_STATE(2801)] = 83529, + [SMALL_STATE(2802)] = 83549, + [SMALL_STATE(2803)] = 83565, + [SMALL_STATE(2804)] = 83581, + [SMALL_STATE(2805)] = 83599, + [SMALL_STATE(2806)] = 83619, + [SMALL_STATE(2807)] = 83639, + [SMALL_STATE(2808)] = 83657, + [SMALL_STATE(2809)] = 83677, + [SMALL_STATE(2810)] = 83697, + [SMALL_STATE(2811)] = 83717, + [SMALL_STATE(2812)] = 83737, + [SMALL_STATE(2813)] = 83757, + [SMALL_STATE(2814)] = 83777, + [SMALL_STATE(2815)] = 83797, + [SMALL_STATE(2816)] = 83817, + [SMALL_STATE(2817)] = 83837, + [SMALL_STATE(2818)] = 83857, + [SMALL_STATE(2819)] = 83877, + [SMALL_STATE(2820)] = 83897, + [SMALL_STATE(2821)] = 83913, + [SMALL_STATE(2822)] = 83933, + [SMALL_STATE(2823)] = 83953, + [SMALL_STATE(2824)] = 83971, + [SMALL_STATE(2825)] = 83991, + [SMALL_STATE(2826)] = 84011, + [SMALL_STATE(2827)] = 84031, + [SMALL_STATE(2828)] = 84049, + [SMALL_STATE(2829)] = 84069, + [SMALL_STATE(2830)] = 84089, + [SMALL_STATE(2831)] = 84109, + [SMALL_STATE(2832)] = 84127, + [SMALL_STATE(2833)] = 84147, + [SMALL_STATE(2834)] = 84167, + [SMALL_STATE(2835)] = 84187, + [SMALL_STATE(2836)] = 84207, + [SMALL_STATE(2837)] = 84227, + [SMALL_STATE(2838)] = 84245, + [SMALL_STATE(2839)] = 84265, + [SMALL_STATE(2840)] = 84285, + [SMALL_STATE(2841)] = 84305, + [SMALL_STATE(2842)] = 84321, + [SMALL_STATE(2843)] = 84337, + [SMALL_STATE(2844)] = 84353, + [SMALL_STATE(2845)] = 84371, + [SMALL_STATE(2846)] = 84387, + [SMALL_STATE(2847)] = 84407, + [SMALL_STATE(2848)] = 84425, + [SMALL_STATE(2849)] = 84441, + [SMALL_STATE(2850)] = 84461, + [SMALL_STATE(2851)] = 84481, + [SMALL_STATE(2852)] = 84501, + [SMALL_STATE(2853)] = 84521, + [SMALL_STATE(2854)] = 84541, + [SMALL_STATE(2855)] = 84561, + [SMALL_STATE(2856)] = 84581, + [SMALL_STATE(2857)] = 84601, + [SMALL_STATE(2858)] = 84621, + [SMALL_STATE(2859)] = 84637, + [SMALL_STATE(2860)] = 84657, + [SMALL_STATE(2861)] = 84675, + [SMALL_STATE(2862)] = 84691, + [SMALL_STATE(2863)] = 84711, + [SMALL_STATE(2864)] = 84729, + [SMALL_STATE(2865)] = 84749, + [SMALL_STATE(2866)] = 84769, + [SMALL_STATE(2867)] = 84789, + [SMALL_STATE(2868)] = 84809, + [SMALL_STATE(2869)] = 84827, + [SMALL_STATE(2870)] = 84847, + [SMALL_STATE(2871)] = 84867, + [SMALL_STATE(2872)] = 84883, + [SMALL_STATE(2873)] = 84903, + [SMALL_STATE(2874)] = 84923, + [SMALL_STATE(2875)] = 84941, + [SMALL_STATE(2876)] = 84961, + [SMALL_STATE(2877)] = 84981, + [SMALL_STATE(2878)] = 84997, + [SMALL_STATE(2879)] = 85013, + [SMALL_STATE(2880)] = 85033, + [SMALL_STATE(2881)] = 85051, + [SMALL_STATE(2882)] = 85071, + [SMALL_STATE(2883)] = 85087, + [SMALL_STATE(2884)] = 85107, + [SMALL_STATE(2885)] = 85127, + [SMALL_STATE(2886)] = 85147, + [SMALL_STATE(2887)] = 85167, + [SMALL_STATE(2888)] = 85185, + [SMALL_STATE(2889)] = 85201, + [SMALL_STATE(2890)] = 85217, + [SMALL_STATE(2891)] = 85237, + [SMALL_STATE(2892)] = 85257, + [SMALL_STATE(2893)] = 85277, + [SMALL_STATE(2894)] = 85297, + [SMALL_STATE(2895)] = 85313, + [SMALL_STATE(2896)] = 85329, + [SMALL_STATE(2897)] = 85347, + [SMALL_STATE(2898)] = 85363, + [SMALL_STATE(2899)] = 85383, + [SMALL_STATE(2900)] = 85399, + [SMALL_STATE(2901)] = 85419, + [SMALL_STATE(2902)] = 85439, + [SMALL_STATE(2903)] = 85459, + [SMALL_STATE(2904)] = 85479, + [SMALL_STATE(2905)] = 85499, + [SMALL_STATE(2906)] = 85519, + [SMALL_STATE(2907)] = 85539, + [SMALL_STATE(2908)] = 85559, + [SMALL_STATE(2909)] = 85579, + [SMALL_STATE(2910)] = 85599, + [SMALL_STATE(2911)] = 85619, + [SMALL_STATE(2912)] = 85639, + [SMALL_STATE(2913)] = 85655, + [SMALL_STATE(2914)] = 85673, + [SMALL_STATE(2915)] = 85693, + [SMALL_STATE(2916)] = 85711, + [SMALL_STATE(2917)] = 85731, + [SMALL_STATE(2918)] = 85751, + [SMALL_STATE(2919)] = 85771, + [SMALL_STATE(2920)] = 85791, + [SMALL_STATE(2921)] = 85809, + [SMALL_STATE(2922)] = 85829, + [SMALL_STATE(2923)] = 85847, + [SMALL_STATE(2924)] = 85863, + [SMALL_STATE(2925)] = 85881, + [SMALL_STATE(2926)] = 85901, + [SMALL_STATE(2927)] = 85917, + [SMALL_STATE(2928)] = 85935, + [SMALL_STATE(2929)] = 85953, + [SMALL_STATE(2930)] = 85973, + [SMALL_STATE(2931)] = 85991, + [SMALL_STATE(2932)] = 86009, + [SMALL_STATE(2933)] = 86029, + [SMALL_STATE(2934)] = 86049, + [SMALL_STATE(2935)] = 86069, + [SMALL_STATE(2936)] = 86089, + [SMALL_STATE(2937)] = 86109, + [SMALL_STATE(2938)] = 86129, + [SMALL_STATE(2939)] = 86147, + [SMALL_STATE(2940)] = 86167, + [SMALL_STATE(2941)] = 86183, + [SMALL_STATE(2942)] = 86203, + [SMALL_STATE(2943)] = 86223, + [SMALL_STATE(2944)] = 86243, + [SMALL_STATE(2945)] = 86263, + [SMALL_STATE(2946)] = 86281, + [SMALL_STATE(2947)] = 86301, + [SMALL_STATE(2948)] = 86321, + [SMALL_STATE(2949)] = 86339, + [SMALL_STATE(2950)] = 86355, + [SMALL_STATE(2951)] = 86375, + [SMALL_STATE(2952)] = 86395, + [SMALL_STATE(2953)] = 86415, + [SMALL_STATE(2954)] = 86431, + [SMALL_STATE(2955)] = 86447, + [SMALL_STATE(2956)] = 86467, + [SMALL_STATE(2957)] = 86487, + [SMALL_STATE(2958)] = 86507, + [SMALL_STATE(2959)] = 86523, + [SMALL_STATE(2960)] = 86543, + [SMALL_STATE(2961)] = 86563, + [SMALL_STATE(2962)] = 86583, + [SMALL_STATE(2963)] = 86599, + [SMALL_STATE(2964)] = 86619, + [SMALL_STATE(2965)] = 86635, + [SMALL_STATE(2966)] = 86653, + [SMALL_STATE(2967)] = 86669, + [SMALL_STATE(2968)] = 86689, + [SMALL_STATE(2969)] = 86709, + [SMALL_STATE(2970)] = 86729, + [SMALL_STATE(2971)] = 86749, + [SMALL_STATE(2972)] = 86765, + [SMALL_STATE(2973)] = 86785, + [SMALL_STATE(2974)] = 86801, + [SMALL_STATE(2975)] = 86817, + [SMALL_STATE(2976)] = 86837, + [SMALL_STATE(2977)] = 86857, + [SMALL_STATE(2978)] = 86873, [SMALL_STATE(2979)] = 86889, [SMALL_STATE(2980)] = 86909, [SMALL_STATE(2981)] = 86929, - [SMALL_STATE(2982)] = 86947, - [SMALL_STATE(2983)] = 86965, + [SMALL_STATE(2982)] = 86949, + [SMALL_STATE(2983)] = 86969, [SMALL_STATE(2984)] = 86985, [SMALL_STATE(2985)] = 87005, [SMALL_STATE(2986)] = 87025, [SMALL_STATE(2987)] = 87045, - [SMALL_STATE(2988)] = 87065, - [SMALL_STATE(2989)] = 87083, - [SMALL_STATE(2990)] = 87103, - [SMALL_STATE(2991)] = 87123, - [SMALL_STATE(2992)] = 87143, - [SMALL_STATE(2993)] = 87163, - [SMALL_STATE(2994)] = 87183, - [SMALL_STATE(2995)] = 87203, - [SMALL_STATE(2996)] = 87223, - [SMALL_STATE(2997)] = 87241, - [SMALL_STATE(2998)] = 87261, - [SMALL_STATE(2999)] = 87279, - [SMALL_STATE(3000)] = 87299, - [SMALL_STATE(3001)] = 87319, - [SMALL_STATE(3002)] = 87339, - [SMALL_STATE(3003)] = 87359, - [SMALL_STATE(3004)] = 87379, - [SMALL_STATE(3005)] = 87399, - [SMALL_STATE(3006)] = 87419, - [SMALL_STATE(3007)] = 87439, - [SMALL_STATE(3008)] = 87459, - [SMALL_STATE(3009)] = 87477, - [SMALL_STATE(3010)] = 87497, - [SMALL_STATE(3011)] = 87513, - [SMALL_STATE(3012)] = 87529, - [SMALL_STATE(3013)] = 87549, - [SMALL_STATE(3014)] = 87569, - [SMALL_STATE(3015)] = 87589, - [SMALL_STATE(3016)] = 87605, - [SMALL_STATE(3017)] = 87621, - [SMALL_STATE(3018)] = 87641, - [SMALL_STATE(3019)] = 87657, - [SMALL_STATE(3020)] = 87677, - [SMALL_STATE(3021)] = 87697, + [SMALL_STATE(2988)] = 87063, + [SMALL_STATE(2989)] = 87079, + [SMALL_STATE(2990)] = 87099, + [SMALL_STATE(2991)] = 87115, + [SMALL_STATE(2992)] = 87135, + [SMALL_STATE(2993)] = 87155, + [SMALL_STATE(2994)] = 87175, + [SMALL_STATE(2995)] = 87195, + [SMALL_STATE(2996)] = 87211, + [SMALL_STATE(2997)] = 87231, + [SMALL_STATE(2998)] = 87251, + [SMALL_STATE(2999)] = 87267, + [SMALL_STATE(3000)] = 87287, + [SMALL_STATE(3001)] = 87303, + [SMALL_STATE(3002)] = 87323, + [SMALL_STATE(3003)] = 87343, + [SMALL_STATE(3004)] = 87363, + [SMALL_STATE(3005)] = 87383, + [SMALL_STATE(3006)] = 87403, + [SMALL_STATE(3007)] = 87421, + [SMALL_STATE(3008)] = 87441, + [SMALL_STATE(3009)] = 87459, + [SMALL_STATE(3010)] = 87479, + [SMALL_STATE(3011)] = 87499, + [SMALL_STATE(3012)] = 87519, + [SMALL_STATE(3013)] = 87539, + [SMALL_STATE(3014)] = 87559, + [SMALL_STATE(3015)] = 87577, + [SMALL_STATE(3016)] = 87597, + [SMALL_STATE(3017)] = 87613, + [SMALL_STATE(3018)] = 87633, + [SMALL_STATE(3019)] = 87653, + [SMALL_STATE(3020)] = 87673, + [SMALL_STATE(3021)] = 87693, [SMALL_STATE(3022)] = 87713, [SMALL_STATE(3023)] = 87733, - [SMALL_STATE(3024)] = 87749, - [SMALL_STATE(3025)] = 87769, - [SMALL_STATE(3026)] = 87789, - [SMALL_STATE(3027)] = 87809, - [SMALL_STATE(3028)] = 87829, - [SMALL_STATE(3029)] = 87845, - [SMALL_STATE(3030)] = 87861, - [SMALL_STATE(3031)] = 87881, - [SMALL_STATE(3032)] = 87901, - [SMALL_STATE(3033)] = 87921, - [SMALL_STATE(3034)] = 87938, - [SMALL_STATE(3035)] = 87955, - [SMALL_STATE(3036)] = 87972, - [SMALL_STATE(3037)] = 87989, - [SMALL_STATE(3038)] = 88006, - [SMALL_STATE(3039)] = 88023, + [SMALL_STATE(3024)] = 87753, + [SMALL_STATE(3025)] = 87773, + [SMALL_STATE(3026)] = 87793, + [SMALL_STATE(3027)] = 87811, + [SMALL_STATE(3028)] = 87831, + [SMALL_STATE(3029)] = 87851, + [SMALL_STATE(3030)] = 87871, + [SMALL_STATE(3031)] = 87891, + [SMALL_STATE(3032)] = 87911, + [SMALL_STATE(3033)] = 87927, + [SMALL_STATE(3034)] = 87942, + [SMALL_STATE(3035)] = 87959, + [SMALL_STATE(3036)] = 87976, + [SMALL_STATE(3037)] = 87991, + [SMALL_STATE(3038)] = 88008, + [SMALL_STATE(3039)] = 88025, [SMALL_STATE(3040)] = 88040, [SMALL_STATE(3041)] = 88057, - [SMALL_STATE(3042)] = 88074, + [SMALL_STATE(3042)] = 88072, [SMALL_STATE(3043)] = 88089, [SMALL_STATE(3044)] = 88106, [SMALL_STATE(3045)] = 88123, @@ -188339,248 +188384,248 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3047)] = 88157, [SMALL_STATE(3048)] = 88174, [SMALL_STATE(3049)] = 88191, - [SMALL_STATE(3050)] = 88208, - [SMALL_STATE(3051)] = 88225, - [SMALL_STATE(3052)] = 88242, - [SMALL_STATE(3053)] = 88259, - [SMALL_STATE(3054)] = 88276, - [SMALL_STATE(3055)] = 88293, - [SMALL_STATE(3056)] = 88310, - [SMALL_STATE(3057)] = 88327, - [SMALL_STATE(3058)] = 88344, - [SMALL_STATE(3059)] = 88361, - [SMALL_STATE(3060)] = 88378, - [SMALL_STATE(3061)] = 88393, - [SMALL_STATE(3062)] = 88410, - [SMALL_STATE(3063)] = 88427, - [SMALL_STATE(3064)] = 88444, - [SMALL_STATE(3065)] = 88461, - [SMALL_STATE(3066)] = 88478, - [SMALL_STATE(3067)] = 88495, - [SMALL_STATE(3068)] = 88512, - [SMALL_STATE(3069)] = 88529, - [SMALL_STATE(3070)] = 88546, - [SMALL_STATE(3071)] = 88561, - [SMALL_STATE(3072)] = 88578, - [SMALL_STATE(3073)] = 88595, - [SMALL_STATE(3074)] = 88612, - [SMALL_STATE(3075)] = 88629, - [SMALL_STATE(3076)] = 88646, - [SMALL_STATE(3077)] = 88663, - [SMALL_STATE(3078)] = 88680, - [SMALL_STATE(3079)] = 88697, - [SMALL_STATE(3080)] = 88712, - [SMALL_STATE(3081)] = 88729, - [SMALL_STATE(3082)] = 88746, - [SMALL_STATE(3083)] = 88763, - [SMALL_STATE(3084)] = 88780, - [SMALL_STATE(3085)] = 88797, - [SMALL_STATE(3086)] = 88812, - [SMALL_STATE(3087)] = 88829, - [SMALL_STATE(3088)] = 88846, - [SMALL_STATE(3089)] = 88861, - [SMALL_STATE(3090)] = 88878, - [SMALL_STATE(3091)] = 88895, - [SMALL_STATE(3092)] = 88912, - [SMALL_STATE(3093)] = 88929, - [SMALL_STATE(3094)] = 88944, - [SMALL_STATE(3095)] = 88961, - [SMALL_STATE(3096)] = 88978, - [SMALL_STATE(3097)] = 88993, - [SMALL_STATE(3098)] = 89010, - [SMALL_STATE(3099)] = 89025, - [SMALL_STATE(3100)] = 89042, - [SMALL_STATE(3101)] = 89059, - [SMALL_STATE(3102)] = 89076, - [SMALL_STATE(3103)] = 89093, - [SMALL_STATE(3104)] = 89110, - [SMALL_STATE(3105)] = 89127, - [SMALL_STATE(3106)] = 89142, - [SMALL_STATE(3107)] = 89157, - [SMALL_STATE(3108)] = 89172, - [SMALL_STATE(3109)] = 89189, - [SMALL_STATE(3110)] = 89206, - [SMALL_STATE(3111)] = 89223, - [SMALL_STATE(3112)] = 89240, - [SMALL_STATE(3113)] = 89257, - [SMALL_STATE(3114)] = 89274, - [SMALL_STATE(3115)] = 89291, - [SMALL_STATE(3116)] = 89306, - [SMALL_STATE(3117)] = 89323, - [SMALL_STATE(3118)] = 89340, + [SMALL_STATE(3050)] = 88206, + [SMALL_STATE(3051)] = 88223, + [SMALL_STATE(3052)] = 88240, + [SMALL_STATE(3053)] = 88257, + [SMALL_STATE(3054)] = 88274, + [SMALL_STATE(3055)] = 88291, + [SMALL_STATE(3056)] = 88306, + [SMALL_STATE(3057)] = 88323, + [SMALL_STATE(3058)] = 88340, + [SMALL_STATE(3059)] = 88357, + [SMALL_STATE(3060)] = 88374, + [SMALL_STATE(3061)] = 88391, + [SMALL_STATE(3062)] = 88408, + [SMALL_STATE(3063)] = 88425, + [SMALL_STATE(3064)] = 88440, + [SMALL_STATE(3065)] = 88457, + [SMALL_STATE(3066)] = 88472, + [SMALL_STATE(3067)] = 88489, + [SMALL_STATE(3068)] = 88506, + [SMALL_STATE(3069)] = 88523, + [SMALL_STATE(3070)] = 88540, + [SMALL_STATE(3071)] = 88557, + [SMALL_STATE(3072)] = 88574, + [SMALL_STATE(3073)] = 88591, + [SMALL_STATE(3074)] = 88606, + [SMALL_STATE(3075)] = 88623, + [SMALL_STATE(3076)] = 88640, + [SMALL_STATE(3077)] = 88655, + [SMALL_STATE(3078)] = 88670, + [SMALL_STATE(3079)] = 88685, + [SMALL_STATE(3080)] = 88702, + [SMALL_STATE(3081)] = 88719, + [SMALL_STATE(3082)] = 88736, + [SMALL_STATE(3083)] = 88751, + [SMALL_STATE(3084)] = 88768, + [SMALL_STATE(3085)] = 88783, + [SMALL_STATE(3086)] = 88800, + [SMALL_STATE(3087)] = 88817, + [SMALL_STATE(3088)] = 88834, + [SMALL_STATE(3089)] = 88849, + [SMALL_STATE(3090)] = 88864, + [SMALL_STATE(3091)] = 88881, + [SMALL_STATE(3092)] = 88898, + [SMALL_STATE(3093)] = 88915, + [SMALL_STATE(3094)] = 88932, + [SMALL_STATE(3095)] = 88949, + [SMALL_STATE(3096)] = 88966, + [SMALL_STATE(3097)] = 88983, + [SMALL_STATE(3098)] = 89000, + [SMALL_STATE(3099)] = 89017, + [SMALL_STATE(3100)] = 89034, + [SMALL_STATE(3101)] = 89051, + [SMALL_STATE(3102)] = 89068, + [SMALL_STATE(3103)] = 89085, + [SMALL_STATE(3104)] = 89102, + [SMALL_STATE(3105)] = 89119, + [SMALL_STATE(3106)] = 89136, + [SMALL_STATE(3107)] = 89153, + [SMALL_STATE(3108)] = 89170, + [SMALL_STATE(3109)] = 89187, + [SMALL_STATE(3110)] = 89202, + [SMALL_STATE(3111)] = 89219, + [SMALL_STATE(3112)] = 89236, + [SMALL_STATE(3113)] = 89253, + [SMALL_STATE(3114)] = 89270, + [SMALL_STATE(3115)] = 89287, + [SMALL_STATE(3116)] = 89304, + [SMALL_STATE(3117)] = 89321, + [SMALL_STATE(3118)] = 89338, [SMALL_STATE(3119)] = 89355, - [SMALL_STATE(3120)] = 89370, + [SMALL_STATE(3120)] = 89372, [SMALL_STATE(3121)] = 89387, - [SMALL_STATE(3122)] = 89402, - [SMALL_STATE(3123)] = 89419, - [SMALL_STATE(3124)] = 89436, - [SMALL_STATE(3125)] = 89453, - [SMALL_STATE(3126)] = 89468, - [SMALL_STATE(3127)] = 89483, - [SMALL_STATE(3128)] = 89498, - [SMALL_STATE(3129)] = 89515, - [SMALL_STATE(3130)] = 89532, - [SMALL_STATE(3131)] = 89549, - [SMALL_STATE(3132)] = 89566, - [SMALL_STATE(3133)] = 89583, - [SMALL_STATE(3134)] = 89600, - [SMALL_STATE(3135)] = 89617, - [SMALL_STATE(3136)] = 89634, - [SMALL_STATE(3137)] = 89651, - [SMALL_STATE(3138)] = 89668, - [SMALL_STATE(3139)] = 89685, - [SMALL_STATE(3140)] = 89702, - [SMALL_STATE(3141)] = 89717, - [SMALL_STATE(3142)] = 89734, - [SMALL_STATE(3143)] = 89749, - [SMALL_STATE(3144)] = 89766, - [SMALL_STATE(3145)] = 89783, - [SMALL_STATE(3146)] = 89800, - [SMALL_STATE(3147)] = 89817, - [SMALL_STATE(3148)] = 89834, - [SMALL_STATE(3149)] = 89851, - [SMALL_STATE(3150)] = 89868, - [SMALL_STATE(3151)] = 89883, - [SMALL_STATE(3152)] = 89900, - [SMALL_STATE(3153)] = 89917, - [SMALL_STATE(3154)] = 89934, - [SMALL_STATE(3155)] = 89949, - [SMALL_STATE(3156)] = 89966, - [SMALL_STATE(3157)] = 89983, - [SMALL_STATE(3158)] = 90000, - [SMALL_STATE(3159)] = 90017, - [SMALL_STATE(3160)] = 90034, - [SMALL_STATE(3161)] = 90051, - [SMALL_STATE(3162)] = 90068, - [SMALL_STATE(3163)] = 90083, - [SMALL_STATE(3164)] = 90098, - [SMALL_STATE(3165)] = 90115, - [SMALL_STATE(3166)] = 90132, - [SMALL_STATE(3167)] = 90149, - [SMALL_STATE(3168)] = 90166, - [SMALL_STATE(3169)] = 90183, - [SMALL_STATE(3170)] = 90200, - [SMALL_STATE(3171)] = 90217, - [SMALL_STATE(3172)] = 90232, - [SMALL_STATE(3173)] = 90249, - [SMALL_STATE(3174)] = 90266, - [SMALL_STATE(3175)] = 90281, - [SMALL_STATE(3176)] = 90298, - [SMALL_STATE(3177)] = 90315, - [SMALL_STATE(3178)] = 90332, - [SMALL_STATE(3179)] = 90349, - [SMALL_STATE(3180)] = 90366, - [SMALL_STATE(3181)] = 90383, - [SMALL_STATE(3182)] = 90400, - [SMALL_STATE(3183)] = 90417, - [SMALL_STATE(3184)] = 90434, - [SMALL_STATE(3185)] = 90451, - [SMALL_STATE(3186)] = 90468, - [SMALL_STATE(3187)] = 90483, - [SMALL_STATE(3188)] = 90500, - [SMALL_STATE(3189)] = 90517, - [SMALL_STATE(3190)] = 90534, - [SMALL_STATE(3191)] = 90551, - [SMALL_STATE(3192)] = 90568, - [SMALL_STATE(3193)] = 90585, - [SMALL_STATE(3194)] = 90602, - [SMALL_STATE(3195)] = 90619, - [SMALL_STATE(3196)] = 90636, - [SMALL_STATE(3197)] = 90653, - [SMALL_STATE(3198)] = 90670, - [SMALL_STATE(3199)] = 90687, + [SMALL_STATE(3122)] = 89404, + [SMALL_STATE(3123)] = 89421, + [SMALL_STATE(3124)] = 89438, + [SMALL_STATE(3125)] = 89455, + [SMALL_STATE(3126)] = 89472, + [SMALL_STATE(3127)] = 89489, + [SMALL_STATE(3128)] = 89506, + [SMALL_STATE(3129)] = 89523, + [SMALL_STATE(3130)] = 89540, + [SMALL_STATE(3131)] = 89557, + [SMALL_STATE(3132)] = 89572, + [SMALL_STATE(3133)] = 89589, + [SMALL_STATE(3134)] = 89606, + [SMALL_STATE(3135)] = 89623, + [SMALL_STATE(3136)] = 89638, + [SMALL_STATE(3137)] = 89655, + [SMALL_STATE(3138)] = 89672, + [SMALL_STATE(3139)] = 89687, + [SMALL_STATE(3140)] = 89704, + [SMALL_STATE(3141)] = 89721, + [SMALL_STATE(3142)] = 89738, + [SMALL_STATE(3143)] = 89755, + [SMALL_STATE(3144)] = 89770, + [SMALL_STATE(3145)] = 89787, + [SMALL_STATE(3146)] = 89804, + [SMALL_STATE(3147)] = 89821, + [SMALL_STATE(3148)] = 89838, + [SMALL_STATE(3149)] = 89853, + [SMALL_STATE(3150)] = 89870, + [SMALL_STATE(3151)] = 89887, + [SMALL_STATE(3152)] = 89904, + [SMALL_STATE(3153)] = 89921, + [SMALL_STATE(3154)] = 89938, + [SMALL_STATE(3155)] = 89955, + [SMALL_STATE(3156)] = 89972, + [SMALL_STATE(3157)] = 89989, + [SMALL_STATE(3158)] = 90006, + [SMALL_STATE(3159)] = 90023, + [SMALL_STATE(3160)] = 90040, + [SMALL_STATE(3161)] = 90057, + [SMALL_STATE(3162)] = 90074, + [SMALL_STATE(3163)] = 90091, + [SMALL_STATE(3164)] = 90108, + [SMALL_STATE(3165)] = 90125, + [SMALL_STATE(3166)] = 90142, + [SMALL_STATE(3167)] = 90159, + [SMALL_STATE(3168)] = 90176, + [SMALL_STATE(3169)] = 90193, + [SMALL_STATE(3170)] = 90210, + [SMALL_STATE(3171)] = 90227, + [SMALL_STATE(3172)] = 90244, + [SMALL_STATE(3173)] = 90261, + [SMALL_STATE(3174)] = 90278, + [SMALL_STATE(3175)] = 90295, + [SMALL_STATE(3176)] = 90312, + [SMALL_STATE(3177)] = 90327, + [SMALL_STATE(3178)] = 90344, + [SMALL_STATE(3179)] = 90361, + [SMALL_STATE(3180)] = 90378, + [SMALL_STATE(3181)] = 90395, + [SMALL_STATE(3182)] = 90412, + [SMALL_STATE(3183)] = 90429, + [SMALL_STATE(3184)] = 90446, + [SMALL_STATE(3185)] = 90461, + [SMALL_STATE(3186)] = 90476, + [SMALL_STATE(3187)] = 90493, + [SMALL_STATE(3188)] = 90510, + [SMALL_STATE(3189)] = 90527, + [SMALL_STATE(3190)] = 90542, + [SMALL_STATE(3191)] = 90559, + [SMALL_STATE(3192)] = 90576, + [SMALL_STATE(3193)] = 90593, + [SMALL_STATE(3194)] = 90610, + [SMALL_STATE(3195)] = 90627, + [SMALL_STATE(3196)] = 90642, + [SMALL_STATE(3197)] = 90657, + [SMALL_STATE(3198)] = 90672, + [SMALL_STATE(3199)] = 90689, [SMALL_STATE(3200)] = 90704, - [SMALL_STATE(3201)] = 90721, - [SMALL_STATE(3202)] = 90736, - [SMALL_STATE(3203)] = 90753, - [SMALL_STATE(3204)] = 90770, - [SMALL_STATE(3205)] = 90787, - [SMALL_STATE(3206)] = 90804, - [SMALL_STATE(3207)] = 90821, - [SMALL_STATE(3208)] = 90836, - [SMALL_STATE(3209)] = 90853, - [SMALL_STATE(3210)] = 90870, - [SMALL_STATE(3211)] = 90887, - [SMALL_STATE(3212)] = 90904, - [SMALL_STATE(3213)] = 90921, - [SMALL_STATE(3214)] = 90936, - [SMALL_STATE(3215)] = 90953, + [SMALL_STATE(3201)] = 90719, + [SMALL_STATE(3202)] = 90734, + [SMALL_STATE(3203)] = 90751, + [SMALL_STATE(3204)] = 90766, + [SMALL_STATE(3205)] = 90783, + [SMALL_STATE(3206)] = 90798, + [SMALL_STATE(3207)] = 90815, + [SMALL_STATE(3208)] = 90832, + [SMALL_STATE(3209)] = 90849, + [SMALL_STATE(3210)] = 90866, + [SMALL_STATE(3211)] = 90883, + [SMALL_STATE(3212)] = 90900, + [SMALL_STATE(3213)] = 90917, + [SMALL_STATE(3214)] = 90934, + [SMALL_STATE(3215)] = 90951, [SMALL_STATE(3216)] = 90968, [SMALL_STATE(3217)] = 90985, - [SMALL_STATE(3218)] = 91002, - [SMALL_STATE(3219)] = 91019, - [SMALL_STATE(3220)] = 91036, - [SMALL_STATE(3221)] = 91053, - [SMALL_STATE(3222)] = 91070, - [SMALL_STATE(3223)] = 91087, - [SMALL_STATE(3224)] = 91104, + [SMALL_STATE(3218)] = 91000, + [SMALL_STATE(3219)] = 91017, + [SMALL_STATE(3220)] = 91034, + [SMALL_STATE(3221)] = 91051, + [SMALL_STATE(3222)] = 91068, + [SMALL_STATE(3223)] = 91085, + [SMALL_STATE(3224)] = 91102, [SMALL_STATE(3225)] = 91119, - [SMALL_STATE(3226)] = 91134, - [SMALL_STATE(3227)] = 91151, - [SMALL_STATE(3228)] = 91168, - [SMALL_STATE(3229)] = 91185, - [SMALL_STATE(3230)] = 91202, - [SMALL_STATE(3231)] = 91219, - [SMALL_STATE(3232)] = 91236, + [SMALL_STATE(3226)] = 91136, + [SMALL_STATE(3227)] = 91153, + [SMALL_STATE(3228)] = 91170, + [SMALL_STATE(3229)] = 91187, + [SMALL_STATE(3230)] = 91204, + [SMALL_STATE(3231)] = 91221, + [SMALL_STATE(3232)] = 91238, [SMALL_STATE(3233)] = 91253, [SMALL_STATE(3234)] = 91270, [SMALL_STATE(3235)] = 91287, - [SMALL_STATE(3236)] = 91304, - [SMALL_STATE(3237)] = 91321, - [SMALL_STATE(3238)] = 91338, - [SMALL_STATE(3239)] = 91355, - [SMALL_STATE(3240)] = 91372, - [SMALL_STATE(3241)] = 91389, - [SMALL_STATE(3242)] = 91404, - [SMALL_STATE(3243)] = 91421, - [SMALL_STATE(3244)] = 91438, - [SMALL_STATE(3245)] = 91455, - [SMALL_STATE(3246)] = 91472, - [SMALL_STATE(3247)] = 91489, - [SMALL_STATE(3248)] = 91506, - [SMALL_STATE(3249)] = 91523, + [SMALL_STATE(3236)] = 91302, + [SMALL_STATE(3237)] = 91319, + [SMALL_STATE(3238)] = 91336, + [SMALL_STATE(3239)] = 91351, + [SMALL_STATE(3240)] = 91368, + [SMALL_STATE(3241)] = 91385, + [SMALL_STATE(3242)] = 91402, + [SMALL_STATE(3243)] = 91419, + [SMALL_STATE(3244)] = 91436, + [SMALL_STATE(3245)] = 91453, + [SMALL_STATE(3246)] = 91470, + [SMALL_STATE(3247)] = 91487, + [SMALL_STATE(3248)] = 91504, + [SMALL_STATE(3249)] = 91521, [SMALL_STATE(3250)] = 91538, - [SMALL_STATE(3251)] = 91555, - [SMALL_STATE(3252)] = 91572, - [SMALL_STATE(3253)] = 91589, - [SMALL_STATE(3254)] = 91606, - [SMALL_STATE(3255)] = 91623, - [SMALL_STATE(3256)] = 91640, - [SMALL_STATE(3257)] = 91657, - [SMALL_STATE(3258)] = 91674, - [SMALL_STATE(3259)] = 91691, - [SMALL_STATE(3260)] = 91706, - [SMALL_STATE(3261)] = 91721, - [SMALL_STATE(3262)] = 91736, - [SMALL_STATE(3263)] = 91751, - [SMALL_STATE(3264)] = 91768, - [SMALL_STATE(3265)] = 91785, - [SMALL_STATE(3266)] = 91802, - [SMALL_STATE(3267)] = 91819, - [SMALL_STATE(3268)] = 91834, - [SMALL_STATE(3269)] = 91851, - [SMALL_STATE(3270)] = 91868, - [SMALL_STATE(3271)] = 91885, - [SMALL_STATE(3272)] = 91902, - [SMALL_STATE(3273)] = 91917, - [SMALL_STATE(3274)] = 91934, - [SMALL_STATE(3275)] = 91951, + [SMALL_STATE(3251)] = 91553, + [SMALL_STATE(3252)] = 91570, + [SMALL_STATE(3253)] = 91585, + [SMALL_STATE(3254)] = 91602, + [SMALL_STATE(3255)] = 91617, + [SMALL_STATE(3256)] = 91634, + [SMALL_STATE(3257)] = 91649, + [SMALL_STATE(3258)] = 91666, + [SMALL_STATE(3259)] = 91683, + [SMALL_STATE(3260)] = 91700, + [SMALL_STATE(3261)] = 91715, + [SMALL_STATE(3262)] = 91730, + [SMALL_STATE(3263)] = 91747, + [SMALL_STATE(3264)] = 91762, + [SMALL_STATE(3265)] = 91779, + [SMALL_STATE(3266)] = 91796, + [SMALL_STATE(3267)] = 91813, + [SMALL_STATE(3268)] = 91830, + [SMALL_STATE(3269)] = 91847, + [SMALL_STATE(3270)] = 91864, + [SMALL_STATE(3271)] = 91881, + [SMALL_STATE(3272)] = 91898, + [SMALL_STATE(3273)] = 91915, + [SMALL_STATE(3274)] = 91932, + [SMALL_STATE(3275)] = 91949, [SMALL_STATE(3276)] = 91966, [SMALL_STATE(3277)] = 91983, - [SMALL_STATE(3278)] = 91998, - [SMALL_STATE(3279)] = 92015, - [SMALL_STATE(3280)] = 92032, - [SMALL_STATE(3281)] = 92049, + [SMALL_STATE(3278)] = 92000, + [SMALL_STATE(3279)] = 92017, + [SMALL_STATE(3280)] = 92034, + [SMALL_STATE(3281)] = 92051, [SMALL_STATE(3282)] = 92066, - [SMALL_STATE(3283)] = 92081, - [SMALL_STATE(3284)] = 92098, - [SMALL_STATE(3285)] = 92115, - [SMALL_STATE(3286)] = 92130, - [SMALL_STATE(3287)] = 92147, - [SMALL_STATE(3288)] = 92164, - [SMALL_STATE(3289)] = 92181, - [SMALL_STATE(3290)] = 92198, - [SMALL_STATE(3291)] = 92215, + [SMALL_STATE(3283)] = 92083, + [SMALL_STATE(3284)] = 92100, + [SMALL_STATE(3285)] = 92117, + [SMALL_STATE(3286)] = 92132, + [SMALL_STATE(3287)] = 92149, + [SMALL_STATE(3288)] = 92166, + [SMALL_STATE(3289)] = 92183, + [SMALL_STATE(3290)] = 92200, + [SMALL_STATE(3291)] = 92217, [SMALL_STATE(3292)] = 92232, [SMALL_STATE(3293)] = 92249, [SMALL_STATE(3294)] = 92266, @@ -188592,1820 +188637,1822 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(3300)] = 92368, [SMALL_STATE(3301)] = 92385, [SMALL_STATE(3302)] = 92402, - [SMALL_STATE(3303)] = 92417, - [SMALL_STATE(3304)] = 92434, - [SMALL_STATE(3305)] = 92449, - [SMALL_STATE(3306)] = 92466, - [SMALL_STATE(3307)] = 92483, - [SMALL_STATE(3308)] = 92498, - [SMALL_STATE(3309)] = 92515, - [SMALL_STATE(3310)] = 92532, - [SMALL_STATE(3311)] = 92547, - [SMALL_STATE(3312)] = 92564, - [SMALL_STATE(3313)] = 92578, - [SMALL_STATE(3314)] = 92592, - [SMALL_STATE(3315)] = 92606, - [SMALL_STATE(3316)] = 92620, - [SMALL_STATE(3317)] = 92634, - [SMALL_STATE(3318)] = 92648, - [SMALL_STATE(3319)] = 92662, - [SMALL_STATE(3320)] = 92676, - [SMALL_STATE(3321)] = 92690, - [SMALL_STATE(3322)] = 92704, - [SMALL_STATE(3323)] = 92718, - [SMALL_STATE(3324)] = 92732, - [SMALL_STATE(3325)] = 92746, - [SMALL_STATE(3326)] = 92760, - [SMALL_STATE(3327)] = 92774, - [SMALL_STATE(3328)] = 92788, - [SMALL_STATE(3329)] = 92802, - [SMALL_STATE(3330)] = 92816, - [SMALL_STATE(3331)] = 92830, - [SMALL_STATE(3332)] = 92844, - [SMALL_STATE(3333)] = 92858, - [SMALL_STATE(3334)] = 92872, - [SMALL_STATE(3335)] = 92886, - [SMALL_STATE(3336)] = 92900, - [SMALL_STATE(3337)] = 92914, - [SMALL_STATE(3338)] = 92928, - [SMALL_STATE(3339)] = 92942, - [SMALL_STATE(3340)] = 92956, - [SMALL_STATE(3341)] = 92970, - [SMALL_STATE(3342)] = 92984, - [SMALL_STATE(3343)] = 92998, - [SMALL_STATE(3344)] = 93012, - [SMALL_STATE(3345)] = 93026, - [SMALL_STATE(3346)] = 93040, - [SMALL_STATE(3347)] = 93054, - [SMALL_STATE(3348)] = 93068, - [SMALL_STATE(3349)] = 93082, - [SMALL_STATE(3350)] = 93096, - [SMALL_STATE(3351)] = 93110, - [SMALL_STATE(3352)] = 93124, - [SMALL_STATE(3353)] = 93138, - [SMALL_STATE(3354)] = 93152, - [SMALL_STATE(3355)] = 93166, - [SMALL_STATE(3356)] = 93180, - [SMALL_STATE(3357)] = 93194, - [SMALL_STATE(3358)] = 93208, - [SMALL_STATE(3359)] = 93222, - [SMALL_STATE(3360)] = 93236, - [SMALL_STATE(3361)] = 93250, - [SMALL_STATE(3362)] = 93264, - [SMALL_STATE(3363)] = 93278, - [SMALL_STATE(3364)] = 93292, - [SMALL_STATE(3365)] = 93306, - [SMALL_STATE(3366)] = 93320, - [SMALL_STATE(3367)] = 93334, - [SMALL_STATE(3368)] = 93348, - [SMALL_STATE(3369)] = 93362, - [SMALL_STATE(3370)] = 93376, - [SMALL_STATE(3371)] = 93390, - [SMALL_STATE(3372)] = 93404, - [SMALL_STATE(3373)] = 93418, - [SMALL_STATE(3374)] = 93432, - [SMALL_STATE(3375)] = 93446, - [SMALL_STATE(3376)] = 93460, - [SMALL_STATE(3377)] = 93474, - [SMALL_STATE(3378)] = 93488, - [SMALL_STATE(3379)] = 93502, - [SMALL_STATE(3380)] = 93516, - [SMALL_STATE(3381)] = 93530, - [SMALL_STATE(3382)] = 93544, - [SMALL_STATE(3383)] = 93558, - [SMALL_STATE(3384)] = 93572, - [SMALL_STATE(3385)] = 93586, - [SMALL_STATE(3386)] = 93600, - [SMALL_STATE(3387)] = 93614, - [SMALL_STATE(3388)] = 93628, - [SMALL_STATE(3389)] = 93642, - [SMALL_STATE(3390)] = 93656, - [SMALL_STATE(3391)] = 93670, - [SMALL_STATE(3392)] = 93684, - [SMALL_STATE(3393)] = 93698, - [SMALL_STATE(3394)] = 93712, - [SMALL_STATE(3395)] = 93726, - [SMALL_STATE(3396)] = 93740, - [SMALL_STATE(3397)] = 93754, - [SMALL_STATE(3398)] = 93768, - [SMALL_STATE(3399)] = 93782, - [SMALL_STATE(3400)] = 93796, - [SMALL_STATE(3401)] = 93810, - [SMALL_STATE(3402)] = 93824, - [SMALL_STATE(3403)] = 93838, - [SMALL_STATE(3404)] = 93852, - [SMALL_STATE(3405)] = 93866, - [SMALL_STATE(3406)] = 93880, - [SMALL_STATE(3407)] = 93894, - [SMALL_STATE(3408)] = 93908, - [SMALL_STATE(3409)] = 93922, - [SMALL_STATE(3410)] = 93936, - [SMALL_STATE(3411)] = 93950, - [SMALL_STATE(3412)] = 93964, - [SMALL_STATE(3413)] = 93978, - [SMALL_STATE(3414)] = 93992, - [SMALL_STATE(3415)] = 94006, - [SMALL_STATE(3416)] = 94020, - [SMALL_STATE(3417)] = 94034, - [SMALL_STATE(3418)] = 94048, - [SMALL_STATE(3419)] = 94062, - [SMALL_STATE(3420)] = 94076, - [SMALL_STATE(3421)] = 94090, - [SMALL_STATE(3422)] = 94104, - [SMALL_STATE(3423)] = 94118, - [SMALL_STATE(3424)] = 94132, - [SMALL_STATE(3425)] = 94146, - [SMALL_STATE(3426)] = 94160, - [SMALL_STATE(3427)] = 94174, - [SMALL_STATE(3428)] = 94188, - [SMALL_STATE(3429)] = 94202, - [SMALL_STATE(3430)] = 94216, - [SMALL_STATE(3431)] = 94230, - [SMALL_STATE(3432)] = 94244, - [SMALL_STATE(3433)] = 94258, - [SMALL_STATE(3434)] = 94272, - [SMALL_STATE(3435)] = 94286, - [SMALL_STATE(3436)] = 94300, - [SMALL_STATE(3437)] = 94314, - [SMALL_STATE(3438)] = 94328, - [SMALL_STATE(3439)] = 94342, - [SMALL_STATE(3440)] = 94356, - [SMALL_STATE(3441)] = 94370, - [SMALL_STATE(3442)] = 94384, - [SMALL_STATE(3443)] = 94398, - [SMALL_STATE(3444)] = 94412, - [SMALL_STATE(3445)] = 94426, - [SMALL_STATE(3446)] = 94440, - [SMALL_STATE(3447)] = 94454, - [SMALL_STATE(3448)] = 94468, - [SMALL_STATE(3449)] = 94482, - [SMALL_STATE(3450)] = 94496, - [SMALL_STATE(3451)] = 94510, - [SMALL_STATE(3452)] = 94524, - [SMALL_STATE(3453)] = 94538, - [SMALL_STATE(3454)] = 94552, - [SMALL_STATE(3455)] = 94566, - [SMALL_STATE(3456)] = 94580, - [SMALL_STATE(3457)] = 94594, - [SMALL_STATE(3458)] = 94608, - [SMALL_STATE(3459)] = 94622, - [SMALL_STATE(3460)] = 94636, - [SMALL_STATE(3461)] = 94650, - [SMALL_STATE(3462)] = 94664, - [SMALL_STATE(3463)] = 94678, - [SMALL_STATE(3464)] = 94692, - [SMALL_STATE(3465)] = 94706, - [SMALL_STATE(3466)] = 94720, - [SMALL_STATE(3467)] = 94734, - [SMALL_STATE(3468)] = 94748, - [SMALL_STATE(3469)] = 94762, - [SMALL_STATE(3470)] = 94776, - [SMALL_STATE(3471)] = 94790, - [SMALL_STATE(3472)] = 94804, - [SMALL_STATE(3473)] = 94818, - [SMALL_STATE(3474)] = 94832, - [SMALL_STATE(3475)] = 94846, - [SMALL_STATE(3476)] = 94860, - [SMALL_STATE(3477)] = 94874, - [SMALL_STATE(3478)] = 94888, - [SMALL_STATE(3479)] = 94902, - [SMALL_STATE(3480)] = 94916, - [SMALL_STATE(3481)] = 94930, - [SMALL_STATE(3482)] = 94944, - [SMALL_STATE(3483)] = 94958, - [SMALL_STATE(3484)] = 94972, - [SMALL_STATE(3485)] = 94986, - [SMALL_STATE(3486)] = 95000, - [SMALL_STATE(3487)] = 95014, - [SMALL_STATE(3488)] = 95028, - [SMALL_STATE(3489)] = 95042, - [SMALL_STATE(3490)] = 95056, - [SMALL_STATE(3491)] = 95070, - [SMALL_STATE(3492)] = 95084, - [SMALL_STATE(3493)] = 95098, - [SMALL_STATE(3494)] = 95112, - [SMALL_STATE(3495)] = 95126, - [SMALL_STATE(3496)] = 95140, - [SMALL_STATE(3497)] = 95154, - [SMALL_STATE(3498)] = 95168, - [SMALL_STATE(3499)] = 95182, - [SMALL_STATE(3500)] = 95196, - [SMALL_STATE(3501)] = 95210, - [SMALL_STATE(3502)] = 95224, - [SMALL_STATE(3503)] = 95238, - [SMALL_STATE(3504)] = 95252, - [SMALL_STATE(3505)] = 95266, - [SMALL_STATE(3506)] = 95280, - [SMALL_STATE(3507)] = 95294, - [SMALL_STATE(3508)] = 95308, - [SMALL_STATE(3509)] = 95322, - [SMALL_STATE(3510)] = 95336, - [SMALL_STATE(3511)] = 95350, - [SMALL_STATE(3512)] = 95364, - [SMALL_STATE(3513)] = 95378, - [SMALL_STATE(3514)] = 95392, - [SMALL_STATE(3515)] = 95406, - [SMALL_STATE(3516)] = 95420, - [SMALL_STATE(3517)] = 95434, - [SMALL_STATE(3518)] = 95448, - [SMALL_STATE(3519)] = 95462, - [SMALL_STATE(3520)] = 95476, - [SMALL_STATE(3521)] = 95490, - [SMALL_STATE(3522)] = 95504, - [SMALL_STATE(3523)] = 95518, - [SMALL_STATE(3524)] = 95532, - [SMALL_STATE(3525)] = 95546, - [SMALL_STATE(3526)] = 95560, - [SMALL_STATE(3527)] = 95574, - [SMALL_STATE(3528)] = 95588, - [SMALL_STATE(3529)] = 95602, - [SMALL_STATE(3530)] = 95616, - [SMALL_STATE(3531)] = 95630, - [SMALL_STATE(3532)] = 95644, - [SMALL_STATE(3533)] = 95658, - [SMALL_STATE(3534)] = 95672, - [SMALL_STATE(3535)] = 95686, - [SMALL_STATE(3536)] = 95700, - [SMALL_STATE(3537)] = 95714, - [SMALL_STATE(3538)] = 95728, - [SMALL_STATE(3539)] = 95742, - [SMALL_STATE(3540)] = 95756, - [SMALL_STATE(3541)] = 95770, - [SMALL_STATE(3542)] = 95784, - [SMALL_STATE(3543)] = 95798, - [SMALL_STATE(3544)] = 95812, - [SMALL_STATE(3545)] = 95826, - [SMALL_STATE(3546)] = 95840, - [SMALL_STATE(3547)] = 95854, - [SMALL_STATE(3548)] = 95868, - [SMALL_STATE(3549)] = 95882, - [SMALL_STATE(3550)] = 95896, - [SMALL_STATE(3551)] = 95910, - [SMALL_STATE(3552)] = 95924, - [SMALL_STATE(3553)] = 95938, - [SMALL_STATE(3554)] = 95952, - [SMALL_STATE(3555)] = 95966, - [SMALL_STATE(3556)] = 95980, - [SMALL_STATE(3557)] = 95994, - [SMALL_STATE(3558)] = 96008, - [SMALL_STATE(3559)] = 96022, - [SMALL_STATE(3560)] = 96036, - [SMALL_STATE(3561)] = 96050, - [SMALL_STATE(3562)] = 96064, - [SMALL_STATE(3563)] = 96078, - [SMALL_STATE(3564)] = 96092, - [SMALL_STATE(3565)] = 96106, - [SMALL_STATE(3566)] = 96120, - [SMALL_STATE(3567)] = 96134, - [SMALL_STATE(3568)] = 96148, - [SMALL_STATE(3569)] = 96162, - [SMALL_STATE(3570)] = 96176, - [SMALL_STATE(3571)] = 96190, - [SMALL_STATE(3572)] = 96204, - [SMALL_STATE(3573)] = 96218, - [SMALL_STATE(3574)] = 96232, - [SMALL_STATE(3575)] = 96246, - [SMALL_STATE(3576)] = 96260, - [SMALL_STATE(3577)] = 96274, - [SMALL_STATE(3578)] = 96288, - [SMALL_STATE(3579)] = 96302, - [SMALL_STATE(3580)] = 96316, - [SMALL_STATE(3581)] = 96330, - [SMALL_STATE(3582)] = 96344, - [SMALL_STATE(3583)] = 96358, - [SMALL_STATE(3584)] = 96372, - [SMALL_STATE(3585)] = 96386, - [SMALL_STATE(3586)] = 96400, - [SMALL_STATE(3587)] = 96414, - [SMALL_STATE(3588)] = 96428, - [SMALL_STATE(3589)] = 96442, - [SMALL_STATE(3590)] = 96456, - [SMALL_STATE(3591)] = 96470, - [SMALL_STATE(3592)] = 96484, - [SMALL_STATE(3593)] = 96498, - [SMALL_STATE(3594)] = 96512, - [SMALL_STATE(3595)] = 96526, - [SMALL_STATE(3596)] = 96540, - [SMALL_STATE(3597)] = 96554, - [SMALL_STATE(3598)] = 96568, - [SMALL_STATE(3599)] = 96582, - [SMALL_STATE(3600)] = 96596, - [SMALL_STATE(3601)] = 96610, - [SMALL_STATE(3602)] = 96624, - [SMALL_STATE(3603)] = 96638, - [SMALL_STATE(3604)] = 96652, - [SMALL_STATE(3605)] = 96666, - [SMALL_STATE(3606)] = 96680, - [SMALL_STATE(3607)] = 96694, - [SMALL_STATE(3608)] = 96708, - [SMALL_STATE(3609)] = 96722, - [SMALL_STATE(3610)] = 96736, - [SMALL_STATE(3611)] = 96750, - [SMALL_STATE(3612)] = 96754, - [SMALL_STATE(3613)] = 96758, - [SMALL_STATE(3614)] = 96762, - [SMALL_STATE(3615)] = 96766, - [SMALL_STATE(3616)] = 96770, - [SMALL_STATE(3617)] = 96774, + [SMALL_STATE(3303)] = 92419, + [SMALL_STATE(3304)] = 92436, + [SMALL_STATE(3305)] = 92453, + [SMALL_STATE(3306)] = 92470, + [SMALL_STATE(3307)] = 92487, + [SMALL_STATE(3308)] = 92504, + [SMALL_STATE(3309)] = 92521, + [SMALL_STATE(3310)] = 92538, + [SMALL_STATE(3311)] = 92553, + [SMALL_STATE(3312)] = 92570, + [SMALL_STATE(3313)] = 92584, + [SMALL_STATE(3314)] = 92598, + [SMALL_STATE(3315)] = 92612, + [SMALL_STATE(3316)] = 92626, + [SMALL_STATE(3317)] = 92640, + [SMALL_STATE(3318)] = 92654, + [SMALL_STATE(3319)] = 92668, + [SMALL_STATE(3320)] = 92682, + [SMALL_STATE(3321)] = 92696, + [SMALL_STATE(3322)] = 92710, + [SMALL_STATE(3323)] = 92724, + [SMALL_STATE(3324)] = 92738, + [SMALL_STATE(3325)] = 92752, + [SMALL_STATE(3326)] = 92766, + [SMALL_STATE(3327)] = 92780, + [SMALL_STATE(3328)] = 92794, + [SMALL_STATE(3329)] = 92808, + [SMALL_STATE(3330)] = 92822, + [SMALL_STATE(3331)] = 92836, + [SMALL_STATE(3332)] = 92850, + [SMALL_STATE(3333)] = 92864, + [SMALL_STATE(3334)] = 92878, + [SMALL_STATE(3335)] = 92892, + [SMALL_STATE(3336)] = 92906, + [SMALL_STATE(3337)] = 92920, + [SMALL_STATE(3338)] = 92934, + [SMALL_STATE(3339)] = 92948, + [SMALL_STATE(3340)] = 92962, + [SMALL_STATE(3341)] = 92976, + [SMALL_STATE(3342)] = 92990, + [SMALL_STATE(3343)] = 93004, + [SMALL_STATE(3344)] = 93018, + [SMALL_STATE(3345)] = 93032, + [SMALL_STATE(3346)] = 93046, + [SMALL_STATE(3347)] = 93060, + [SMALL_STATE(3348)] = 93074, + [SMALL_STATE(3349)] = 93088, + [SMALL_STATE(3350)] = 93102, + [SMALL_STATE(3351)] = 93116, + [SMALL_STATE(3352)] = 93130, + [SMALL_STATE(3353)] = 93144, + [SMALL_STATE(3354)] = 93158, + [SMALL_STATE(3355)] = 93172, + [SMALL_STATE(3356)] = 93186, + [SMALL_STATE(3357)] = 93200, + [SMALL_STATE(3358)] = 93214, + [SMALL_STATE(3359)] = 93228, + [SMALL_STATE(3360)] = 93242, + [SMALL_STATE(3361)] = 93256, + [SMALL_STATE(3362)] = 93270, + [SMALL_STATE(3363)] = 93284, + [SMALL_STATE(3364)] = 93298, + [SMALL_STATE(3365)] = 93312, + [SMALL_STATE(3366)] = 93326, + [SMALL_STATE(3367)] = 93340, + [SMALL_STATE(3368)] = 93354, + [SMALL_STATE(3369)] = 93368, + [SMALL_STATE(3370)] = 93382, + [SMALL_STATE(3371)] = 93396, + [SMALL_STATE(3372)] = 93410, + [SMALL_STATE(3373)] = 93424, + [SMALL_STATE(3374)] = 93438, + [SMALL_STATE(3375)] = 93452, + [SMALL_STATE(3376)] = 93466, + [SMALL_STATE(3377)] = 93480, + [SMALL_STATE(3378)] = 93494, + [SMALL_STATE(3379)] = 93508, + [SMALL_STATE(3380)] = 93522, + [SMALL_STATE(3381)] = 93536, + [SMALL_STATE(3382)] = 93550, + [SMALL_STATE(3383)] = 93564, + [SMALL_STATE(3384)] = 93578, + [SMALL_STATE(3385)] = 93592, + [SMALL_STATE(3386)] = 93606, + [SMALL_STATE(3387)] = 93620, + [SMALL_STATE(3388)] = 93634, + [SMALL_STATE(3389)] = 93648, + [SMALL_STATE(3390)] = 93662, + [SMALL_STATE(3391)] = 93676, + [SMALL_STATE(3392)] = 93690, + [SMALL_STATE(3393)] = 93704, + [SMALL_STATE(3394)] = 93718, + [SMALL_STATE(3395)] = 93732, + [SMALL_STATE(3396)] = 93746, + [SMALL_STATE(3397)] = 93760, + [SMALL_STATE(3398)] = 93774, + [SMALL_STATE(3399)] = 93788, + [SMALL_STATE(3400)] = 93802, + [SMALL_STATE(3401)] = 93816, + [SMALL_STATE(3402)] = 93830, + [SMALL_STATE(3403)] = 93844, + [SMALL_STATE(3404)] = 93858, + [SMALL_STATE(3405)] = 93872, + [SMALL_STATE(3406)] = 93886, + [SMALL_STATE(3407)] = 93900, + [SMALL_STATE(3408)] = 93914, + [SMALL_STATE(3409)] = 93928, + [SMALL_STATE(3410)] = 93942, + [SMALL_STATE(3411)] = 93956, + [SMALL_STATE(3412)] = 93970, + [SMALL_STATE(3413)] = 93984, + [SMALL_STATE(3414)] = 93998, + [SMALL_STATE(3415)] = 94012, + [SMALL_STATE(3416)] = 94026, + [SMALL_STATE(3417)] = 94040, + [SMALL_STATE(3418)] = 94054, + [SMALL_STATE(3419)] = 94068, + [SMALL_STATE(3420)] = 94082, + [SMALL_STATE(3421)] = 94096, + [SMALL_STATE(3422)] = 94110, + [SMALL_STATE(3423)] = 94124, + [SMALL_STATE(3424)] = 94138, + [SMALL_STATE(3425)] = 94152, + [SMALL_STATE(3426)] = 94166, + [SMALL_STATE(3427)] = 94180, + [SMALL_STATE(3428)] = 94194, + [SMALL_STATE(3429)] = 94208, + [SMALL_STATE(3430)] = 94222, + [SMALL_STATE(3431)] = 94236, + [SMALL_STATE(3432)] = 94250, + [SMALL_STATE(3433)] = 94264, + [SMALL_STATE(3434)] = 94278, + [SMALL_STATE(3435)] = 94292, + [SMALL_STATE(3436)] = 94306, + [SMALL_STATE(3437)] = 94320, + [SMALL_STATE(3438)] = 94334, + [SMALL_STATE(3439)] = 94348, + [SMALL_STATE(3440)] = 94362, + [SMALL_STATE(3441)] = 94376, + [SMALL_STATE(3442)] = 94390, + [SMALL_STATE(3443)] = 94404, + [SMALL_STATE(3444)] = 94418, + [SMALL_STATE(3445)] = 94432, + [SMALL_STATE(3446)] = 94446, + [SMALL_STATE(3447)] = 94460, + [SMALL_STATE(3448)] = 94474, + [SMALL_STATE(3449)] = 94488, + [SMALL_STATE(3450)] = 94502, + [SMALL_STATE(3451)] = 94516, + [SMALL_STATE(3452)] = 94530, + [SMALL_STATE(3453)] = 94544, + [SMALL_STATE(3454)] = 94558, + [SMALL_STATE(3455)] = 94572, + [SMALL_STATE(3456)] = 94586, + [SMALL_STATE(3457)] = 94600, + [SMALL_STATE(3458)] = 94614, + [SMALL_STATE(3459)] = 94628, + [SMALL_STATE(3460)] = 94642, + [SMALL_STATE(3461)] = 94656, + [SMALL_STATE(3462)] = 94670, + [SMALL_STATE(3463)] = 94684, + [SMALL_STATE(3464)] = 94698, + [SMALL_STATE(3465)] = 94712, + [SMALL_STATE(3466)] = 94726, + [SMALL_STATE(3467)] = 94740, + [SMALL_STATE(3468)] = 94754, + [SMALL_STATE(3469)] = 94768, + [SMALL_STATE(3470)] = 94782, + [SMALL_STATE(3471)] = 94796, + [SMALL_STATE(3472)] = 94810, + [SMALL_STATE(3473)] = 94824, + [SMALL_STATE(3474)] = 94838, + [SMALL_STATE(3475)] = 94852, + [SMALL_STATE(3476)] = 94866, + [SMALL_STATE(3477)] = 94880, + [SMALL_STATE(3478)] = 94894, + [SMALL_STATE(3479)] = 94908, + [SMALL_STATE(3480)] = 94922, + [SMALL_STATE(3481)] = 94936, + [SMALL_STATE(3482)] = 94950, + [SMALL_STATE(3483)] = 94964, + [SMALL_STATE(3484)] = 94978, + [SMALL_STATE(3485)] = 94992, + [SMALL_STATE(3486)] = 95006, + [SMALL_STATE(3487)] = 95020, + [SMALL_STATE(3488)] = 95034, + [SMALL_STATE(3489)] = 95048, + [SMALL_STATE(3490)] = 95062, + [SMALL_STATE(3491)] = 95076, + [SMALL_STATE(3492)] = 95090, + [SMALL_STATE(3493)] = 95104, + [SMALL_STATE(3494)] = 95118, + [SMALL_STATE(3495)] = 95132, + [SMALL_STATE(3496)] = 95146, + [SMALL_STATE(3497)] = 95160, + [SMALL_STATE(3498)] = 95174, + [SMALL_STATE(3499)] = 95188, + [SMALL_STATE(3500)] = 95202, + [SMALL_STATE(3501)] = 95216, + [SMALL_STATE(3502)] = 95230, + [SMALL_STATE(3503)] = 95244, + [SMALL_STATE(3504)] = 95258, + [SMALL_STATE(3505)] = 95272, + [SMALL_STATE(3506)] = 95286, + [SMALL_STATE(3507)] = 95300, + [SMALL_STATE(3508)] = 95314, + [SMALL_STATE(3509)] = 95328, + [SMALL_STATE(3510)] = 95342, + [SMALL_STATE(3511)] = 95356, + [SMALL_STATE(3512)] = 95370, + [SMALL_STATE(3513)] = 95384, + [SMALL_STATE(3514)] = 95398, + [SMALL_STATE(3515)] = 95412, + [SMALL_STATE(3516)] = 95426, + [SMALL_STATE(3517)] = 95440, + [SMALL_STATE(3518)] = 95454, + [SMALL_STATE(3519)] = 95468, + [SMALL_STATE(3520)] = 95482, + [SMALL_STATE(3521)] = 95496, + [SMALL_STATE(3522)] = 95510, + [SMALL_STATE(3523)] = 95524, + [SMALL_STATE(3524)] = 95538, + [SMALL_STATE(3525)] = 95552, + [SMALL_STATE(3526)] = 95566, + [SMALL_STATE(3527)] = 95580, + [SMALL_STATE(3528)] = 95594, + [SMALL_STATE(3529)] = 95608, + [SMALL_STATE(3530)] = 95622, + [SMALL_STATE(3531)] = 95636, + [SMALL_STATE(3532)] = 95650, + [SMALL_STATE(3533)] = 95664, + [SMALL_STATE(3534)] = 95678, + [SMALL_STATE(3535)] = 95692, + [SMALL_STATE(3536)] = 95706, + [SMALL_STATE(3537)] = 95720, + [SMALL_STATE(3538)] = 95734, + [SMALL_STATE(3539)] = 95748, + [SMALL_STATE(3540)] = 95762, + [SMALL_STATE(3541)] = 95776, + [SMALL_STATE(3542)] = 95790, + [SMALL_STATE(3543)] = 95804, + [SMALL_STATE(3544)] = 95818, + [SMALL_STATE(3545)] = 95832, + [SMALL_STATE(3546)] = 95846, + [SMALL_STATE(3547)] = 95860, + [SMALL_STATE(3548)] = 95874, + [SMALL_STATE(3549)] = 95888, + [SMALL_STATE(3550)] = 95902, + [SMALL_STATE(3551)] = 95916, + [SMALL_STATE(3552)] = 95930, + [SMALL_STATE(3553)] = 95944, + [SMALL_STATE(3554)] = 95958, + [SMALL_STATE(3555)] = 95972, + [SMALL_STATE(3556)] = 95986, + [SMALL_STATE(3557)] = 96000, + [SMALL_STATE(3558)] = 96014, + [SMALL_STATE(3559)] = 96028, + [SMALL_STATE(3560)] = 96042, + [SMALL_STATE(3561)] = 96056, + [SMALL_STATE(3562)] = 96070, + [SMALL_STATE(3563)] = 96084, + [SMALL_STATE(3564)] = 96098, + [SMALL_STATE(3565)] = 96112, + [SMALL_STATE(3566)] = 96126, + [SMALL_STATE(3567)] = 96140, + [SMALL_STATE(3568)] = 96154, + [SMALL_STATE(3569)] = 96168, + [SMALL_STATE(3570)] = 96182, + [SMALL_STATE(3571)] = 96196, + [SMALL_STATE(3572)] = 96210, + [SMALL_STATE(3573)] = 96224, + [SMALL_STATE(3574)] = 96238, + [SMALL_STATE(3575)] = 96252, + [SMALL_STATE(3576)] = 96266, + [SMALL_STATE(3577)] = 96280, + [SMALL_STATE(3578)] = 96294, + [SMALL_STATE(3579)] = 96308, + [SMALL_STATE(3580)] = 96322, + [SMALL_STATE(3581)] = 96336, + [SMALL_STATE(3582)] = 96350, + [SMALL_STATE(3583)] = 96364, + [SMALL_STATE(3584)] = 96378, + [SMALL_STATE(3585)] = 96392, + [SMALL_STATE(3586)] = 96406, + [SMALL_STATE(3587)] = 96420, + [SMALL_STATE(3588)] = 96434, + [SMALL_STATE(3589)] = 96448, + [SMALL_STATE(3590)] = 96462, + [SMALL_STATE(3591)] = 96476, + [SMALL_STATE(3592)] = 96490, + [SMALL_STATE(3593)] = 96504, + [SMALL_STATE(3594)] = 96518, + [SMALL_STATE(3595)] = 96532, + [SMALL_STATE(3596)] = 96546, + [SMALL_STATE(3597)] = 96560, + [SMALL_STATE(3598)] = 96574, + [SMALL_STATE(3599)] = 96588, + [SMALL_STATE(3600)] = 96602, + [SMALL_STATE(3601)] = 96616, + [SMALL_STATE(3602)] = 96630, + [SMALL_STATE(3603)] = 96644, + [SMALL_STATE(3604)] = 96658, + [SMALL_STATE(3605)] = 96672, + [SMALL_STATE(3606)] = 96686, + [SMALL_STATE(3607)] = 96700, + [SMALL_STATE(3608)] = 96714, + [SMALL_STATE(3609)] = 96728, + [SMALL_STATE(3610)] = 96742, + [SMALL_STATE(3611)] = 96756, + [SMALL_STATE(3612)] = 96770, + [SMALL_STATE(3613)] = 96784, + [SMALL_STATE(3614)] = 96788, + [SMALL_STATE(3615)] = 96792, + [SMALL_STATE(3616)] = 96796, + [SMALL_STATE(3617)] = 96800, + [SMALL_STATE(3618)] = 96804, + [SMALL_STATE(3619)] = 96808, }; 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(2427), - [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), + [5] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2483), [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3006), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3040), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2055), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3042), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2314), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3470), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(189), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(807), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3342), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2668), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2427), - [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), - [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3523), - [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2048), - [131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2043), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), - [155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1501), - [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(630), - [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2734), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(10), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1472), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [190] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), - [196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3040), - [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), - [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2053), - [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2055), - [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1041), - [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3609), - [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3042), - [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(815), - [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(178), - [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(838), - [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(822), - [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2729), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(295), - [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3598), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2314), - [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3562), - [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), - [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3554), - [262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), - [265] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2029), - [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1878), - [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2040), - [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3103), - [283] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2668), - [286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), - [289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2648), - [292] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1246), - [295] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), - [298] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), - [301] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1978), - [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), - [307] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), - [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1029), - [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), - [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [83] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [85] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), + [93] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2563), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), + [103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 2, 0, 0), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1484), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(702), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3006), + [142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(5), + [151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(783), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), + [172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3121), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2063), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2061), + [187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), + [190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1032), + [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3497), + [196] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3199), + [199] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(804), + [202] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(189), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(845), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(807), + [211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2567), + [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(370), + [217] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3342), + [220] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), + [223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2381), + [229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3558), + [235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3569), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1509), + [241] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2026), + [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(172), + [250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2064), + [253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [256] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), + [259] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2609), + [262] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), + [265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [268] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), + [271] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [274] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), + [277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1987), + [280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), + [286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), + [292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), + [294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2039), + [302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2053), + [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), + [314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1027), + [316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 2, 0, 0), - [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2669), [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 2, 0, 0), - [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2617), - [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), - [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), - [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), - [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), - [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), - [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2478), - [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2658), - [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), - [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3214), - [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), - [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3005), - [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3321), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), - [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), + [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), + [358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2972), + [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 2, 0, 0), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 2, 0, 0), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1, 0, 0), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1, 0, 0), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), + [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 1, 0, 0), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 1, 0, 0), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 1, 0, 0), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 1, 0, 0), + [392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 1, 0, 0), + [396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 1, 0, 0), + [398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3042), + [410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2631), + [416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), + [426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), + [432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), + [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), + [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), + [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2968), + [502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(68), [523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), - [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(72), - [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3575), - [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(144), - [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3519), - [552] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [555] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(98), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), - [563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(84), - [566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(120), - [569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3379), - [575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2653), - [581] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(155), - [584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(163), - [587] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3519), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [630] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(90), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(95), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(96), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), - [647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2497), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(201), - [656] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3313), - [659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2526), - [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), - [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), - [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2579), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1025), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), - [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), - [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), - [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), - [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), - [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), - [781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), - [783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), - [785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), - [787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), - [789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), - [793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), - [797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), - [799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), - [801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), - [803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), - [805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), - [809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), - [813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), - [817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), - [821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(174), - [827] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), - [831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), - [835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1037), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(206), - [845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(166), - [848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), - [850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2), - [853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(276), - [856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1472), - [859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(243), - [862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(783), - [865] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(850), - [868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), - [871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3036), - [874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3471), - [877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3498), - [880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2425), - [883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(36), - [886] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2617), - [889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1048), - [892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1349), - [895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(824), - [898] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(176), - [901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2598), - [904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(255), - [907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(40), - [910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2794), - [913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2616), - [916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(200), - [919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), - [922] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3103), - [925] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2600), - [928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1214), - [931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2648), - [934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1246), - [937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1477), - [940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3523), - [943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1477), - [946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3340), - [949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), - [953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), - [957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), - [963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), - [969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), - [989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [1021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [1029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), - [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [1045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), + [525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(69), + [528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), + [537] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [540] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), + [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(168), + [549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3313), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [591] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [594] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), + [599] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3474), + [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(156), + [614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2630), + [617] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [620] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(157), + [623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3513), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(111), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), + [637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [640] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(113), + [643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [646] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(183), + [649] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(2584), + [655] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(175), + [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 2, 0, 0), SHIFT_REPEAT(3461), + [661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), + [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), + [738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__token_pattern, 1, 0, 0), + [743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__token_pattern, 1, 0, 0), + [745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_repeat1, 1, 0, 0), + [749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 1, 0, 0), + [753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 2, 0, 0), + [755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 2, 0, 0), + [757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 2, 0, 0), + [759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 2, 0, 0), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3541), + [765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3431), + [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_raw_string_literal, 3, 0, 0), + [771] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string_literal, 3, 0, 0), + [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_literal, 3, 0, 0), + [775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree, 3, 0, 0), + [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree, 3, 0, 0), + [779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), + [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_binding_pattern, 3, 0, 197), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), + [787] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1040), + [790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(171), + [793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(155), + [796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), + [798] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(11), + [801] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(339), + [804] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1478), + [807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(247), + [810] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(783), + [813] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(849), + [816] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(38), + [819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3079), + [822] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3431), + [825] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3470), + [828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2489), + [831] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(41), + [834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2690), + [837] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1045), + [840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1238), + [843] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(825), + [846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(201), + [849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2684), + [852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(342), + [855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(42), + [858] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2972), + [861] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2703), + [864] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(202), + [867] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(37), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3052), + [873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2687), + [876] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1462), + [879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(2563), + [882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1463), + [885] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1475), + [888] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3455), + [891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(1475), + [894] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT(3376), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 4, 0, 0), + [901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 6, 0, 0), + [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_token_tree_pattern_repeat1, 1, 0, 0), + [909] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [912] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__non_special_token_repeat1, 2, 0, 0), SHIFT_REPEAT(208), + [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 4, 0, 0), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 4, 0, 0), + [923] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 5, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 5, 0, 0), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition, 6, 0, 0), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition, 6, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), + [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal, 1, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal, 1, 0, 0), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), + [943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_fragment_specifier, 1, 0, 0), + [947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__non_delim_token, 1, 0, 0), + [951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 2, 0, 0), + [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), + [959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_tree_pattern, 3, 0, 0), + [963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_token_repetition_pattern, 5, 0, 0), + [967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_boolean_literal, 1, 0, 0), + [971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 2, 0, 0), + [989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_delim_token_tree, 3, 0, 0), + [993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__delim_tokens, 1, 0, 0), + [997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_delim_token_tree_repeat1, 1, 0, 0), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [1041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [1043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), [1049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [1053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [1065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), - [1067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [1069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [1071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [1073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [1075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [1077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [1079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), - [1081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [1083] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1037), - [1086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [1089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [1094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2), - [1097] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(276), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1472), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(243), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [1115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3036), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3498), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2425), - [1124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [1127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), - [1130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1048), - [1133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1349), - [1136] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(824), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(176), - [1142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2598), - [1145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(255), - [1148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2794), - [1154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2616), - [1157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [1160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3103), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2600), - [1169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1214), - [1172] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2648), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1246), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3523), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1477), - [1187] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3340), - [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [1196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), - [1198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2596), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2498), - [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), - [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), - [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), - [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), - [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), - [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), - [1248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 98), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [1260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3150), - [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [1270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2436), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), - [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3335), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3286), - [1284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3586), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2351), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3166), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1071), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2194), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [1312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2282), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2624), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), - [1322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), - [1324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 241), - [1326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 241), - [1328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2146), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), - [1344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), - [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2252), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2726), - [1356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [1358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), - [1360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), - [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), - [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), - [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 115), - [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 115), - [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), - [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), - [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), - [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [1384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [1386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [1388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), - [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), - [1400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 145), - [1402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 145), - [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), - [1408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [1410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), - [1412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), - [1414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), - [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), - [1422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [1424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), - [1426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 75), - [1428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 75), - [1430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), - [1432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), - [1434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), - [1436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), - [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), - [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), - [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), - [1446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), - [1448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), - [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), - [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2698), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2393), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), - [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3290), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2646), - [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2324), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [1051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1040), + [1064] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [1067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), + [1069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(155), + [1072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(11), + [1075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(339), + [1078] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1478), + [1081] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(247), + [1084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(783), + [1087] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [1090] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [1093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3079), + [1096] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3470), + [1099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2489), + [1102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [1105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2690), + [1108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1045), + [1111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1238), + [1114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(825), + [1117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [1120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2684), + [1123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(342), + [1126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(42), + [1129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2972), + [1132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2703), + [1135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(202), + [1138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [1141] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3052), + [1144] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2687), + [1147] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1462), + [1150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(2563), + [1153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1463), + [1156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [1159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3455), + [1162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(1475), + [1165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), SHIFT_REPEAT(3376), + [1168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1249), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [1180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), + [1182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [1186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1672), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [1194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 3, 0, 30), + [1196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 3, 0, 30), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2377), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), + [1206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 4, 0, 0), + [1208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 4, 0, 0), + [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2451), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [1230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 5, 0, 0), + [1234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 5, 0, 0), + [1236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 6, 0, 0), + [1238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 6, 0, 0), + [1240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [1242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), + [1244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [1246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [1250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [1258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [1268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2482), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [1276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3170), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3580), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2320), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2281), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [1320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 39), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [1326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [1332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2427), + [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [1338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [1350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 5, 0, 115), + [1352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 5, 0, 115), + [1354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2, 0, 0), + [1356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2, 0, 0), + [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [1362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 3, 0, 0), + [1364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 3, 0, 0), + [1366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_block, 2, 0, 8), + [1368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_block, 2, 0, 8), + [1370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 3, 0, 0), + [1372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 3, 0, 0), + [1374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 2, 0, 8), + [1378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 5, 0, 145), + [1380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 5, 0, 145), + [1382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unsafe_block, 2, 0, 0), + [1386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_expression, 4, 0, 75), + [1388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_expression, 4, 0, 75), + [1390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 4, 0, 0), + [1392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 4, 0, 0), + [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_block, 2, 0, 0), + [1396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_block, 2, 0, 0), + [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_expression, 3, 0, 33), + [1400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_expression, 3, 0, 33), + [1402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_async_block, 2, 0, 0), + [1404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_async_block, 2, 0, 0), + [1406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3361), + [1412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 1, 0, 0), + [1416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 0), + [1420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_block, 2, 0, 0), + [1422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_block, 2, 0, 0), + [1424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_loop_expression, 4, 0, 98), + [1426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_loop_expression, 4, 0, 98), + [1428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_expression, 7, 0, 241), + [1430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_expression, 7, 0, 241), + [1432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [1434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__statement, 1, 0, 0), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), + [1440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [1442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_invocation, 3, 0, 28), + [1446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), + [1448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [1450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_expression, 3, 0, 38), + [1452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_expression, 3, 0, 38), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2508), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), + [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), + [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2824), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2468), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2473), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2433), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), + [1512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [1514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), + [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [1524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(427), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2372), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), [1546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label, 2, 0, 0), [1548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label, 2, 0, 0), - [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), - [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2531), - [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), - [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [1550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 2, 0, 0), + [1554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_parameters, 3, 0, 0), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [1562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [1564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), + [1572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3332), + [1584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), [1590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), - [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [1594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [1596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [1600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2348), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), [1606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2255), - [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), - [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2506), - [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), - [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [1608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [1610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2233), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3131), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2877), + [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2899), + [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), + [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [1636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2299), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2707), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), [1648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 116), [1650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 116), - [1652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 172), - [1654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 172), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), - [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), - [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), - [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), - [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), - [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), - [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), - [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), - [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 110), - [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 110), - [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 180), - [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 180), - [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), - [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), - [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), - [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), - [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), - [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), - [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), - [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 164), - [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 164), - [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), - [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), - [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), - [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), - [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), - [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), - [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), - [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), - [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), - [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), - [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 120), - [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 120), - [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), - [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), - [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), - [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), - [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), - [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 112), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 207), - [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 207), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 159), - [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 159), - [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), - [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), - [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), - [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), - [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 157), - [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 205), - [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 205), - [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), - [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), - [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), - [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), - [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), - [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 79), - [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 79), - [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), - [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), - [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), - [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 111), - [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 111), - [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), - [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), - [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), - [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), - [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), - [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), - [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), - [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), - [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), - [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 201), - [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 201), - [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), - [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), - [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), - [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), - [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), - [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), - [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), - [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), - [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), - [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 229), - [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 229), - [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 188), - [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 230), - [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 230), - [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 231), - [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 113), - [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 113), - [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), - [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), - [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [1872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [1874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [1876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3162), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3108), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2208), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), - [1920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), - [1922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), - [1924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 100), - [1926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 100), - [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), - [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), - [1932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 137), - [1934] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 137), - [1936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), - [1938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), - [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), - [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), - [1944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), - [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), - [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 71), - [1950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 71), - [1952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 84), - [1954] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 84), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 233), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 233), - [1960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 174), - [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 174), - [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [1966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), - [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 234), - [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 234), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 116), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 116), - [1976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), - [1978] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), - [1980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), - [1982] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), - [1984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), - [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 238), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 239), - [1994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 239), - [1996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), - [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), - [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 195), - [2004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 196), - [2006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 196), - [2008] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2012), - [2011] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(754), - [2014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(775), - [2017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2255), - [2020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3307), - [2023] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(825), - [2026] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [2029] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2796), - [2035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2795), - [2038] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3269), - [2041] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3058), - [2044] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2506), - [2047] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), - [2050] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(827), - [2053] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(806), - [2056] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2309), - [2059] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2592), - [2062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2350), - [2065] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2621), - [2068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2621), - [2071] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3500), - [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 195), - [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), - [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), - [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), - [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), - [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), - [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), - [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 183), - [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 183), - [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), - [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), - [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 183), - [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 183), - [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 137), - [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 137), - [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 88), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 88), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 110), - [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 110), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 71), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 71), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 183), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 183), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), - [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 82), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 201), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 201), - [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 204), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 244), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 244), - [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), - [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 174), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 174), - [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), - [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), - [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), - [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), - [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 140), - [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 189), - [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 189), - [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 188), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 209), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 209), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 245), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 245), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), - [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), - [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), - [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), - [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), - [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), - [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), - [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), - [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 85), - [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 85), - [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 72), - [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 72), - [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 182), - [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 182), - [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 181), - [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 181), - [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), - [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), - [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), - [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), - [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), - [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), - [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 247), - [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 247), - [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), - [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), - [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 111), - [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 111), - [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), - [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), - [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), - [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), - [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), - [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 79), - [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 79), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), - [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 278), - [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 278), - [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 273), - [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 128), - [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 128), - [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 131), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 131), - [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 180), - [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 180), - [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 130), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 130), - [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 179), - [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 179), - [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 72), - [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 72), - [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 111), - [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 111), - [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), - [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), - [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), - [2330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 250), - [2332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 250), - [2334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), - [2336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), - [2338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), - [2342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), - [2344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), - [2346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), - [2350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), - [2352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), - [2354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), - [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), - [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), - [2370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), - [2372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 252), - [2374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 252), - [2376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), - [2378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), - [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 277), - [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 277), - [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), - [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), - [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), - [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), - [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), - [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 88), - [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 88), - [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 84), - [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 84), - [2404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), - [2406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), - [2408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 71), - [2410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 71), - [2412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 130), - [2414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 130), - [2416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), - [2418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), - [2420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 84), - [2422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 84), - [2424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 276), - [2428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), - [2430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), - [2432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 215), - [2434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 215), - [2436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), - [2438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), - [2440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), - [2442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), - [2444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), - [2446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), - [2448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), - [2450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), - [2452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), - [2456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 131), - [2458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 131), - [2460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), - [2462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), - [2464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 111), - [2466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 111), - [2468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), - [2470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), - [2472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), - [2474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), - [2476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 169), - [2478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 169), - [2480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), - [2482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), - [2484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 123), - [2486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 123), - [2488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), - [2490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), - [2492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 260), - [2496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 261), - [2498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 261), - [2500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 231), - [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 96), - [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), - [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), - [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), - [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), - [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), - [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), - [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), - [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), - [2526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), - [2528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), - [2530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), - [2534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), - [2536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), - [2538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), - [2540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), - [2542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 120), - [2544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 120), - [2546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 250), - [2548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 250), - [2550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), - [2552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), - [2554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 88), - [2556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 88), - [2558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 63), - [2560] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 63), - [2562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), - [2564] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), - [2566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), - [2568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), - [2570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), - [2572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), - [2574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), - [2578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), - [2580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), - [2582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 233), - [2584] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 233), - [2586] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 264), - [2588] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 264), - [2590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), - [2592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), - [2594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), - [2596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), - [2598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), - [2600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), - [2602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), - [2604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 238), - [2610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 265), - [2612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 265), - [2614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), - [2616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), - [2618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 159), - [2620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 159), - [2622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), - [2624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), - [2626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 93), - [2628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 93), - [2630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 266), - [2634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), - [2636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), - [2638] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [2640] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 157), - [2642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 88), - [2644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 88), - [2646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 156), - [2648] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 156), - [2650] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), - [2652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), - [2654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), - [2658] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3205), - [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1418), - [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2764), - [2667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), - [2669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), - [2672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(850), - [2675] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3162), - [2678] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), - [2681] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2351), - [2684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2258), - [2687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2208), - [2690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3326), - [2693] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3107), - [2696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(840), - [2699] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(798), - [2702] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3465), - [2705] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1950), - [2708] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), - [2711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), - [2714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), - [2717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3316), - [2720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), - [2723] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2214), - [2726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1877), - [2729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2046), - [2732] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), - [2735] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1969), - [2738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3323), - [2741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), - [2745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [2747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 268), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 269), - [2757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 269), - [2759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), - [2763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 254), - [2765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 254), - [2767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 270), - [2769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 270), - [2771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), - [2773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), - [2775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), - [2777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), - [2779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), - [2781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), - [2783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), - [2787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 260), - [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 112), - [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), - [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), - [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 140), - [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), - [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 141), - [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 141), - [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), - [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 272), - [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 272), - [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), - [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), - [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 135), - [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 135), - [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), - [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), - [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), - [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 218), - [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 218), - [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), - [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), - [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), - [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), - [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 71), - [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 71), - [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), - [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), - [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), - [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), - [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 73), - [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 135), - [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 135), - [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), - [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), - [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 74), - [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 74), - [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), - [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), - [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 266), - [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), - [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), - [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), - [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), - [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), - [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), - [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 88), - [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 88), - [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), - [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), - [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 63), - [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 63), - [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 73), - [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 135), - [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 135), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [1656] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 172), + [1658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 172), + [1660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [1662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 29), + [1664] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 29), + [1666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 54), + [1668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 54), + [1670] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 6, 0, 6), + [1672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 6, 0, 6), + [1674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 4, 0, 0), + [1678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 112), + [1680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 112), + [1682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 156), + [1684] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 156), + [1686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 157), + [1688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 157), + [1690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 158), + [1692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 158), + [1694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 159), + [1696] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 159), + [1698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 160), + [1700] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 160), + [1702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 161), + [1704] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 161), + [1706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 162), + [1708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 162), + [1710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 120), + [1712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 120), + [1714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 163), + [1716] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 163), + [1718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 164), + [1720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 164), + [1722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 165), + [1724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 165), + [1726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 166), + [1728] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 166), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 167), + [1732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 167), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 123), + [1736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 123), + [1738] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 168), + [1740] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 168), + [1742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 169), + [1744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 169), + [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 170), + [1748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 170), + [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 6, 0, 171), + [1752] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 6, 0, 171), + [1754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 6, 0, 174), + [1756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 6, 0, 174), + [1758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 3, 0, 29), + [1760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 3, 0, 29), + [1762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 4, 0, 0), + [1766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 72), + [1768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 72), + [1770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 179), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 179), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 130), + [1776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 130), + [1778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 180), + [1780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 180), + [1782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 6, 0, 131), + [1784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 6, 0, 131), + [1786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 132), + [1788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 132), + [1790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 6, 0, 181), + [1792] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 6, 0, 181), + [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 182), + [1796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 182), + [1798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 183), + [1800] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 183), + [1802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 184), + [1804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 184), + [1806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), + [1808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 6, 0, 185), + [1810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 188), + [1812] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 188), + [1814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 189), + [1816] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 189), + [1818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 140), + [1820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 140), + [1822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 190), + [1824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 190), + [1826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 6, 0, 174), + [1828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 6, 0, 174), + [1830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 6, 0, 183), + [1832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 6, 0, 183), + [1834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 88), + [1836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 88), + [1838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 137), + [1840] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 137), + [1842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 6, 0, 183), + [1844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 6, 0, 183), + [1846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 6, 0, 191), + [1848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 6, 0, 191), + [1850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 6, 0, 183), + [1852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 6, 0, 183), + [1854] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 192), + [1856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 192), + [1858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 193), + [1860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 193), + [1862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 6, 0, 194), + [1864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 6, 0, 194), + [1866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 6, 0, 195), + [1868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 6, 0, 195), + [1870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 6, 0, 196), + [1872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 6, 0, 196), + [1874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 22), + [1876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 22), + [1878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 3, 0, 31), + [1880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 3, 0, 31), + [1882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 3, 0, 32), + [1884] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 3, 0, 32), + [1886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 54), + [1888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 54), + [1890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 7, 0, 6), + [1892] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 7, 0, 6), + [1894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 6), + [1896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 6), + [1898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 7, 0, 201), + [1900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 7, 0, 201), + [1902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 5, 0, 0), + [1906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 3, 0, 34), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 3, 0, 34), + [1910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 204), + [1912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 204), + [1914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 205), + [1916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 205), + [1918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 157), + [1920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 157), + [1922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 206), + [1924] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 206), + [1926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 159), + [1928] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 159), + [1930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 207), + [1932] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 207), + [1934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 161), + [1936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 161), + [1938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 208), + [1940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 208), + [1942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 209), + [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 209), + [1946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 210), + [1948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 210), + [1950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 211), + [1952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 211), + [1954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 212), + [1956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 212), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 164), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 164), + [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 213), + [1964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 213), + [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 166), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 166), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 214), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 214), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 215), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 215), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 216), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 216), + [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 7, 0, 217), + [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 7, 0, 217), + [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 218), + [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 218), + [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 7, 0, 201), + [1992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 7, 0, 201), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 5, 0, 0), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 180), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 180), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 221), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 221), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 222), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 222), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 223), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 223), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 224), + [2016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 224), + [2018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 225), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 225), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 226), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 226), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 227), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 227), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 7, 0, 228), + [2032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 7, 0, 228), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 229), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 229), + [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 188), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 188), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 230), + [2044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 230), + [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 231), + [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 231), + [2050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 232), + [2052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 232), + [2054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 7, 0, 137), + [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 7, 0, 137), + [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 191), + [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 191), + [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 7, 0, 233), + [2064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 7, 0, 233), + [2066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 234), + [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 234), + [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 235), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 235), + [2074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 7, 0, 236), + [2076] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 7, 0, 236), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 7, 0, 237), + [2082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 238), + [2084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 238), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 239), + [2088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 239), + [2090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 7, 0, 195), + [2092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 7, 0, 195), + [2094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 7, 0, 240), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 7, 0, 240), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 3, 0, 7), + [2100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 3, 0, 7), + [2102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 6, 0, 0), + [2106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 204), + [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 204), + [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 244), + [2112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 244), + [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 209), + [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 209), + [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 245), + [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 245), + [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 211), + [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 211), + [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 246), + [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 246), + [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 247), + [2132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 247), + [2134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 248), + [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 248), + [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 8, 0, 249), + [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 8, 0, 249), + [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 250), + [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 250), + [2146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 6, 0, 0), + [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 221), + [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 221), + [2154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 252), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 252), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 223), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 223), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 253), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 253), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 254), + [2168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 254), + [2170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 255), + [2172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 255), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 256), + [2176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 256), + [2178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 257), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 257), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 225), + [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 225), + [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 258), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 258), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 227), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 227), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 8, 0, 259), + [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 8, 0, 259), + [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 260), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 260), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 261), + [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 261), + [2206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 231), + [2208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 231), + [2210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 262), + [2212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 262), + [2214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 8, 0, 250), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 8, 0, 250), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 8, 0, 263), + [2220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 8, 0, 263), + [2222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 8, 0, 233), + [2224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 8, 0, 233), + [2226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 8, 0, 264), + [2228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 8, 0, 264), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 238), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 238), + [2234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 265), + [2236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 265), + [2238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 8, 0, 266), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 8, 0, 266), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 8, 0, 267), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 8, 0, 267), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 3, 0, 29), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 3, 0, 29), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 9, 0, 268), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 9, 0, 268), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 9, 0, 269), + [2256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 9, 0, 269), + [2258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 254), + [2260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 254), + [2262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 270), + [2264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 270), + [2266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 256), + [2268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 256), + [2270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), + [2272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 5, 0, 144), + [2274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 260), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 260), + [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 272), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 272), + [2282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 273), + [2286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 274), + [2288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 274), + [2290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 9, 0, 266), + [2292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 9, 0, 266), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 9, 0, 275), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 9, 0, 275), + [2298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 3, 0, 7), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 3, 0, 7), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 10, 0, 276), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 10, 0, 276), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 10, 0, 277), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 10, 0, 277), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 10, 0, 273), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 10, 0, 273), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 10, 0, 278), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 10, 0, 278), + [2318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 3, 0, 29), + [2320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 3, 0, 29), + [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 3, 0, 37), + [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 3, 0, 37), + [2326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 2, 0, 0), + [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [2334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [2338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [2340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [2342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [2344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), + [2346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2201), + [2348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [2350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), + [2352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [2354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), + [2356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [2358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2955), + [2360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), + [2362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3316), + [2364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [2366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [2368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2203), + [2370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1880), + [2372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), + [2374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3324), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3324), + [2380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 0), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 3, 0, 44), + [2388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 54), + [2390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 54), + [2392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, 0, 6), + [2396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 1, 0, 0), + [2400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 0), + [2404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [2406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_foreign_mod_item, 2, 0, 8), + [2410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_attribute_item, 4, 0, 0), + [2414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2, 0, 0), + [2418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 2, 0, 0), + [2422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 71), + [2424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 71), + [2426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 72), + [2428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 72), + [2430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 4, 0, 73), + [2432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 4, 0, 73), + [2434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 4, 0, 74), + [2436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 4, 0, 74), + [2438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 79), + [2440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 79), + [2442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 80), + [2444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 80), + [2446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 22), + [2448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 22), + [2450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 81), + [2452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 81), + [2454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 4, 0, 82), + [2456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 4, 0, 82), + [2458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 2, 0, 0), + [2462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 29), + [2464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 29), + [2466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 71), + [2468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 71), + [2470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 84), + [2472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 84), + [2474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 72), + [2476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 72), + [2478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 71), + [2480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 71), + [2482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 85), + [2484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 85), + [2486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 72), + [2488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 72), + [2490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 7), + [2492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 7), + [2494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 86), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 86), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 4, 0, 84), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 4, 0, 84), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 71), + [2504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 71), + [2506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 72), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 72), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 63), + [2512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 63), + [2514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 4, 0, 87), + [2516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 4, 0, 87), + [2518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 4, 0, 88), + [2520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 4, 0, 88), + [2522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), + [2524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extern_crate_declaration, 4, 0, 93), + [2526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [2528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration_list, 3, 0, 0), + [2532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3108), + [2535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1374), + [2538] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3008), + [2541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), + [2543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3532), + [2546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [2549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3039), + [2552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3280), + [2555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), + [2558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2240), + [2561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2201), + [2564] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3604), + [2567] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3281), + [2570] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(841), + [2573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(817), + [2576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3314), + [2579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1964), + [2582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2955), + [2585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3315), + [2588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3316), + [2591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3317), + [2594] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2957), + [2597] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2203), + [2600] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), + [2603] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2068), + [2606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), + [2609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1982), + [2612] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3324), + [2615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 4, 0, 88), + [2617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 4, 0, 88), + [2619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 93), + [2621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 93), + [2623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mod_item, 4, 0, 94), + [2625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mod_item, 4, 0, 94), + [2627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 95), + [2629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 95), + [2631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 4, 0, 88), + [2633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 4, 0, 88), + [2635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [2637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 4, 0, 88), + [2639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 4, 0, 88), + [2641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_declaration, 4, 0, 96), + [2643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_use_declaration, 4, 0, 96), + [2645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 54), + [2649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1, 0, 0), + [2653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 5, 0, 6), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_inner_attribute_item, 5, 0, 0), + [2661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_item, 5, 0, 110), + [2663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_const_item, 5, 0, 110), + [2665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_variant_list, 3, 0, 0), + [2669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 111), + [2671] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 111), + [2673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 112), + [2675] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 112), + [2677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 113), + [2679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 113), + [2681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 73), + [2683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 73), + [2685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 114), + [2687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 114), + [2689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 120), + [2691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 120), + [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 121), + [2695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 121), + [2697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 79), + [2699] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 79), + [2701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 122), + [2703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 122), + [2705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 123), + [2707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 123), + [2709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 124), + [2711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 124), + [2713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 100), + [2715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 100), + [2717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 116), + [2719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 116), + [2721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_declaration, 5, 0, 125), + [2723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_let_declaration, 5, 0, 125), + [2725] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2007), + [2728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(754), + [2731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(776), + [2734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2233), + [2737] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3131), + [2740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(820), + [2743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [2746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(849), + [2749] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2877), + [2752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2899), + [2755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3157), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [2761] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2585), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2117), + [2767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(821), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(824), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2299), + [2776] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2617), + [2779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2360), + [2782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(2707), + [2788] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 2, 0, 0), SHIFT_REPEAT(3494), + [2791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_static_item, 5, 0, 110), + [2793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_static_item, 5, 0, 110), + [2795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_declaration_list, 3, 0, 0), + [2799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 29), + [2801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 29), + [2803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 72), + [2805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 72), + [2807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 111), + [2809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 111), + [2811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 128), + [2813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 128), + [2815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 111), + [2817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 111), + [2819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 129), + [2821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 129), + [2823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_item, 5, 0, 130), + [2825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_item, 5, 0, 130), + [2827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 86), + [2829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 86), + [2831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 84), + [2833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 84), + [2835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_associated_type, 5, 0, 131), + [2837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_associated_type, 5, 0, 131), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 111), + [2841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 111), + [2843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 132), + [2845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 132), + [2847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 133), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 133), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 63), + [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 63), + [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 5, 0, 134), + [2857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 5, 0, 134), + [2859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 135), + [2861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 135), + [2863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 136), + [2865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 136), + [2867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 137), + [2869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 137), + [2871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature_item, 5, 0, 140), + [2873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature_item, 5, 0, 140), + [2875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_item, 5, 0, 141), + [2877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_item, 5, 0, 141), + [2879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 135), + [2881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 135), + [2883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_item, 5, 0, 137), + [2885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_item, 5, 0, 137), + [2887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 88), + [2889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 88), + [2891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 135), + [2893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 135), + [2895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 142), + [2897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 142), + [2899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_item, 5, 0, 137), + [2901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_item, 5, 0, 137), + [2903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 135), + [2905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 135), + [2907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_item, 5, 0, 137), + [2909] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_item, 5, 0, 137), + [2911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_item, 5, 0, 143), + [2913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_trait_item, 5, 0, 143), + [2915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_impl_item, 9, 0, 271), + [2917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_impl_item, 9, 0, 271), [2919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1910), [2921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2793), - [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), - [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), - [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), - [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), - [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2739), - [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2754), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), - [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2244), - [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2367), - [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2434), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2085), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), - [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2760), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2783), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2112), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2753), - [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2808), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [3053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [3059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [3063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), - [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(958), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2882), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [3095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), - [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), - [3107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [3113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3074), - [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2515), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), - [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3535), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [3133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [3143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3195), - [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [3151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [3157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3224), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [3173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [3175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [3185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [3193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [3195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [2923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [2925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), + [2929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [2931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [2933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), + [2935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2697), + [2937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [2939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2494), + [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), + [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), + [2945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), + [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), + [2949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2000), + [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), + [2959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [2961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), + [2963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), + [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [2971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), + [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [2975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), + [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [2987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2097), + [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), + [2991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [2995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3578), + [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [3003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2392), + [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2104), + [3017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), + [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), + [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2110), + [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), + [3027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [3029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [3031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [3035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2084), + [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), + [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2099), + [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2469), + [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [3047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), + [3049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [3051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), + [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [3057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), + [3067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [3069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [3075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1054), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), + [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [3099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), + [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1090), + [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [3115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [3123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [3125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [3127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [3129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [3131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [3139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [3141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [3145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), + [3147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [3155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [3159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [3161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [3165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [3167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [3171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), + [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [3179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [3181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [3183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [3187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [3189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [3197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [3199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), [3201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), [3203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), [3205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 1, 0, 0), @@ -190414,1979 +190461,1981 @@ static const TSParseActionEntry ts_parse_actions[] = { [3211] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_tuple_expression_repeat1, 2, 0, 0), [3213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lifetime, 2, 0, 0), [3215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lifetime, 2, 0, 0), - [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [3217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), [3219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 0), [3221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 0), - [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2045), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [3223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [3225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2046), + [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), [3231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 2, 0, 1), [3233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 2, 0, 1), - [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [3235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [3237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), [3241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), [3245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 5), - [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2670), + [3247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2497), + [3249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), - [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 24), + [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [3259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 24), + [3261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 24), [3263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 104), [3265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 104), - [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), - [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), - [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 17), + [3271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), + [3275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [3279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), + [3281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), [3283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 4, 0, 105), [3285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 4, 0, 105), - [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), - [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 46), - [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), - [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), - [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [3307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), - [3311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), - [3313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), - [3315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), - [3317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [3319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), - [3323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [3327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_type, 2, 0, 25), + [3291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [3295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), + [3299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), + [3301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1, 0, 0), + [3303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dynamic_type, 2, 0, 25), + [3307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_type_identifier, 3, 0, 41), + [3311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), + [3315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_except_range, 1, 0, 1), + [3319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [3321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [3323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [3325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2049), + [3327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), [3329] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), [3331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), - [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3058), - [3336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), - [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), - [3342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), - [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), - [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3579), - [3352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), - [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), - [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), - [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), - [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), - [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), - [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), - [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), - [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), - [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), - [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), - [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), - [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), - [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(999), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), - [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), - [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 64), - [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 64), - [3408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), - [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), - [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), - [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), - [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), - [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), - [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), - [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), - [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), - [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), - [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), - [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), - [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), - [3448] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3542), - [3451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [3455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [3457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [3459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [3463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), - [3471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), - [3475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), - [3477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [3483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [3485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3298), - [3489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2923), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [3497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3128), - [3501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), - [3503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 2, 0, 0), SHIFT_REPEAT(3298), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 4, 0, 0), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 4, 0, 0), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 1, 0, 0), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 41), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4, 0, 0), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 19), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 19), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 66), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 66), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), + [3364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), + [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), + [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), + [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 2, 0, 0), + [3374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [3376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [3382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [3386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2836), + [3388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), + [3390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5, 0, 0), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3, 0, 0), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 23), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 23), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), + [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), + [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 3, 0, 0), + [3422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [3426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [3430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [3432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), + [3434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [3438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [3440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat1, 2, 0, 0), SHIFT_REPEAT(3536), + [3443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 5, 0, 0), + [3445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 5, 0, 0), + [3447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 67), + [3449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 67), + [3451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), + [3453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [3455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 17), + [3457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 20), + [3459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 20), + [3461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 6, 0, 0), + [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [3467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [3469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, 0, 21), + [3471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, 0, 21), + [3473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [3477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 3, 0, 0), + [3479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [3481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), + [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3611), + [3491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2881), + [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [3495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [3499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), + [3501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), + [3503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), + [3505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), [3507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameters, 6, 0, 0), [3509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameters, 6, 0, 0), - [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 3, 0, 46), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 49), - [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 49), - [3517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_expression, 3, 0, 50), - [3519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_expression, 3, 0, 50), - [3521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [3525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [3527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [3529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [3531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [3533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [3535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [3537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [3539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [3541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [3543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 119), - [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), - [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 127), - [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), - [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), - [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 99), - [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 99), - [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), - [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 97), - [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), - [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), - [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), - [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), - [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 150), - [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 150), - [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), - [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), - [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), - [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), - [3595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 106), - [3597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 106), - [3599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 152), - [3601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 152), - [3603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 103), - [3605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 103), - [3607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), - [3609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), - [3611] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 102), - [3613] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 102), - [3615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), - [3619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), - [3623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), - [3625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), - [3627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), - [3629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), - [3631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), - [3635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 146), - [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 146), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), - [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), - [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 83), - [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), - [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 76), - [3655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), - [3657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), - [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), - [3663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 63), - [3665] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 63), - [3667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 63), - [3671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 62), - [3673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 62), - [3675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), - [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), - [3683] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 76), - [3687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 172), - [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 172), - [3691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 172), - [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), - [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 4, 0, 0), + [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3, 0, 64), + [3515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3, 0, 64), + [3517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), + [3519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 107), + [3523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 107), + [3525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), + [3527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 27), + [3529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 27), + [3531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [3533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 2, 0, 26), + [3535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 2, 0, 26), + [3537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [3539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_type_identifier_in_expression_position, 2, 0, 7), + [3541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [3543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), + [3545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), + [3547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3549] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), + [3551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), + [3553] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), + [3555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 175), + [3557] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 175), + [3559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3561] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), + [3563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 6, 0, 0), + [3565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 6, 0, 0), + [3567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3, 0, 0), + [3571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), + [3575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), + [3577] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), + [3581] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_higher_ranked_trait_bound, 3, 0, 79), + [3583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3, 0, 62), + [3585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3, 0, 62), + [3587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pointer_type, 3, 0, 63), + [3589] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_pointer_type, 3, 0, 63), + [3591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 3, 0, 63), + [3593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 3, 0, 63), + [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [3597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [3601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), + [3603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), + [3605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_expression, 2, 0, 0), + [3607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_expression, 2, 0, 0), + [3609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), + [3613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), + [3615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), + [3617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), + [3619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), + [3621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), + [3623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), + [3625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_bounded_type, 3, 0, 0), + [3629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), + [3633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), + [3637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), + [3639] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), + [3641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 76), + [3643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 76), + [3645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3, 0, 0), + [3649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), + [3651] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), + [3653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [3655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 116), + [3657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 116), + [3659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 116), + [3661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 83), + [3663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 83), + [3665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), + [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [3669] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), + [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [3673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), + [3675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [3677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3679] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 6, 0, 0), + [3681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 119), + [3683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 119), + [3685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), + [3689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 146), + [3691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 146), + [3693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 6, 0, 0), + [3695] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 6, 0, 0), [3697] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 76), [3699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 76), [3701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 0), [3703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 0), - [3705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), - [3709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 2, 0, 22), - [3711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 2, 0, 22), - [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_removed_trait_bound, 2, 0, 0), - [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), - [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_type, 2, 0, 0), - [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 119), - [3725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2660), - [3727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), - [3735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [3737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2628), - [3739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2643), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [3743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 0), - [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unit_expression, 2, 0, 0), - [3751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2636), - [3753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3755] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 6, 0, 175), - [3757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), - [3759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), - [3761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [3769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2901), - [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), - [3775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 6, 0, 119), - [3779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 5, 0, 116), - [3781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 5, 0, 116), - [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 5, 0, 116), - [3785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), - [3787] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), - [3789] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 4, 0, 0), - [3791] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 4, 0, 0), - [3793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3795] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 4, 0, 0), - [3797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3799] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), - [3801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 200), - [3803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 200), - [3805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_function, 3, 0, 42), - [3807] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_function, 3, 0, 42), - [3809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), - [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), - [3815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), - [3819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), - [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 3, 0, 0), - [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 3, 0, 0), - [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), - [3831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), - [3833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), - [3835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), - [3839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), - [3841] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), - [3843] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), - [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, 0, 47), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [3851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2, 0, 0), - [3853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2, 0, 0), - [3855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), - [3859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 7, 0, 0), - [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 7, 0, 0), - [3865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 7, 0, 0), - [3867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 10), - [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), - [3877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_struct_expression, 2, 0, 11), - [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, 0, 12), - [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, 0, 12), + [3705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 5, 0, 0), + [3709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5, 0, 119), + [3711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5, 0, 119), + [3713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 3, 0, 0), + [3717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 2, 0, 0), + [3719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 2, 0, 0), + [3721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 4, 0, 172), + [3723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 4, 0, 172), + [3725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 172), + [3727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4, 0, 0), + [3731] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_type, 4, 0, 102), + [3733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_type, 4, 0, 102), + [3735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 103), + [3737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 103), + [3739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 3, 0, 35), + [3741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 3, 0, 35), + [3743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 106), + [3745] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 106), + [3747] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3, 0, 0), + [3749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3, 0, 0), + [3751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_expression, 4, 0, 0), + [3753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_expression, 4, 0, 0), + [3755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [3757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [3759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [3761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2682), + [3763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 4, 0, 97), + [3765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 4, 0, 97), + [3767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4, 0, 108), + [3769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4, 0, 108), + [3771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3773] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 2, 0, 13), + [3775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [3777] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_cast_expression, 3, 0, 51), + [3779] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3781] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_expression, 5, 0, 0), + [3783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3, 0, 0), + [3787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3789] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, 0, 0), + [3791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 99), + [3793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 99), + [3795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 5, 0, 0), + [3797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 5, 0, 0), + [3799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_expression, 3, 0, 0), + [3801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_expression, 3, 0, 0), + [3803] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 2, 0, 4), + [3807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3809] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reference_expression, 3, 0, 18), + [3811] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 76), + [3813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 76), + [3815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 0), + [3819] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4, 0, 119), + [3821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4, 0, 119), + [3823] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 5, 0, 0), + [3825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 5, 0, 0), + [3827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 52), + [3829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5, 0, 0), + [3833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 2, 0, 0), + [3837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_closure_expression, 5, 0, 127), + [3839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_closure_expression, 5, 0, 127), + [3841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 5, 0, 150), + [3843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 5, 0, 150), + [3845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_expression, 2, 0, 0), + [3849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 152), + [3851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 152), + [3853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 153), + [3855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 153), + [3857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 5, 0, 154), + [3859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 5, 0, 154), + [3861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), + [3863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type_with_turbofish, 3, 0, 43), + [3865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_never_type, 1, 0, 0), + [3867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_never_type, 1, 0, 0), + [3869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_field_initializer_list, 4, 0, 0), + [3873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 6, 0, 200), + [3875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 6, 0, 200), + [3877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_declaration_list_repeat1, 1, 0, 0), + [3881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4, 0, 0), + [3883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4, 0, 0), [3885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), [3887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_block_repeat1, 1, 0, 0), - [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), [3891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), [3893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_arm_repeat1, 1, 0, 0), [3895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_expression, 3, 0, 0), - [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [3897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [3899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [3901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [3905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [3907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [3909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), [3913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_expression, 3, 0, 0), - [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [3919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), - [3927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), - [3931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), - [3935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), - [3937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), - [3943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1911), - [3945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), - [3949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [3951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), - [3953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [3957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [3959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2667), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), - [3965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2369), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), - [3979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2650), - [3984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), - [3986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3136), - [3989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [3991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), - [3993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2666), + [3915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [3917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [3919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_expression, 3, 0, 0), + [3921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_expression, 3, 0, 0), + [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2521), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [3933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_expression, 2, 0, 0), + [3935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_expression, 2, 0, 0), + [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [3939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [3941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), + [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [3945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [3947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), + [3949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_compound_assignment_expr, 3, 0, 47), + [3951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [3953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), + [3955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2, 0, 0), + [3959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [3961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, 0, 48), + [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2042), + [3971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2364), + [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2498), + [3977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [3979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), + [3981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(3247), + [3984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_visibility_modifier, 1, 0, 0), SHIFT(2667), + [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), + [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [3991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 4, 0, 0), + [3993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 4, 0, 0), [3995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 126), [3997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 126), [3999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_visibility_modifier, 5, 0, 0), [4001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_visibility_modifier, 5, 0, 0), - [4003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(343), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), - [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [4031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2662), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [4079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3281), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [4091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [4099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), - [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2471), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [4135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 202), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [4149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), - [4151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [4155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), - [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [4167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), - [4169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [4171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [4175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [4177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [4181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [4183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), - [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [4199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), - [4211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), - [4213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), - [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), - [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), - [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2398), - [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2411), - [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2394), - [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2394), - [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), - [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [4245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), - [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [4251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 138), - [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), - [4255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), - [4257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 116), - [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), - [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 186), - [4265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 116), - [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), - [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [4281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 172), - [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), - [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2605), - [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), - [4299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), - [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [4311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 155), - [4313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 243), - [4315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 109), - [4317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), - [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [4335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), - [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), - [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2571), - [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), - [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3507), - [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2700), - [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2516), - [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), - [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2723), - [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2674), - [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2701), - [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), - [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [4007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [4009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [4017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [4021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [4023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [4027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [4041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [4077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), + [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), + [4087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [4091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), + [4093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 3, 0, 0), + [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2422), + [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3071), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), + [4103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2405), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), + [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [4127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [4129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__let_chain, 3, 0, 0), + [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2935), + [4137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [4141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [4147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [4153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [4155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [4157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), + [4159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [4161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [4163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [4165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [4167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_base_field_initializer, 2, 0, 0), + [4169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [4171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_let_condition, 4, 0, 116), + [4173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [4177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 138), + [4179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 3, 0, 139), + [4181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 0), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [4185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [4187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), + [4189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [4191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [4193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [4195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [4197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [4201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [4203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [4205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [4217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 155), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 3, 0, 172), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [4241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2462), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [4245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), + [4255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [4261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 186), + [4263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_initializer, 4, 0, 187), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1334), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2695), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2704), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2706), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [4287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 202), + [4289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 4, 0, 203), + [4291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), + [4299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_last_match_arm, 4, 0, 116), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), + [4309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 5, 0, 243), + [4311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [4317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 109), + [4319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 3, 0, 18), + [4321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), + [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [4341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [4343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [4355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [4367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2728), + [4381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [4385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [4389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [4391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [4393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), + [4395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), + [4397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2556), + [4399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [4403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2725), + [4405] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), + [4407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), [4409] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 6, 0, 0), [4411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 6, 0, 0), - [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 5, 0, 0), - [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2239), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2240), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2235), - [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), - [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3199), - [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), - [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [4413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_lifetimes, 4, 0, 0), + [4417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2267), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3135), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3106), + [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3309), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3093), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [4443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2596), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [4451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), [4453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), - [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [4455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [4457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), [4459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 0), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [4469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), - [4471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), - [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2351), - [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2271), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3322), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3317), - [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), - [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), - [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3271), - [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2696), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), - [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2710), - [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2545), - [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), - [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2708), - [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [4578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [4580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), + [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), + [4473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [4483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3409), + [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2050), + [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [4499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [4501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3353), + [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3349), + [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3599), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3355), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [4517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [4519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 1), + [4521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__pattern, 1, 0, 1), + [4523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2592), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [4527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [4543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 5), REDUCE(sym__pattern, 1, 0, 0), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), + [4548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [4550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [4554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [4556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), + [4560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), + [4568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(997), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3205), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [4582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), + [4588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), + [4590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), [4593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 16), REDUCE(sym_scoped_type_identifier, 3, 0, 17), - [4596] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 40), REDUCE(sym_scoped_type_identifier, 3, 0, 41), - [4599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), - [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), - [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [4608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [4614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3140), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [4662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), - [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), - [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), - [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3350), - [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2490), - [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), - [4698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2333), - [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), - [4702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), - [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), - [4712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), - [4714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [4728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 55), - [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [4746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 59), - [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [4758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), - [4760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 61), - [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 56), - [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [4774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), - [4780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), - [4782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [4784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), - [4786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), - [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), - [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), - [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), - [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), - [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 56), + [4596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4598] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__literal_pattern, 1, 0, 0), + [4600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 2, 0, 6), REDUCE(sym_scoped_type_identifier, 2, 0, 7), + [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [4611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1216), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [4617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_scoped_identifier, 3, 0, 45), REDUCE(sym_scoped_type_identifier, 3, 0, 46), + [4620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_negative_literal, 2, 0, 0), + [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), + [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), + [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2417), + [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), + [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), + [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [4640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [4642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2416), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2418), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1001), + [4664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 1), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [4672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), + [4674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 59), + [4676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 59), + [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), + [4682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [4686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), + [4688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3386), + [4690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 0), + [4694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3343), + [4702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 1, 0, 0), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2306), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2298), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), + [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [4724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_function_modifiers_repeat1, 1, 0, 0), + [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3448), + [4730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_range_pattern, 3, 0, 55), + [4736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_range_pattern, 3, 0, 55), + [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(966), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2460), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [4752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 57), + [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 3, 0, 0), + [4756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), + [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 3, 0, 0), + [4760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 56), + [4762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), + [4764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), + [4766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 2, 0, 0), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_captured_pattern, 3, 0, 0), + [4770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [4778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3485), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3606), + [4788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 56), + [4790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reference_pattern, 2, 0, 0), + [4792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 61), + [4794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), + [4796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 4, 0, 0), [4798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 3, 0, 61), - [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 2, 0, 0), - [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), - [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 5, 0, 0), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), - [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 56), - [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 5, 0, 0), - [4812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 56), - [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [4818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 57), - [4820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 61), - [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), - [4824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), - [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 56), - [4828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 61), - [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 56), - [4834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_remaining_field_pattern, 1, 0, 0), - [4836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), - [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), - [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 56), - [4848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), - [4850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [4852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), - [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), - [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), - [4860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [4862] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [4867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), - [4869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(841), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [4874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(80), - [4877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), - [4879] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [4882] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), - [4885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), - [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2702), - [4901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3134), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), - [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [4975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [4999] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2351), - [5002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), - [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2194), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [5011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [5017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [5019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3509), - [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1000), - [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), - [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [5047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3568), - [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [5065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2101), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), - [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), - [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), - [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), - [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3325), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2117), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), - [5117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [5125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), - [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [5129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [5139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), - [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), - [5147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), - [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), - [5153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), - [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [5157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), - [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 70), - [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), - [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), - [5173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2806), - [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), - [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), - [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2811), - [5185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [5189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), - [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), - [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3332), - [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3327), - [5203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [5205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3288), - [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), - [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [5219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), - [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [5223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), - [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), - [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [5247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [5249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [5253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 56), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3381), - [5260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3239), - [5262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), - [5264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [5266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [5268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [5270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [5272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), - [5276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), - [5280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [5286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), - [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [5300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 56), - [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), - [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 63), - [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [5367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), - [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3539), - [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), - [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [5379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 251), - [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), - [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [5385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), - [5388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), - [5391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 76), - [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [5395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), - [5397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [5401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), - [5403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), - [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [5407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), - [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2465), - [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), - [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(552), - [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [5429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), - [5431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [5433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [5435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), - [5437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [5439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2634), - [5441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [5443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [5445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3495), - [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [5451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [5453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [5455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [5457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [5459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [5465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [5467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1952), - [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(403), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3594), - [5481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 251), - [5483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 102), - [5485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), - [5487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2020), - [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), - [5493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [5495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [5497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [5499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 176), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [5507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), - [5511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 219), - [5513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 63), - [5515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), - [5517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [5519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), - [5521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [5523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [5525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), - [5527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [5529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [5535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), - [5543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [5549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 219), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [5553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 176), - [5555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 102), - [5557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), - [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), - [5561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), - [5563] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1479), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [5572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 119), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [5588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), - [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [5614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [5620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [5624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [5634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), - [5636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(807), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 100), - [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3560), - [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), - [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2856), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), - [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(533), - [5658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 198), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [5666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [5668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [5670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [5680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), - [5682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [5684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 77), - [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), - [5692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2781), - [5696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [5704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [5712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [5724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), - [5726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), - [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [5732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [5750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3142), - [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [5764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [5766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), - [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [5776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), - [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [5784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2544), - [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [5792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [5797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), - [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), - [5811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [5823] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [5828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), - [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2098), - [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), - [5838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [5840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 147), - [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2742), - [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), - [5860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [5874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), - [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [5882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), - [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), - [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3041), - [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 58), - [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2257), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2863), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), - [5936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), - [5944] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(793), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2740), - [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 220), - [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), - [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), - [5995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [6005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [6007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), - [6011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 102), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 242), - [6015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [6017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [6019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [6021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [6029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [6037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), - [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), - [6047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 63), - [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), - [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1302), - [6063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), - [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 199), - [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), - [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), - [6073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), - [6075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), - [6077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2188), - [6080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 178), - [6082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), - [6084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), SHIFT_REPEAT(779), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2192), - [6109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2238), - [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), - [6123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2970), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 110), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [6145] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), - [6151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2204), - [6154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), - [6156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3256), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [6163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(410), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [6168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), - [6170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2335), - [6173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), - [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 148), - [6179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [6185] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(442), - [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [6204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3094), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [6224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), - [6226] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2128), - [6229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), - [6233] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1880), - [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [6244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), - [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [6260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [6264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), - [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [6292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 77), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), - [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), - [6304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), - [6306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2049), - [6309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), - [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), - [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [6323] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 117), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [6335] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), - [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [6347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1310), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), - [6361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), - [6363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(978), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2284), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), - [6376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 101), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [6398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), - [6400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(762), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [6427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), - [6429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1360), - [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), - [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), - [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [6439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), - [6441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), - [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 90), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [6457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 89), - [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), - [6469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), - [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1075), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), - [6483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [6491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [6499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [6509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), - [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [6515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [6523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), - [6525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [6529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), - [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), - [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), - [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), - [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), - [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [6561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2034), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2691), - [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), - [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2688), - [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), - [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), - [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), - [6597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), - [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), - [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), - [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), - [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2165), - [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), - [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [6629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), - [6631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), - [6633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3468), - [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2690), - [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [6651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), - [6653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), - [6655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [6659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [6667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), - [6669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), - [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), - [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), - [6687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [6693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), - [6701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1085), - [6703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 151), - [6705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [6711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [6713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), - [6719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [6721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), - [6723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 65), - [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [6727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2193), - [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [6775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 173), - [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [6783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), - [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), - [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2185), - [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), - [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [6817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 68), - [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [6821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), - [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2625), - [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), - [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2178), - [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3566), - [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), - [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [6875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), - [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), - [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), - [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), - [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), - [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), - [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), - [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), - [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), - [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), - [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3593), - [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1330), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), - [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), - [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), - [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3099), - [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), - [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3191), - [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2707), - [7001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), - [7011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), - [7013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), - [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), - [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2703), - [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), - [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3190), - [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2720), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [7045] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3297), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3300), - [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), - [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), - [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3430), - [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), - [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), - [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2647), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), - [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), - [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), - [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), - [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), - [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), - [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), - [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), + [4800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 56), + [4802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 5, 0, 61), + [4804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ref_pattern, 2, 0, 0), + [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 3, 0, 56), + [4808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 3, 0, 0), + [4810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_slice_pattern, 4, 0, 0), + [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [4814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 57), + [4816] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 4, 0, 56), + [4818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), + [4822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_struct_pattern, 6, 0, 61), + [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [4826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_or_pattern, 2, 0, 0), + [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [4830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 6, 0, 56), + [4834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), + [4838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [4840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [4842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [4846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2633), + [4848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2717), + [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 56), + [4852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mut_pattern, 2, 0, 0), + [4854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [4856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 4, 0, 57), + [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_pattern, 3, 0, 0), + [4860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_struct_pattern, 5, 0, 56), + [4862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [4864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(974), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2116), + [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2057), + [4874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [4878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [4880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 1), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2090), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [4901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 2, 0, 0), + [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(939), + [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), + [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [4917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(70), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), + [4922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(71), + [4925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_macro_definition_repeat1, 2, 0, 0), SHIFT_REPEAT(75), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), + [4930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_trait_bounds_repeat1, 2, 0, 0), SHIFT_REPEAT(840), + [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [4935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [4939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [4945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_trait_bounds, 3, 0, 0), + [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(967), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(965), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), + [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extern_modifier, 2, 0, 0), + [4977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [4979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [4983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [4991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), + [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [5021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), + [5023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [5027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [5029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [5033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_modifiers, 1, 0, 0), + [5037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2213), + [5039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), + [5041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2102), + [5043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [5045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3140), + [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [5051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(975), + [5053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2644), + [5055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [5059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), + [5065] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2320), + [5068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), + [5070] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_function_modifiers_repeat1, 2, 0, 0), SHIFT_REPEAT(2213), + [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), + [5075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [5077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2756), + [5079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3584), + [5081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [5087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [5089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2076), + [5095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), + [5099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), + [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2759), + [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 1, 0, 70), + [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [5115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), + [5117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), + [5119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [5123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [5127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [5129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), + [5131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [5137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2095), + [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [5141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), + [5149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), + [5151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 2, 0, 0), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [5155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [5157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [5159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), + [5161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2973), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [5169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2897), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3331), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 1), + [5181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [5183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [5185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 1, 0, 0), + [5187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [5189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 6), + [5191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [5195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3575), + [5199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 1, 0, 0), + [5205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [5207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3172), + [5209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3318), + [5211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [5215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [5217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3389), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [5227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [5231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(971), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [5235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [5237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [5239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2031), + [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [5245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [5247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 2, 0, 0), REDUCE(sym_tuple_struct_pattern, 3, 0, 56), + [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [5252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [5254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), + [5258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), + [5260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [5266] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_parameters, 3, 0, 0), REDUCE(sym_tuple_struct_pattern, 4, 0, 56), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [5271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(549), + [5275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [5277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), + [5281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2108), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1406), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [5289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [5291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [5297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [5299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [5301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [5307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [5309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 3, 0, 0), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [5323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), + [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), + [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), + [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [5347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [5349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [5359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [5361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), + [5363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [5365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [5367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), + [5373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), + [5375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [5377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(968), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2686), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3366), + [5387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [5389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [5393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 2, 0, 0), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [5397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), + [5399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_where_clause_repeat1, 2, 0, 0), SHIFT_REPEAT(1480), + [5402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_unit_type, 2, 0, 0), REDUCE(sym_tuple_pattern, 2, 0, 0), + [5405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [5407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [5409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [5411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [5415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [5417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2619), + [5419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__type, 1, 0, 0), REDUCE(sym__pattern, 1, 0, 0), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), + [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [5458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 63), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [5466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_clause, 2, 0, 0), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 22), + [5472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 76), + [5474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 63), + [5476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 219), + [5478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 176), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 4, 0, 176), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [5486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [5490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 1), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [5496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [5498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 119), + [5500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 7, 0, 251), + [5502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__use_clause, 1, 0, 0), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2107), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [5526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 0), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [5532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 3, 0, 22), + [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [5536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [5540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 219), + [5542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 102), + [5544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 6, 0, 251), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [5548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), + [5550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(1946), + [5553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__pattern, 1, 0, 0), SHIFT(408), + [5556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3614), + [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), + [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [5564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(296), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), + [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ordered_field_declaration_list, 5, 0, 102), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), + [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [5600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [5610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), + [5612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), + [5614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 2, 0, 0), SHIFT_REPEAT(2858), + [5617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [5619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), + [5621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1380), + [5623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [5625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [5629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [5631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2802), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [5641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_rule, 3, 0, 48), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), + [5647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [5649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [5651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2954), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [5661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3608), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [5669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [5673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 3, 0, 0), + [5681] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 4, 0, 198), + [5683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_binding, 3, 0, 147), + [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [5693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [5703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 3, 0, 0), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2940), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [5711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(210), + [5714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [5718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [5720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [5722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1538), + [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [5730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 78), + [5732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [5735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_predicate, 2, 0, 77), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [5743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [5747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [5753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 100), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [5759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [5771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [5779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), + [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2673), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [5793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 60), + [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3552), + [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), + [5813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), + [5829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2094), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [5835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), + [5837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_slice_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(797), + [5840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3063), + [5842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), + [5852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2435), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), + [5856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3160), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2607), + [5864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [5866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [5870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [5876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(976), + [5880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(980), + [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [5888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [5898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2262), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2243), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 77), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [5930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 2, 0, 0), + [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [5934] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 2, 0, 0), SHIFT_REPEAT(442), + [5937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_self_parameter, 4, 0, 0), + [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), + [5941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), + [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [5951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 0), + [5953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), + [5955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [5957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [5959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 148), + [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [5965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shorthand_field_initializer, 1, 0, 0), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [5969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 2, 0, 11), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2105), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2032), + [5981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 91), + [5983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 5, 0, 0), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [5987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1329), + [5991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [5993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), + [5995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), + [5997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1338), + [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [6007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [6009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1340), + [6013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(411), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), + [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [6022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), + [6024] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 2, 0, 0), SHIFT_REPEAT(2210), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 3, 0, 149), + [6031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [6043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [6045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [6047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 2, 0, 0), + [6055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), + [6057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [6059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [6063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [6065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 2, 0, 101), + [6067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(560), + [6071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_variant, 3, 0, 34), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1057), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2244), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2245), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [6093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 117), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 92), + [6103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 4, 0, 0), + [6105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), + [6107] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_struct_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(2337), + [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [6112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_list, 3, 0, 0), + [6114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [6116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [6118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [6120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2848), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [6130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [6132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_literal_repeat1, 1, 0, 0), + [6134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), + [6136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(2060), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [6141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type_parameter, 3, 0, 118), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [6151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 1, 0, 58), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [6163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 3, 0, 63), + [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [6169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2, 0, 0), SHIFT_REPEAT(916), + [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [6174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [6176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__condition, 1, 0, 9), + [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constrained_type_parameter, 2, 0, 78), + [6180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 2, 0, 36), + [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2022), + [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), + [6188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), + [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [6192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 4, 0, 220), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2275), + [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2276), + [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), + [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(601), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), + [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 22), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [6236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(609), + [6242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [6248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), + [6250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_use_list_repeat1, 2, 0, 0), SHIFT_REPEAT(1879), + [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), + [6257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 2, 0, 177), SHIFT_REPEAT(777), + [6260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_closure_parameters_repeat1, 2, 0, 0), SHIFT_REPEAT(780), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_declaration, 3, 0, 178), + [6267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [6271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_const_parameter, 4, 0, 110), + [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), + [6275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2209), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [6286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [6288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), + [6290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2111), + [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [6300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), + [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [6311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [6315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [6319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), + [6321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_for_lifetimes_repeat1, 2, 0, 0), SHIFT_REPEAT(3075), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2235), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [6336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3304), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3064), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [6344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [6348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 5, 0, 242), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 3, 0, 1), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3344), + [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [6382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ordered_field_declaration_list_repeat1, 4, 0, 102), + [6384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_wildcard, 1, 0, 0), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2167), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [6402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scoped_use_list, 3, 0, 89), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1005), + [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), + [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2835), + [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [6416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2903), + [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [6430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_field_pattern, 4, 0, 199), + [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), + [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [6436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_use_as_clause, 3, 0, 90), + [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(973), + [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(977), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), + [6448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2800), + [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), + [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_field_initializer_list_repeat1, 2, 0, 0), SHIFT_REPEAT(2129), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1004), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(998), + [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [6485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1069), + [6487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [6491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 3), + [6493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1518), + [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [6497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3449), + [6501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [6503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [6505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), + [6507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), + [6509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 4, 0, 32), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [6513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1522), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1929), + [6519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1912), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), + [6523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_doc_comment_marker, 1, 0, 2), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [6527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [6531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_variant_list_repeat2, 3, 0, 0), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2535), + [6539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), + [6543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [6545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2537), + [6553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [6555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3174), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3395), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3457), + [6569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [6571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [6573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [6575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), + [6577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [6579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [6581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [6583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 2, 0, 0), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1373), + [6587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), + [6589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3356), + [6593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), + [6597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2149), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [6617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [6621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), + [6629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 3, 0, 151), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [6633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_field_declaration_list_repeat1, 3, 0, 0), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1056), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3433), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3435), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [6665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_arguments_repeat1, 3, 0, 0), + [6667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variadic_parameter, 1, 0, 0), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [6679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2657), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [6685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1915), + [6689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [6693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_qualified_type, 3, 0, 65), + [6695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3178), + [6697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), + [6699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3538), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2665), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2689), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), + [6717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3581), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [6725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [6729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), + [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 2), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3303), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [6769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3068), + [6775] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__line_doc_comment_marker, 1, 0, 3), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), + [6781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [6783] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_bracketed_type, 3, 0, 0), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [6787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [6789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [6795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [6799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2297), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1412), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [6819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [6821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [6825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3081), + [6827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), + [6831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3176), + [6833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3561), + [6837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [6843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), + [6847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2229), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3139), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [6865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3425), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3617), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3318), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [6875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [6877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), + [6891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [6897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 69), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3615), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2827), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [6931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), + [6941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [6945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3592), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [6967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [6969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), + [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [6977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [6983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3077), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [6991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [6999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inner_line_doc_comment_marker, 1, 0, 0), + [7003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_attribute, 2, 0, 68), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__outer_line_doc_comment_marker, 1, 0, 0), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [7033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3118), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [7041] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3429), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3167), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3186), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), + [7063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), + [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [7071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [7073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), + [7075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [7081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [7091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [7097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), + [7099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(996), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2200), + [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(972), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), + [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), + [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [7123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1335), + [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1336), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2714), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [7165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 3, 0, 173), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3555), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), + [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3553), + [7179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3577), + [7189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 0), + [7195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2, 0, 0), + [7197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 4, 0, 53), + [7199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 15), + [7201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, 0, 0), + [7203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 3, 0, 14), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_line_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { @@ -192447,13 +192496,13 @@ static const bool ts_external_scanner_states[10][EXTERNAL_TOKEN_COUNT] = { [ts_external_token_float_literal] = true, }, [7] = { - [ts_external_token_raw_string_literal_content] = true, + [ts_external_token__line_doc_content] = true, }, [8] = { - [ts_external_token__raw_string_literal_end] = true, + [ts_external_token_raw_string_literal_content] = true, }, [9] = { - [ts_external_token__line_doc_content] = true, + [ts_external_token__raw_string_literal_end] = true, }, }; diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 17f0e94..799f599 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -47,6 +47,7 @@ struct TSLexer { uint32_t (*get_column)(TSLexer *); bool (*is_at_included_range_start)(const TSLexer *); bool (*eof)(const TSLexer *); + void (*log)(const TSLexer *, const char *, ...); }; typedef enum {